- Sort Score
- Result 10 results
- Languages All
Results 1031 - 1040 of 1,406 for Key (0.01 sec)
-
guava/src/com/google/common/cache/RemovalCause.java
* ConcurrentMap#replace(Object, Object, Object)}. */ REPLACED { @Override boolean wasEvicted() { return false; } }, /** * The entry was removed automatically because its key or value was garbage-collected. This can * occur when using {@link CacheBuilder#weakKeys}, {@link CacheBuilder#weakValues}, or {@link * CacheBuilder#softValues}. */ COLLECTED { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
/** Configuration key for crawler clients used in parameter maps */ protected static final String CRAWLER_CLIENTS = "crawlerClients"; /** * Cache for client rules mapping client names to their corresponding URL patterns. * This cache improves performance by avoiding repeated parsing of client configuration rules.
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/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsDuplicateHostCB.java
return doGetConditionQuery(); } // =================================================================================== // Primary Key // =========== public DuplicateHostCB acceptPK(String id) { assertObjectNotNull("id", id); BsDuplicateHostCB cb = this;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRelatedQueryCB.java
return doGetConditionQuery(); } // =================================================================================== // Primary Key // =========== public RelatedQueryCB acceptPK(String id) { assertObjectNotNull("id", id); BsRelatedQueryCB cb = this;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
migrator/migrator.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Jun 06 02:35:01 UTC 2025 - 29.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java
* * The default implementation returns a colon-separated list of group * identifier, artifact identifier, extension, classifier and version. * * @see Artifact#key() */ @Nonnull default String getId() { String c = getClassifier(); return getGroupId() + ':' + getArtifactId() + ':'
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.job.JobManager; import org.lastaflute.job.LaJob; import org.lastaflute.job.LaJobRuntime; import org.lastaflute.job.key.LaJobUnique; /** * This job executes a script. */ public class ScriptExecutorJob implements LaJob { /** * Constructor. */ public ScriptExecutorJob() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/BadWordSettings.java
* It also supports loading default bad words from a file. */ public class BadWordSettings { private static final Logger logger = LogManager.getLogger(BadWordSettings.class); /** Key for bad word settings. */ public static final String BAD_WORD_SETTINGD_KEY = "badword"; /** Array settings for bad words. */ protected ArraySettings arraySettings; /** Default bad words. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 5.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketHttpTest.kt
private fun upgradeResponse(request: RecordedRequest): MockResponse.Builder { val key = request.headers["Sec-WebSocket-Key"] return MockResponse .Builder() .status("HTTP/1.1 101 Switching Protocols") .setHeader("Connection", "Upgrade") .setHeader("Upgrade", "websocket") .setHeader("Sec-WebSocket-Accept", acceptHeader(key!!)) } private fun websocketScheme(scheme: String) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 35.5K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} public static class RdmaChannelInfo { private final int remoteKey; private final long address; private final int length; public RdmaChannelInfo(int key, long addr, int len) { this.remoteKey = key; this.address = addr; this.length = len; } // Getters... } ``` ## 6. Configuration ### 6.1 Configuration Properties ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0)