- Sort Score
- Result 10 results
- Languages All
Results 1271 - 1280 of 1,416 for emptify (0.18 sec)
-
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
@Override public OptionalEntity<Map<String, Object>> getDocument(final String index, final SearchCondition<SearchRequestBuilder> condition) { return OptionalEntity.empty(); } }; ComponentUtil.register(client, "searchEngineClient"); final Map<String, Object> document = indexingHelper.getDocument(client, "999", new String[] { "title" });Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
assertEquals("1.6", restriction.getUpperBound().toString(), CHECK_UPPER_BOUND); assertTrue(restriction.isUpperBoundInclusive(), CHECK_UPPER_BOUND_INCLUSIVE); // test restricting empty sets range1 = VersionRange.createFromVersionSpec("[,1.1],[1.4,]"); range2 = VersionRange.createFromVersionSpec("[1.2,1.3]"); range1 = range1.restrict(range2);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 44.1K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 19.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
assertNull(crawlerContext.removeSitemaps()); // Test with null crawlerContext.addSitemaps(null); assertNull(crawlerContext.removeSitemaps()); // Test with empty array crawlerContext.addSitemaps(new String[0]); String[] emptyArray = crawlerContext.removeSitemaps(); assertNotNull(emptyArray); assertEquals(0, emptyArray.length); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
okhttp/api/android/okhttp.api
} public final class okhttp3/Headers : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker { public static final field Companion Lokhttp3/Headers$Companion; public static final field EMPTY Lokhttp3/Headers; public final fun -deprecated_size ()I public final fun byteCount ()J public fun equals (Ljava/lang/Object;)Z public final fun get (Ljava/lang/String;)Ljava/lang/String;Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 69.4K bytes - Viewed (0) -
cmd/test-utils_test.go
// create an instance of TestServer. testServer := UnstartedTestServer(t, instanceType) testServer.Server.Start() return testServer } // Sets the global config path to empty string. func resetGlobalConfigPath() { globalConfigDir = &ConfigDir{path: ""} } // sets globalObjectAPI to `nil`. func resetGlobalObjectAPI() { globalObjLayerMutex.Lock() globalObjectAPI = nil
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
* * @return a unique identifier string */ public String generateId() { return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY); } /** * Adds a boost function to modify document scoring during search. * This method adds a boost function that applies to all documents. *Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
list.set(2, 2.0); assertThat(iia.asList()).containsExactly(0.0, 1.0, 3.0).inOrder(); } public void testCopyOf_stream() { assertThat(ImmutableDoubleArray.copyOf(DoubleStream.empty())) .isSameInstanceAs(ImmutableDoubleArray.of()); assertThat(ImmutableDoubleArray.copyOf(DoubleStream.of(0, 1, 3)).asList()) .containsExactly(0.0, 1.0, 3.0) .inOrder(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.5K bytes - Viewed (0) -
cmd/background-newdisks-heal-ops.go
} } if serverDebugLog { tracker.printTo(os.Stdout) fmt.Printf("\n") } if tracker.HealID == "" { // HealID was empty only before Feb 2023 bugLogIf(ctx, tracker.delete(ctx)) return nil } // Remove .healing.bin from all disks with similar heal-id disks, err := z.GetDisks(poolIdx, setIdx) if err != nil {Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
* @throws IOException If an I/O error occurs. */ protected String loadIndexSettings() throws IOException { final String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY); final StringBuilder sb = new StringBuilder(); try (BufferedReader br = new BufferedReader(new InputStreamReader(this.getClass().getClassLoader().getResourceAsStream(getSuggestAnalyzerPath())))) {Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0)