Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 276 for consistently (0.57 sec)

  1. src/test/java/jcifs/util/CryptoTest.java

                MessageDigest md5 = Crypto.getMD5();
                md5.digest(null);
            });
        }
    
        @Test
        @DisplayName("Should produce consistent hash results")
        void testHashConsistency() {
            // Given
            String input = "Test consistency";
            byte[] data = input.getBytes();
    
            // When
            MessageDigest md5_1 = Crypto.getMD5();
            MessageDigest md5_2 = Crypto.getMD5();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.32.md

      the `successThreshold`. ([#121206](https://github.com/kubernetes/kubernetes/pull/121206), [@mochizuki875](https://github.com/mochizuki875))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

    *   DaemonSet status includes a new field named `conditions`, making it consistent with other workloads controllers. ([#55272](https://github.com/kubernetes/kubernetes/pull/55272),[ @janetkuo](https://github.com/janetkuo))
    *   StatefulSet status now supports conditions, making it consistent with other core controllers in v1 ([#55268](https://github.com/kubernetes/kubernetes/pull/55268),[ @foxish](https://github.com/foxish))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/MsrpcDfsRootEnumTest.java

            FileEntry[] entries1 = dfsRootEnum.getEntries();
            FileEntry[] entries2 = dfsRootEnum.getEntries();
            FileEntry[] entries3 = dfsRootEnum.getEntries();
    
            // Verify consistency
            assertNotNull(entries1);
            assertNotNull(entries2);
            assertNotNull(entries3);
    
            assertEquals(entries1.length, entries2.length);
            assertEquals(entries2.length, entries3.length);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableList.java

        return CollectCollectors.toImmutableList();
      }
    
      /**
       * Returns the empty immutable list. This list behaves and performs comparably to {@link
       * Collections#emptyList}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      // Casting to any type is safe because the list will never hold any elements.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.24.md

    - Custom resource requests with `fieldValidation=Strict` consistently require `apiVersion` and `kind`, matching non-strict requests ([#109019](https://github.com/kubernetes/kubernetes/pull/109019), [@liggitt](https://github.com/liggitt))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            assertNotNull(decimalProvider);
            assertEquals(Long.valueOf(1000L), decimalConfig.getTimeAdjustTimeMillisAsLong());
        }
    
        // Test provider consistency
        public void test_providerConsistency() {
            // Create multiple providers with same config
            FessTimeResourceProvider provider1 = new FessTimeResourceProvider(mockConfig);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java

            assertEquals(0x1, buffer[12]);
        }
    
        @Test
        @DisplayName("Test size method consistency")
        void testSizeMethodConsistency() {
            // Test that size() method returns consistent value with encode()
            String pipeName = "ConsistencyTest";
    
            // Test without timeout
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

            assertSame(first, second);
            assertSame(invertibleCryptographer, first);
        }
    
        public void test_providePrimaryInvertibleCryptographer_consistency() {
            // Test multiple calls return consistent results
            for (int i = 0; i < 10; i++) {
                InvertibleCryptographer cryptographer = securityResourceProvider.providePrimaryInvertibleCryptographer();
                assertNotNull(cryptographer);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java

                ndrShort1.encode(encodeBuffer);
    
                NdrShort ndrShort2 = new NdrShort(0);
                ndrShort2.decode(decodeBuffer);
    
                // Then: Should maintain masked value consistency
                verify(encodeBuffer).enc_ndr_short(maskedValue);
                verify(decodeBuffer).dec_ndr_short();
                assertEquals(maskedValue, ndrShort1.value);
                assertEquals(maskedValue, ndrShort2.value);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top