- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 426 for inline (0.59 sec)
-
cmd/erasure-server-pool.go
SetID: setIdx, PoolID: poolIdx, Healthy: erasureSetUpCount[poolIdx][setIdx].online >= poolWriteQuorums[poolIdx], HealthyRead: erasureSetUpCount[poolIdx][setIdx].online >= poolReadQuorums[poolIdx], HealthyDrives: erasureSetUpCount[poolIdx][setIdx].online, HealingDrives: erasureSetUpCount[poolIdx][setIdx].healing, ReadQuorum: poolReadQuorums[poolIdx],
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java
/** * A map of script engines. */ protected Map<String, ScriptEngine> scriptEngineMap = new LinkedHashMap<>(); /** * Adds a script engine. * @param name The name of the script engine. * @param scriptEngine The script engine. */ public void add(final String name, final ScriptEngine scriptEngine) { if (name == null || scriptEngine == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt
.addQuicHint("www.google.com", 443, 443) .build() @After fun tearDown() { engine.shutdown() cacheDir.deleteRecursively() } @Test fun get() { val executor = Executors.newCachedThreadPool() val completableFuture = execute(engine, executor, "https://google.com/robots.txt") try { val response = completableFuture.get(10, TimeUnit.SECONDS)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Helper class for indexing operations in the Fess search engine. * This class provides functionality for sending documents to the search engine, * managing document lifecycle operations (create, update, delete), and handling * thumbnail processing during indexing. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
cmd/site-replication-metrics_gen.go
} case "LastOnline": z.LastOnline, err = dc.ReadTime() if err != nil { err = msgp.WrapError(err, "LastOnline") return } case "Online": z.Online, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Online") return } case "Latency": err = z.Latency.DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Latency") return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 06 06:00:45 UTC 2024 - 40.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SystemUtil.java
/** * Private constructor to prevent instantiation. */ private SystemUtil() { } /** * Gets the HTTP address of the search engine. * * @return The search engine HTTP address. */ public static String getSearchEngineHttpAddress() { return System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/AbstractScriptEngine.java
public AbstractScriptEngine() { // nothing } /** * Register this script engine. */ public void register() { ComponentUtil.getScriptEngineFactory().add(getName(), this); } /** * Get the name of this script engine. * @return The name of this script engine. */ protected abstract String getName();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/InsecureExtendedTrustManager.kt
} } override fun checkServerTrusted( chain: Array<out X509Certificate>, authType: String, engine: SSLEngine, ) { if (engine.peerHost !in insecureHosts) { delegate.checkServerTrusted(chain, authType, engine) } } override fun checkServerTrusted( chain: Array<out X509Certificate>, authType: String,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 2.7K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/ComparatorDelegationOverheadBenchmark.java
import java.util.Random; import org.jspecify.annotations.NullUnmarked; /** * A benchmark to determine the overhead of sorting with {@link Ordering#from(Comparator)}, or with * {@link Ordering#natural()}, as opposed to using the inlined {@link Arrays#sort(Object[])} * implementation, which uses {@link Comparable#compareTo} directly. * * @author Louis Wasserman */ @NullUnmarked public class ComparatorDelegationOverheadBenchmark {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
testScriptEngine.register(); // Verify that the engine was registered with the factory ScriptEngine retrievedEngine = scriptEngineFactory.getScriptEngine("testEngine"); assertNotNull(retrievedEngine); assertEquals(testScriptEngine, retrievedEngine); // Verify that the engine was also registered with its class name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0)