Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for intKey (0.03 sec)

  1. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test getAsString with non-String value
        public void test_getAsStringWithNonStringValue() {
            dataStoreParams.put("intKey", 123);
            assertEquals("123", dataStoreParams.getAsString("intKey"));
    
            dataStoreParams.put("longKey", 456L);
            assertEquals("456", dataStoreParams.getAsString("longKey"));
    
            dataStoreParams.put("boolKey", true);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

        public void test_get_numericValues() {
            String intKey = "numeric.int";
            String floatKey = "numeric.float";
    
            System.setProperty(Constants.FESS_CONFIG_PREFIX + intKey, "123");
            System.setProperty(Constants.FESS_CONFIG_PREFIX + floatKey, "45.67");
    
            try {
                String intValue = fessConfig.get(intKey);
                assertEquals("123", intValue);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

        public void test_append_integerValue() {
            StringBuilder buf = new StringBuilder();
            Supplier<Object> supplier = () -> Integer.valueOf(123);
    
            monitorTarget.append(buf, "intKey", supplier);
            assertEquals("\"intKey\":123", buf.toString());
        }
    
        // Test append method with Long value
        public void test_append_longValue() {
            StringBuilder buf = new StringBuilder();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Fingerprint2011.java

    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011}
     * for information on the behaviour of the algorithm.
     *
     * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to
     * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Fingerprint2011.java

    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011}
     * for information on the behaviour of the algorithm.
     *
     * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to
     * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.34.md

    - The Kubernetes API server merged selectors built from `matchLabelKeys` into the `labelSelector` of `topologySpreadConstraints`, aligning Pod Topology Spread behavior with Inter-Pod Affinity. To prevent breaking existing Pods using `matchLabelKeys`, this scheduler behavior was preserved until v1.34. Upgrades from v1.32 to v1.34 should be done incrementally (v1.32 → v1.33 → v1.34), ensuring Pods created at v1.32 with `matchLabelKeys`...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
Back to top