Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for neste (0.02 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

         */
        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
       * Unsafe.theUnsafe is inaccessible, the attempt to load the nested class fails, and the outer
       * class's static initializer can fall back on a non-Unsafe version.
       */
      @SuppressWarnings("SunApi") // b/345822163
      @VisibleForTesting
    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/main/resources/fess_indices/fess/cs/stopwords.txt

    kde
    ke
    pravé
    ji
    nad
    nejsou
    či
    pod
    téma
    mezi
    přes
    ty
    pak
    vám
    ani
    když
    však
    neg
    jsem
    tento
    článku
    články
    aby
    jsme
    před
    pta
    jejich
    byl
    ještě
    až
    bez
    také
    pouze
    první
    vaše
    která
    nás
    nový
    tipy
    pokud
    může
    strana
    jeho
    své
    jiné
    zprávy
    nové
    není
    vás
    jen
    podle
    zde
    už
    být
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/resources/fess_message_es.properties

    errors.design_file_is_unsupported_type = Este tipo de archivo no es compatible.
    errors.failed_to_create_crawling_config_at_wizard = No se pudo crear la configuración de rastreo en el asistente.
    errors.design_editor_disabled = Esta función está deshabilitada.
    errors.not_found_on_file_system = No encontrado. Causa: {0}
    errors.could_not_open_on_system = No se puede abrir {0}.<br>Asegúrese de que el archivo esté asociado con una aplicación.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top