- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 134 for toidentifier (0.05 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
private static final Logger logger = LogManager.getLogger(ExecJob.class); /** The job executor responsible for running this job */ protected JobExecutor jobExecutor; /** Unique session identifier for this job execution */ protected String sessionId; /** Flag indicating whether to use local Fesen instance */ protected boolean useLocalFesen = true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
return relatedQueryList; } /** * Retrieves a specific related query by its unique identifier. * * @param id the unique identifier of the related query to retrieve * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K 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/dict/DictionaryFile.java
*/ public abstract class DictionaryFile<T extends DictionaryItem> { /** The dictionary manager responsible for this file. */ protected DictionaryManager dictionaryManager; /** The unique identifier for this dictionary file. */ protected String id; /** The file path of this dictionary. */ protected String path; /** The timestamp when this dictionary file was created or last modified. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryItem.java
* */ public abstract class DictionaryItem { /** The unique identifier for this dictionary item */ protected long id; /** * Default constructor for DictionaryItem. * Creates a new dictionary item with default values. */ public DictionaryItem() { // Default constructor } /** * Gets the unique identifier for this dictionary item. *
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/app/web/admin/crawlinginfo/EditForm.java
*/ @ValidateTypeFailure public int crudMode; /** * The unique identifier of the crawling information entry being edited. * This is a required field for identifying which crawling info to update. */ @Required @Size(max = 1000) public String id; /** * The session identifier of the crawling session. * This is a required field that identifies the specific crawling session.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
}).createPageNumberList()); return duplicateHostList; } /** * Retrieves a duplicate host configuration by its unique identifier. * * @param id the unique identifier of the duplicate host configuration * @return an OptionalEntity containing the DuplicateHost if found, empty otherwise * @throws IllegalArgumentException if id is null or empty */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
}).createPageNumberList()); return requestHeaderList; } /** * Retrieves a specific request header by its ID. * * @param id the unique identifier of the request header * @return an OptionalEntity containing the request header if found, empty otherwise */ public OptionalEntity<RequestHeader> getRequestHeader(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java
* * @param username The username obtained from SPNEGO authentication */ public SpnegoCredential(final String username) { this.username = username; } /** * Gets the user identifier from this credential. * * @return The username from SPNEGO authentication */ @Override public String getUserId() { return username; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)