- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for Identifier (0.04 sec)
-
android/guava/src/com/google/common/eventbus/EventBus.java
public EventBus() { this("default"); } /** * Creates a new EventBus with the given {@code identifier}. * * @param identifier a brief name for this bus, for logging purposes. Should be a valid Java * identifier. */ public EventBus(String identifier) { this( identifier, directExecutor(), Dispatcher.perThreadDispatchQueue(), LoggingHandler.INSTANCE); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
*/ public void setRequestedTime(final long requestedTime) { this.requestedTime = requestedTime; } /** * Sets the unique identifier for this search query session. * * @param queryId The query identifier */ public void setQueryId(final String queryId) { this.queryId = queryId; } /** * Gets the list of search result documents.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Basic authentication type identifier. */ public static final String BASIC = "BASIC"; /** Digest authentication type identifier. */ public static final String DIGEST = "DIGEST"; /** NTLM authentication type identifier. */ public static final String NTLM = "NTLM"; /** Form-based authentication type identifier. */ public static final String FORM = "FORM";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* Creates a new statistics key object with the specified identifier. * * @param id the unique identifier for this object */ public StatsKeyObject(final String id) { this.id = id; } /** * Gets the unique identifier for this statistics key object. * * @return the identifier */ public String getId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
/** Type identifier for character mapping dictionaries. */ private static final String MAPPING = "mapping"; /** List of character mapping items loaded from the mapping file. */ List<CharMappingItem> mappingItemList; /** * Constructs a new CharMappingFile instance. * * @param id the unique identifier for this mapping file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
private final String identifier; public TestScriptEngine() { this("default"); } public TestScriptEngine(String identifier) { this.identifier = identifier; } @Override public Object evaluate(String template, Map<String, Object> paramMap) { return "TestEngine[" + identifier + "]: " + template; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt
) /** * ``` * Extension ::= SEQUENCE { * extnID OBJECT IDENTIFIER, * critical BOOLEAN DEFAULT FALSE, * extnValue OCTET STRING * -- contains the DER encoding of an ASN.1 value * -- corresponding to the extension type identified * -- by extnID * } * ``` */ internal val extension: BasicDerAdapter<Extension> =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
return userCode; } return null; } /** * Generates a new unique identifier for user tracking. * Creates a UUID and removes hyphens to create a clean identifier string. * * @return a new unique identifier string */ protected String getId() { return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
tag = 2L, ) { derWriter.writeOctetString("Jones".encodeUtf8()) } assertThat(buffer.readByteString()).isEqualTo("82054A6F6E6573".decodeHex()) } @Test fun `decode object identifier without adapter`() { val buffer = Buffer() .write("0603883703".decodeHex()) val derReader = DerReader(buffer) derReader.read("test") { header ->
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
} } } /** * Starts a new process with the given session ID and command list. * Uses default buffer size and no output callback. * * @param sessionId unique identifier for the process session * @param cmdList list of command and arguments to execute * @param pbCall callback to configure the ProcessBuilder * @return JobProcess representing the started process */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0)