Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for stringValue (0.06 seconds)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/KotlinMetadataQueries.kt

                    data2 = annotation.getMemberValue("d2")?.stringArrayValue ?: arrayOf(),
                    extraString = annotation.getMemberValue("xs")?.stringValue ?: "",
                    packageName = annotation.getMemberValue("pn")?.stringValue ?: "",
                    extraInt = annotation.getMemberValue("xi")?.intValue ?: 0
                )
            }
    
        private
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jul 04 09:21:38 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test getAsString with String value
        @Test
        public void test_getAsStringWithStringValue() {
            dataStoreParams.put("stringKey", "stringValue");
            assertEquals("stringValue", dataStoreParams.getAsString("stringKey"));
        }
    
        // Test getAsString with non-String value
        @Test
        public void test_getAsStringWithNonStringValue() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

        }
    
        @Test
        public void test_setObject_withDifferentTypes() {
            // Test setObject with different object types
            try {
                WebApiUtil.setObject("stringValue", "test");
                WebApiUtil.setObject("intValue", 123);
                WebApiUtil.setObject("booleanValue", true);
                WebApiUtil.setObject("objectValue", new Object());
    
                // Test with collections
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

        }
    
        @Test
        public void test_match_nonBooleanReturn() {
            final DocBoostMatcher docBoostMatcher = new DocBoostMatcher();
            docBoostMatcher.setMatchExpression("'string_value'");
    
            final Map<String, Object> map = new HashMap<String, Object>();
            map.put("data1", 1);
            assertFalse(docBoostMatcher.match(map));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            assertNotNull(result);
            assertEquals("value", result.get("key"));
        }
    
        @Test
        public void test_getMapValue_notMap() {
            final Map<String, Object> map = Map.of("key", "string_value");
            assertNull(coordinatorHelper.getMapValue(map, "key"));
        }
    
        @Test
        public void test_getMapValue_missing() {
            final Map<String, Object> map = Map.of("key", "value");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
Back to Top