- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 587 for NetName (1.36 sec)
-
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
parser.parse(new InputSource(new StringReader(xmlWithCollection))); LabelType[] labels = parser.getLabelTypes(); assertEquals(1, labels.length); assertEquals("test", labels[0].getName()); assertEquals("test", labels[0].getValue()); assertNotNull(labels[0].getIncludedPaths()); assertNotNull(labels[0].getExcludedPaths()); } public void test_toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
} } /** * Returns the simple name of the file. * * @return The simple name of the file. */ public String getSimpleName() { return new File(path).getName(); } /** * Updates the dictionary file with the given input stream. * * @param in The input stream. * @throws IOException If an I/O error occurs. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
return clazz == that.clazz; } return false; } @Override public String toString() { return "Predicates.instanceOf(" + clazz.getName() + ")"; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** * @see Predicates#subtypeOf(Class) */ @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
true, // dynamicThresholdEnabled true, // backpressureEnabled 50 // maxConcurrentRequests ); try { assertEquals("full-test", fullCb.getName()); assertEquals(7, fullCb.getCurrentFailureThreshold()); assertEquals(SmbCircuitBreaker.State.CLOSED, fullCb.getState()); assertEquals(0, fullCb.getActiveRequests());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
for (java.lang.reflect.Method method : methods) { if (java.lang.reflect.Modifier.isPublic(method.getModifiers()) && !method.isSynthetic()) { assertTrue("Public method " + method.getName() + " should be static", java.lang.reflect.Modifier.isStatic(method.getModifiers())); } } } public void test_thread_safety() throws InterruptedException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
while (it.hasNext()) { try (SmbResource r = it.next()) { try (SmbFile ndest = new SmbFile(dest, r.getLocator().getName(), true, r.getLocator().getType(), r.getAttributes(), r.createTime(), r.lastModified(), r.lastAccess(), r.length())) { if (r instanceof SmbFile) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
} /** * Returns the simple name of the dictionary file. * * @return The file name without the path. */ public String getSimpleName() { return new File(path).getName(); } /** * Updates the dictionary file with content from an input stream. * * @param in The input stream containing the new dictionary content.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
*/ public synchronized void store() { FileOutputStream fos = null; try { fos = new FileOutputStream(propertiesFile); properties.store(fos, propertiesFile.getName()); } catch (final IOException e) { throw new FileAccessException("ECL0112", new Object[] { propertiesFile.getAbsolutePath() }, e); } finally { if (fos != null) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java
@SuppressWarnings("unchecked") Class<WillBeUnloadedException> shadowClass = (Class<WillBeUnloadedException>) Class.forName(WillBeUnloadedException.class.getName(), false, shadowLoader); assertNotSame(shadowClass, WillBeUnloadedException.class); getChecked(immediateFuture("foo"), shadowClass); return new WeakReference<>(shadowLoader); } /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 16.4K bytes - Viewed (0)