Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for overwritten (0.06 sec)

  1. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            Map<String, Object> doc = new HashMap<>();
            doc.put("lang", "ja");
            doc.put("title", "タイトル");
            doc.put("title_ja", "既存のタイトル"); // Should not be overwritten
            doc.put("content", "コンテンツ");
    
            languageHelper.updateDocument(doc);
    
            assertEquals("ja", doc.get("lang"));
            assertEquals("既存のタイトル", doc.get("title_ja")); // Should remain unchanged
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

            queryFieldConfig.setNotAnalyzedFields(existingNotAnalyzedFields);
    
            // Initialize
            queryFieldConfig.init();
    
            // Verify that existing fields are not overwritten
            assertSame(existingResponseFields, queryFieldConfig.getResponseFields());
            assertSame(existingScrollResponseFields, queryFieldConfig.getScrollResponseFields());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Files.java

       * need to guard against those conditions, you should employ other file-level synchronization.
       *
       * <p><b>Warning:</b> If {@code to} represents an existing file, that file will be overwritten
       * with the contents of {@code from}. If {@code to} and {@code from} refer to the <i>same</i>
       * file, the contents of that file will be deleted.
       *
       * <p><b>{@link java.nio.file.Path} equivalent:</b> {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Files.java

       * need to guard against those conditions, you should employ other file-level synchronization.
       *
       * <p><b>Warning:</b> If {@code to} represents an existing file, that file will be overwritten
       * with the contents of {@code from}. If {@code to} and {@code from} refer to the <i>same</i>
       * file, the contents of that file will be deleted.
       *
       * <p><b>{@link java.nio.file.Path} equivalent:</b> {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.32.md

    - Fixed the bug where `spec.terminationGracePeriodSeconds` of the pod will always be overwritten by the MaxPodGracePeriodSeconds of the soft eviction, you can enable the `AllowOverwriteTerminationGracePeriodSeconds` feature gate, which will restore the previous behavior.  If you do need to set this, please file an issue with the Kubernetes...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            assertFalse(dataMap.containsKey("y.overwrite"));
            assertEquals(1, dataMap.size());
            assertEquals("Y1", dataMap.get("y"));
        }
    
        /** Case 4: Both baseKey and baseKey.overwrite exist → Overwrite with the value of .overwrite */
        public void test_mergeResponseData_baseAndOverwrite() {
            Map<String, Object> dataMap = new HashMap<>();
            Map<String, Object> responseDataMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 23:31:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

            assertTrue(values[1].startsWith("time:"));
            assertTrue(values[2].startsWith("done:"));
    
            // CrawlerStatsHelper uses LinkedHashMap which overwrites values with same key
            // Recording the same action twice will overwrite the first one
            assertTrue(values[3].startsWith("same_action:"));
            assertTrue(values[4].startsWith("different_action:"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 15K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

            }
    
            /**
             * Checks if the overwrite option is enabled in the configuration.
             * Returns true if "overwrite" is present in the values.
             *
             * @return true if overwriting is enabled, false otherwise
             */
            public boolean isOverwrite() {
                for (final String value : values) {
                    if ("overwrite".equalsIgnoreCase(value)) {
                        return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/crawler/util/FieldConfigsTest.java

            assertFalse(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isOverwrite).orElse(false));
        }
    
        public void test_overwrite() {
            final Map<String, String> params = Maps.of("foo", "overwrite");
            FieldConfigs fieldConfigs = new FieldConfigs(params);
            assertTrue(fieldConfigs.getConfig("test").isEmpty());
            assertFalse(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isCache).orElse(false));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

        }
    
        public void test_processFieldConfigs() {
            final FessFileTransformer transformer = createInstance();
            final Map<String, String> params = Maps.of("foo", "cache", "bar", "overwrite", "baz", "cache|overwrite");
            FieldConfigs fieldConfigs = new FieldConfigs(params);
            final Map<String, Object> dataMap = Map.of(//
                    "foo", new String[] { "aaa", "bbb" }, //
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top