Home
last modified time | relevance | path

Searched refs:DATA3 (Results 1 – 15 of 15) sorted by relevance

/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy62 def DATA3 = "".padRight(1000, 'x')
65 … fileSystem.addEntry(new FileEntry(path:p(DIR,NAME3), lastModified:LAST_MODIFIED, contents:DATA3))
74 listingForFile(LAST_MODIFIED, DATA3.size(), NAME3) ] as Set
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy51 def DATA3 = "".padRight(1000, 'x')
54 …ry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, contents: DATA3)
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DFuturesTest.java87 private static final String DATA3 = "most data"; field in FuturesTest
837 future3.set(DATA3);
842 assertThat(results).has().exactly(DATA1, DATA2, DATA3).inOrder();
1002 future3.set(DATA3);
1017 assertThat(results).has().exactly(DATA1, DATA2, DATA3).inOrder();
1480 future3.set(DATA3);
1485 assertThat(results).has().exactly(DATA1, DATA2, DATA3).inOrder();
1691 future3.set(DATA3);
1696 assertThat(results).has().exactly(null, null, DATA3).inOrder();
/external/curl/src/
Dtool_setopt.c194 #define DATA3(f,a,b,c) ADDF((&easysrc_data, f,a,b,c)) macro
478 DATA3("slist%d = curl_slist_append(slist%d, \"%s\");", i, i, escaped); in tool_setopt_slist()