Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 385 for nested (0.1 sec)

  1. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            assertNotNull(exception);
            assertTrue(exception instanceof java.io.Serializable);
        }
    
        public void test_nestedExceptions() {
            // Test nested exception handling
            Exception innerCause = new IllegalArgumentException("Invalid parameter");
            RuntimeException middleCause = new RuntimeException("Processing failed", innerCause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/LittleEndianByteArray.java

        }
    
        /*
         * non-private so that our `-source 8` build doesn't need to generate a synthetic accessor
         * method, whose mention of VarHandle would upset WriteReplaceOverridesTest under Java 8.
         */
        static final VarHandle HANDLE = byteArrayViewVarHandle(long[].class, LITTLE_ENDIAN);
      }
    
      /**
       * The only reference to Unsafe is in this nested class. We set things up so that if
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:49:18 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            complexObject.put("nested", "value");
    
            dataStoreParams.put("complexKey", complexObject);
            assertEquals(complexObject, dataStoreParams.get("complexKey"));
    
            String asString = dataStoreParams.getAsString("complexKey");
            assertNotNull(asString);
            assertTrue(asString.contains("nested"));
        }
    
        // Test overwriting existing values
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            booleanData.put("flag", true);
            callback.store(params, booleanData);
    
            // Test with nested map
            Map<String, Object> nestedData = new HashMap<>();
            Map<String, String> innerMap = new HashMap<>();
            innerMap.put("inner", "value");
            nestedData.put("nested", innerMap);
            callback.store(params, nestedData);
    
            assertEquals(4L, callback.getDocumentSize());
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

            }
        }
    
        // Test property key with dots
        public void test_get_propertyKeyWithDots() {
            String dottedKey = "deeply.nested.property.key";
            String dottedValue = "nested-value";
    
            System.setProperty(Constants.FESS_CONFIG_PREFIX + dottedKey, dottedValue);
    
            try {
                String value = fessConfig.get(dottedKey);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java

            assertEquals(longMessage, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructor_withNestedCause() {
            // Test constructor with nested exception causes
            Exception rootCause = new IllegalStateException("Root cause");
            Exception middleCause = new RuntimeException("Middle cause", rootCause);
            String message = "Top level dictionary error";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

                    builder.startArray("items");
                    builder.value("item1");
                    builder.value("item2");
                    builder.endArray();
                    builder.startObject("nested");
                    builder.field("inner", "value");
                    builder.endObject();
                    builder.endObject();
                    return builder;
                }
            };
    
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

            assertEquals(this.getClass().getName(), firstElement.getClassName());
            assertEquals("test_stackTracePresent", firstElement.getMethodName());
        }
    
        public void test_nestedExceptionChain() {
            // Test nested exception chain
            Throwable rootCause = new IllegalArgumentException("Root cause");
            Throwable middleCause = new IllegalStateException("Middle cause", rootCause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                            attributes.put(name, parseArray(jsonParser));
                        } else if (jsonParser.getCurrentToken() == JsonToken.START_OBJECT) {
                            // Handle nested object type
                            attributes.put(name, parseObject(jsonParser));
                        } else {
                            // Handle primitive types (string, number, boolean, etc.)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

            // getMessage() may return null when constructed with null
            // This is expected behavior for exceptions with null cause
        }
    
        public void test_nestedCause() {
            // Test with nested exceptions
            RuntimeException rootCause = new RuntimeException("Root cause");
            ParseException parseException = new ParseException("Parse error");
            parseException.initCause(rootCause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top