Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for ingested (0.78 sec)

  1. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

      }
    
      public void testSetFuture() throws Exception {
        SettableFuture<String> future = SettableFuture.create();
        SettableFuture<String> nested = SettableFuture.create();
        assertTrue(future.setFuture(nested));
        // Later attempts to set the future should return false.
        assertFalse(future.set("x"));
        assertFalse(future.setException(new Exception("bar")));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/test/resources/plugin/repo3/index.html

    <a href="fess-ingest-logger/" title="fess-ingest-logger/">fess-ingest-logger/</a>                                              -         -      
    <a href="fess-ingest-ndjson/" title="fess-ingest-ndjson/">fess-ingest-ndjson/</a>                                              -         -      
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

                        return null;
                    }
    
                    // Check for nested map
                    if (params.containsKey("nested") && params.get("nested") instanceof Map) {
                        @SuppressWarnings("unchecked")
                        Map<String, Object> nestedMap = (Map<String, Object>) params.get("nested");
                        if (nestedMap.containsKey("innerKey")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

        }
    
        // Test evaluate method with nested expressions
        public void test_evaluate_withNestedExpressions() {
            String template = "${level1.level2.value}";
            Map<String, Object> paramMap = new HashMap<>();
            Map<String, Object> level2 = new HashMap<>();
            level2.put("value", "nested");
            Map<String, Object> level1 = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

        }
    
        public void test_complexDocumentStructure() {
            // Test with complex nested document structure
            Map<String, Object> doc = new HashMap<>();
            doc.put("id", "complex");
    
            Map<String, Object> nested = new HashMap<>();
            nested.put("level2", "value");
            doc.put("nested", nested);
    
            List<String> list = new ArrayList<>();
            list.add("item1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            Map<String, Object> source = new HashMap<>();
            source.put("TestKey", "value1");
            source.put("AnotherTestKey", "value2");
    
            Map<String, Object> nested = new HashMap<>();
            nested.put("NestedKey", "nestedValue");
            source.put("NestedMap", nested);
    
            Map<String, Object> result = searchLogHelper.toLowerHyphen(source);
    
            assertEquals("value1", result.get("test_key"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableBiMap.java

       * convenient.
       *
       * <p>By default, a {@code Builder} will generate bimaps that iterate over entries in the order
       * they were inserted into the builder. For example, in the above example, {@code
       * WORD_TO_INT.entrySet()} is guaranteed to iterate over the entries in the order {@code "one"=1,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

        }
    
        public void test_sizeOf_complexNestedStructures() {
            // Complex nested structure
            Map<String, Object> complexMap = new HashMap<>();
            complexMap.put("strings", Arrays.asList("test1", "test2"));
            complexMap.put("numbers", Arrays.asList(1, 2, 3));
            complexMap.put("nested", Maps.map("inner", "value").$());
            complexMap.put("array", new String[] { "array1", "array2" });
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hasher.java

     * change between Java releases.
     *
     * <p><b>Warning:</b> Chunks of data that are put into the {@link Hasher} are not delimited. The
     * resulting {@link HashCode} is dependent only on the bytes inserted, and the order in which they
     * were inserted, not how those bytes were chunked into discrete put() operations. For example, the
     * following three expressions all generate colliding hash codes:
     *
     * {@snippet :
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            Artifact themeArtifact = new Artifact("fess-theme-test", "1.0.0");
            assertEquals(ArtifactType.THEME, themeArtifact.getType());
    
            Artifact ingestArtifact = new Artifact("fess-ingest-test", "1.0.0");
            assertEquals(ArtifactType.INGEST, ingestArtifact.getType());
    
            Artifact scriptArtifact = new Artifact("fess-script-test", "1.0.0");
            assertEquals(ArtifactType.SCRIPT, scriptArtifact.getType());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top