- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 605 for getNames (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
body.dictId = dictId; validateApi(body, messages -> {}); return synonymService.getSynonymFile(body.dictId) .map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { file.writeOut(out); })) .orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
fun createPerformanceTestsFor( model: CIBuildModel, stage: Stage, performanceTestCoverage: PerformanceTestCoverage, bucketIndex: Int, ): PerformanceTest fun getName(testCoverage: TestCoverage): String = throw UnsupportedOperationException() } data class TestProjectDuration( val testProject: String, val scenarioDurations: List<PerformanceTestDuration>, ) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 02:18:03 UTC 2025 - 16.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) -
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/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) -
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) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
mappedPlugin.setArtifactId( plugin.getArtifactId() ); mappedPlugin.setPrefix( plugin.getPrefix() ); mappedPlugin.setName( plugin.getName() ); addPlugin( mappedPlugin ); changed = true; } } Versioning versioning = sourceMetadata.getVersioning();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K 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)