Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 128 for termination (0.12 sec)

  1. src/test/java/jcifs/internal/dfs/ReferralTest.java

            // Write path string at offset 22
            bb.position(22);
            String expectedPath = "\\\\test";
            bb.put(expectedPath.getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0); // null terminator
    
            // Decode
            referral.decode(testBuffer, 0, testBuffer.length);
    
            // Check
            assertEquals(3, referral.getVersion());
            assertEquals(100, referral.getSize());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            return this.cipherId == CIPHER_AES_128_GCM || this.cipherId == CIPHER_AES_256_GCM;
        }
    
        private int getKeyLength() {
            // Java 17 switch expression for cipher key length determination
            return switch (this.cipherId) {
            case CIPHER_AES_128_CCM, CIPHER_AES_128_GCM -> 16; // AES-128 ciphers use 16-byte keys
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.24.md

    - Pods will now post their readiness during termination. ([#110416](https://github.com/kubernetes/kubernetes/pull/110416), [@aojea](https://github.com/aojea)) [SIG Network, Node and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  4. CHANGELOG.md

        the web socket's connections back to the pool before their resources were cleaned up.
    
     *  Fix: Don't infinite loop when a received web socket message has self-terminating compressed
        data.
    
     *  Fix: Don't fail the call when the response code is ‘HTTP 102 Processing’ or ‘HTTP 103 Early
        Hints’.
    
     *  Fix: Honor interceptors' changes to connect and read timeouts.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  5. src/main/resources/fess_label_fr.properties

    labels.ldap_group_filter=Filtre de groupe
    labels.ldap_memberof_attribute=Attribut memberOf
    labels.notification_login=Page de connexion
    labels.notification_search_top=Page d'accueil de la recherche
    labels.storage_endpoint=Point de terminaison
    labels.storage_access_key=Clé d'accès
    labels.storage_secret_key=Clé secrète
    labels.storage_bucket=Compartiment
    labels.send_testmail=Envoyer un e-mail de test
    labels.backup_configuration=Sauvegarde
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            }
    
            @Override
            public void enc_ndr_string(String s) {
                // Simulate encoding a string
                offset += (s.length() * 2) + 4; // Length + null terminator + actual string
            }
        }
    
        // Test for LsarQosInfo
        @Test
        void testLsarQosInfoEncode() throws NdrException {
            lsarpc.LsarQosInfo qosInfo = new lsarpc.LsarQosInfo();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.18.md

    - EndpointSlice should not contain endpoints for terminating pods ([#89056](https://github.com/kubernetes/kubernetes/pull/89056), [@andrewsykim](https://github.com/andrewsykim)) [SIG Apps and Network]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        void readEntries(ObjectInputStream in) throws IOException, ClassNotFoundException {
          while (true) {
            K key = (K) in.readObject();
            if (key == null) {
              break; // terminator
            }
            V value = (V) in.readObject();
            delegate.put(key, value);
          }
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

         * compare authentication information. In essence, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
         * @return A hashcode for this abstract file
         */
        @Override
        public int hashCode() {
            return this.fileLocator.hashCode();
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * compare authentication information. In essance, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
         * @return  A hashcode for this abstract file
         */
    
        @Override
        public int hashCode() {
            int hash;
            try {
                hash = getAddress().hashCode();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top