Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for updates (0.04 sec)

  1. guava/src/com/google/common/hash/AbstractByteHasher.java

      private @Nullable ByteBuffer scratch;
    
      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
      protected void update(byte[] b, int off, int len) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 12:40:17 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LongAdder.java

      public void decrement() {
        add(-1L);
      }
    
      /**
       * Returns the current sum. The returned value is NOT an atomic snapshot; invocation in
       * the absence of concurrent updates returns an accurate result, but concurrent updates that occur
       * while the sum is being calculated might not be incorporated.
       *
       * @return the sum
       */
      @Override
      public long sum() {
        long sum = base;
        Cell[] as = cells;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/HashBiMap.java

        hashTableVToK[valueBucket] = entry;
      }
    
      /**
       * Updates the K-to-V hash table to remove the entry at the specified index, which is assumed to
       * be present. Does not update any other data structures.
       */
      private void deleteFromTableKToV(int entry, int keyHash) {
        checkArgument(entry != ABSENT);
        int keyBucket = bucket(keyHash);
    
        if (hashTableKToV[keyBucket] == entry) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       * value.
       */
      @CanIgnoreReturnValue
      public long getAndAdd(K key, long delta) {
        return getAndAccumulate(key, delta, Long::sum);
      }
    
      /**
       * Updates the value currently associated with {@code key} with the specified function, and
       * returns the new value. If there is not currently a value associated with {@code key}, the
       * function is applied to {@code 0L}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

            return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(true).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Updates an existing user setting.
         *
         * @param body the user data to update
         * @return JSON response containing the updated user setting ID
         */
        // PUT /api/admin/user/setting
        @Execute
        public JsonResponse<ApiResult> put$setting(final EditBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java

            return asJson(new ApiUpdateResponse().id(relatedQuery.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing related query setting.
         *
         * @param body the related query configuration data to update
         * @return JSON response containing the updated related query ID and status
         */
        // PUT /api/admin/relatedquery/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
            }
            return target;
        }
    
        /**
         * Updates a document with additional metadata and enhancements.
         * Adds click counts, favorite counts, document boosting, and generates document ID.
         * Also applies language-specific updates through the language helper.
         *
         * @param map the document data map to update with additional metadata
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        }
    
        /**
         * Updates an existing Kuromoji dictionary item.
         *
         * @param dictId the dictionary ID
         * @param body the request body containing updated Kuromoji item information
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/kuromoji/setting/{dictId}
        @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)
  9. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

         */
        protected String getId() {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
        /**
         * Updates the user session with the provided user code.
         * This method registers the user info with the search log helper and updates the cookie.
         *
         * @param userCode the user code to associate with the session
         */
        protected void updateUserSessionId(final String userCode) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

        }
    
        // PUT /api/admin/elevateword/setting
        /**
         * Updates an existing elevate word setting.
         * Refreshes all elevate words in the suggest helper to maintain consistency.
         *
         * @param body elevate word 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
    - 12.8K bytes
    - Viewed (0)
Back to top