- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 169 for identifiers (0.04 sec)
-
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/app/service/UserService.java
}).createPageNumberList()); return userList; } /** * Retrieves a user by their unique identifier. * Loads the user through the authentication manager for complete user data. * * @param id the unique identifier of the user * @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUser(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
} /** * Retrieve a single protected words entry by ID for the specified dictionary. * * @param dictId identifier of the dictionary * @param id identifier of the entry * @return JSON response containing the entry */ // GET /api/admin/dict/protwords/setting/{dictId}/{id} @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
the `successThreshold`. ([#121206](https://github.com/kubernetes/kubernetes/pull/121206), [@mochizuki875](https://github.com/mochizuki875))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java
} /** * The unique identifier of the stopwords dictionary entry being edited. * This is a required field for identifying which dictionary entry to update. */ @Required @ValidateTypeFailure public Long id; /** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/AsyncEventBus.java
* identifier} as the bus's name for logging purposes. * * @param identifier short name for the bus, for logging purposes. * @param executor Executor to use to dispatch events. It is the caller's responsibility to shut * down the executor after the last event has been posted to this event bus. */ public AsyncEventBus(String identifier, Executor executor) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.5K bytes - Viewed (0) -
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/app/web/admin/dict/mapping/EditForm.java
} /** * The unique identifier of the mapping dictionary entry being edited. * This is a required field for identifying which dictionary entry to update. */ @Required @ValidateTypeFailure public Long id; /** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/EditForm.java
} /** * The unique identifier of the synonym dictionary entry being edited. * This is a required field for identifying which dictionary entry to update. */ @Required @ValidateTypeFailure public Long id; /** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.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)