Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 295 for existing (0.03 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            assertEquals("testword", item.getInput());
            assertEquals("testword", item.getNewInput());
        }
    
        public void test_constructor_withNonZeroId() {
            // Test constructor with id != 0 (existing item)
            ProtwordsItem item = new ProtwordsItem(123, "existingword");
    
            assertEquals(123, item.getId());
            assertEquals("existingword", item.getInput());
            assertNull(item.getNewInput());
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

                return null;
            });
    
            return asJson(new ApiUpdateResponse().id(dataConfig.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing data config setting.
         *
         * @param body the request body containing updated data config information
         * @return JSON response with result status
         */
        // PUT /api/admin/dataconfig/setting
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

                return null;
            });
    
            return asJson(new ApiUpdateResponse().id(labelType.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing label type setting.
         *
         * @param body the label type data to update
         * @return JSON response containing the updated label type setting ID
         */
        // PUT /api/admin/labeltype/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java

            });
    
            return asJson(new ApiUpdateResponse().id(fileConfig.getId()).created(true).status(Status.OK).result());
        }
    
        // PUT /api/admin/fileconfig/setting
        /**
         * Updates an existing file configuration setting.
         *
         * @param body file configuration setting data to update
         * @return JSON response with updated setting ID and status
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

            });
    
            return asJson(new ApiUpdateResponse().id(fileAuth.getId()).created(true).status(Status.OK).result());
        }
    
        // PUT /api/admin/fileauth/setting
        /**
         * Updates an existing file authentication setting.
         *
         * @param body file authentication setting data to update
         * @return JSON response with updated setting ID and status
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top