Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 827 for updated1 (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            infoMap.put(key, value);
        }
    
        /**
         * Updates crawling information parameters for the specified session.
         * Sets the name and expiration time based on the provided parameters.
         *
         * @param sessionId the session ID to update
         * @param name the name to set for the crawling session (uses system name if blank)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            updateItem.setNewOutput("o");
            charMappingFile.update(updateItem);
    
            // Verify the update
            OptionalEntity<CharMappingItem> updated = charMappingFile.get(1L);
            assertTrue(updated.isPresent());
            CharMappingItem item = updated.get();
            assertArrayEquals(new String[] { "m", "n" }, item.getInputs());
            assertEquals("o", item.getOutput());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

        }
    
        // 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
        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
    - 9.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/ChecksumHashFunction.java

        return toString;
      }
    
      /** Hasher that updates a checksum. */
      private final class ChecksumHasher extends AbstractByteHasher {
        private final Checksum checksum;
    
        private ChecksumHasher(Checksum checksum) {
          this.checksum = checkNotNull(checksum);
        }
    
        @Override
        protected void update(byte b) {
          checksum.update(b);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.13.md

    - The default Go version was updated to 1.11.2. ([#70665](https://github.com/kubernetes/kubernetes/pull/70665))
    - The minimum supported Go version was updated to 1.11.2 ([#69386](https://github.com/kubernetes/kubernetes/pull/69386))
    - CNI is unchanged at v0.6.0 since Kubernetes 1.10 ([#51250](https://github.com/kubernetes/kubernetes/pull/51250))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  6. 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)
  7. src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java

            assertEquals((int) offset, getFieldValue(write, "offset"), "Offset should be updated");
            assertEquals(remaining, getFieldValue(write, "remaining"), "Remaining should be updated");
            assertEquals(buffer, getFieldValue(write, "b"), "Buffer should be updated");
            assertEquals(off, getFieldValue(write, "off"), "Off should be updated");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                log.trace("update: " + this.updates + " " + offset + ":" + len);
                log.trace(Hexdump.toHexString(input, offset, Math.min(len, 256)));
            }
            if (len == 0) {
                return; /* CRITICAL */
            }
            this.digest.update(input, offset, len);
            this.updates++;
        }
    
        /**
         * Finalize and return the calculated message digest
         *
         * @return calculated digest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

            return asJson(new ApiUpdateResponse().id(keyMatch.getId()).created(true).status(Status.OK).result());
        }
    
        /**
         * Updates an existing key match setting.
         *
         * @param body the key match data to update
         * @return JSON response containing the updated key match setting ID
         */
        // PUT /api/admin/keymatch/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.18.md

    ### Other (Cleanup or Flake)
    
    - Build: Update Debian base images
      - debian-base:v2.1.3
      - debian-iptables:v12.1.2
      - debian-hyperkube-base:v1.1.3 ([#93754](https://github.com/kubernetes/kubernetes/pull/93754), [@justaugustus](https://github.com/justaugustus)) [SIG API Machinery, Cluster Lifecycle, Release and Testing]
    - Update Golang to v1.13.14
      - Update bazel to 2.2.0
      - Update repo-infra to 0.0.8 (to support go1.14.6 and go1.13.14)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top