- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 413 for existing (0.07 sec)
-
maven-tests/mvnw.cmd
$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" exit $? } if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 12 12:05:57 UTC 2025 - 6.8K bytes - Viewed (0) -
docs/en/docs/history-design-future.md
For example, it was clear that ideally it should be based on standard Python type hints. Also, the best approach was to use already existing standards. So, before even starting to code **FastAPI**, I spent several months studying the specs for OpenAPI, JSON Schema, OAuth2, etc. Understanding their relationship, overlap, and differences. ## Design { #design }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
return null; }); return asJson(new ApiUpdateResponse().id(webConfig.getId()).created(true).status(Status.OK).result()); } /** * Updates an existing web configuration setting. * * @param body the web configuration data to update * @return JSON response containing the updated web configuration setting ID */ // PUT /api/admin/webconfig/setting
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
form.initialize(); form.crudMode = CrudMode.CREATE; form.dictId = dictId; }); }); } /** * Display the edit form for an existing stemmer override item. * Loads the item data and switches to edit mode or details view based on current state. * * @param form The edit form containing item ID and CRUD mode
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* Also stores any accumulated information parameters and clears the info map. * * @param sessionId the session ID for the crawling information * @param create if true, creates a new crawling info regardless of existing records * @throws FessSystemException if unable to store the crawling session */ public synchronized void store(final String sessionId, final boolean create) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
return null; }); return asJson(new ApiUpdateResponse().id(reqHeader.getId()).created(true).status(Status.OK).result()); } /** * Updates an existing request header setting. * * @param body the request header data to update * @return JSON response containing the updated request header setting ID */ // PUT /api/admin/reqheader/setting
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
return null; }); return asJson(new ApiUpdateResponse().id(webAuth.getId()).created(true).status(Status.OK).result()); } /** * Updates an existing web authentication setting. * * @param body the web authentication data to update * @return JSON response containing the updated web authentication setting ID */ // PUT /api/admin/webauth/setting
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt
taskRunner.withLock { // If the queue is already idle, that's easy. if (activeTask == null && futureTasks.isEmpty()) { return CountDownLatch(0) } // If there's an existing AwaitIdleTask, use it. This is necessary when the executor is // shutdown but still busy as we can't enqueue in that case. val existingTask = activeTask if (existingTask is AwaitIdleTask) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
}); return asJson(new ApiUpdateResponse().id(accessToken.getId()).created(true).status(Status.OK).result()); } // PUT /api/admin/accesstoken/setting /** * Updates an existing access token setting. * * @param body the edit body containing updated access token data * @return JSON response with the updated access token ID */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphBuilder.java
* @param <N> The most general node type this builder will support. This is normally {@code Object} * unless it is constrained by using a method like {@link #nodeOrder}, or the builder is * constructed based on an existing {@code Graph} using {@link #from(Graph)}. * @since 20.0 */ @Beta @DoNotMock public final class GraphBuilder<N> extends AbstractGraphBuilder<N> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.3K bytes - Viewed (0)