- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 4,706 for isString (1.14 sec)
-
src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java
currentIndex += 4; // Verify domain String writtenDomain = new String(dst, currentIndex, testDomain.length(), StandardCharsets.US_ASCII); assertEquals(testDomain.toUpperCase(), writtenDomain); currentIndex += testDomain.length() + 1; // Verify lastName String writtenLastName = new String(dst, currentIndex, lastName.length(), StandardCharsets.US_ASCII);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
{ "\\pipe\\samr", "samr", "12345778-1234-ABCD-EF00-0123456789AC", 1, 0 } }; for (Object[] data : testData) { String endpoint = (String) data[0]; String pipeName = (String) data[1]; String expectedUuid = (String) data[2]; int expectedMajor = (int) data[3]; int expectedMinor = (int) data[4]; // The interfaces are added in setUp()
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl
typedef struct { [string] wchar_t *entry_path; } DfsInfo1; typedef struct { uint32_t count; [size_is(count)] DfsInfo1 *s; } DfsEnumArray1; typedef struct { uint32_t state; [string] wchar_t *server_name; [string] wchar_t *share_name; } DfsStorageInfo; typedef struct { [string] wchar_t *path; [string] wchar_t *comment; uint32_t state;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
public void setVersion(String version) { artifact.setVersion(version); } /** {@inheritDoc} */ @Override public String getScope() { return artifact.getScope(); } /** {@inheritDoc} */ @Override public String getType() { return artifact.getType(); } /** {@inheritDoc} */ @Override public String getClassifier() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
@Override protected CrawlerClient getClient(final String url) { final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper(); final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(crawlerContext.getSessionId()); final Map<String, String> clientConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.CLIENT); final String value = clientConfigMap.get(CRAWLER_CLIENTS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.1K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
assertEquals(76L, MemoryUtil.sizeOf("12345678901234567890")); assertEquals(66L, MemoryUtil.sizeOf(new String[] { "1234567890" })); assertEquals(132L, MemoryUtil.sizeOf(new String[] { "1234567890", "1234567890" })); assertEquals(132L, MemoryUtil.sizeOf(Lists.asList("1234567890", new String[] { "1234567890" }))); assertEquals(132L, MemoryUtil.sizeOf(Maps.map("1234567890", "1234567890").$())); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
private static final String FESS_TEMP_PATH = "fess.temp.path"; /** System property key for Fess variable directory path */ private static final String FESS_VAR_PATH = "fess.var.path"; /** System property key for Fess web application path */ private static final String FESS_WEBAPP_PATH = "fess.webapp.path"; /** System property key for Java temporary directory */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java
@Override protected final Map<String, String> create(Entry<String, String>[] entries) { HashMap<String, String> map = new HashMap<>(); for (Entry<String, String> entry : entries) { map.put(entry.getKey(), entry.getValue()); } return wrap(map); } abstract Map<String, String> wrap(HashMap<String, String> map); } private static TestSuite wrappedHashMapTests(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu May 22 16:18:11 UTC 2025 - 11.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/eventbus/StringCatcher.java
* to call ({@link #methodWithoutAnnotation(String)}). * * @author Cliff Biffle */ @NullUnmarked public class StringCatcher { private final List<String> events = new ArrayList<>(); @Subscribe public void hereHaveAString(@Nullable String string) { events.add(string); } public void methodWithoutAnnotation(@Nullable String string) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 1.4K bytes - Viewed (0)