Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 614 for updates (0.04 sec)

  1. CHANGELOG/CHANGELOG-1.2.md

    not be evicted from nodes whose Ready condition is false.
            * Updates to the pod template are now permitted. To perform a rolling update of a
    DaemonSet, update the pod template and then delete its pods one by one; they
    will be replaced using the updated template.
         * Spec change:
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        }
    
        /**
         * Updates an existing synonym dictionary item.
         *
         * @param dictId the dictionary ID
         * @param body the request body containing updated synonym item information
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/synonym/setting/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/PreauthIntegrityService.java

            return context;
        }
    
        /**
         * Updates the preauth integrity hash with a new message.
         *
         * @param sessionId the session identifier
         * @param messageData the message data to include in hash
         * @throws CIFSException if update fails
         */
        public void updatePreauthHash(String sessionId, byte[] messageData) throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

            });
    
            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
        @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)
  5. src/main/java/org/codelibs/curl/Curl.java

         * Enumeration representing HTTP methods.
         * <ul>
         *   <li>GET - Requests data from a specified resource.</li>
         *   <li>POST - Submits data to be processed to a specified resource.</li>
         *   <li>PUT - Updates a current resource with new data.</li>
         *   <li>DELETE - Deletes the specified resource.</li>
         *   <li>HEAD - Same as GET but returns only HTTP headers and no document body.</li>
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.17.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 ([#93924](https://github.com/kubernetes/kubernetes/pull/93924), [@justaugustus](https://github.com/justaugustus)) [SIG API Machinery, Cluster Lifecycle and Release]
    - 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: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

            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)
  8. src/main/java/org/codelibs/fess/app/service/BadWordService.java

         */
        public OptionalEntity<BadWord> getBadWord(final String id) {
            return badWordBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a bad word.
         * @param badWord The bad word to store.
         */
        public void store(final BadWord badWord) {
    
            badWordBhv.insertOrUpdate(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of file configurations based on the provided pager criteria.
         * This method applies search conditions from the pager and updates the pager with
         * pagination information including page numbers and result counts.
         *
         * @param fileConfigPager the pager containing search criteria and pagination settings
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SpnegoContextTest.java

        @DisplayName("getMechs returns configured mechs and setMechs updates them")
        void testGetSetMechs() {
            SpnegoContext ctx = newContext();
            assertArrayEquals(this.mechs, ctx.getMechs());
            ASN1ObjectIdentifier[] updated = new ASN1ObjectIdentifier[] { new ASN1ObjectIdentifier("1.2.840.113554.1.2.2") };
            ctx.setMechs(updated);
            assertArrayEquals(updated, ctx.getMechs());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top