Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,638 for CLEAR (0.14 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java

        /**
         * Process an url when it's added as a seed url.
         *
         * @param url URL
         */
        void processUrl(String url);
    
        /**
         * Clear this filter.
         */
        void clear();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/DocMapTest.java

        public void test_DocList() {
            Map<String, Object> value = new LinkedHashMap<>();
            DocMap docMap = new DocMap(value);
            assertTrue(docMap.isEmpty());
            value.clear();
    
            List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1");
            value.put(keys.get(0), true);
            value.put(keys.get(1), 1000);
            value.put(keys.get(2), "ja");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/TwoStageByUrlCachedExternalResourceIndex.java

            if (lookup != null) {
                return lookup;
            }
            return readOnlyCache.lookup(key);
        }
    
        @Override
        public void clear(String key) {
            writableCache.clear(key);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins1.go

    // This file tests built-in calls on generic types.
    
    package builtins
    
    import "unsafe"
    
    // clear
    
    func _[T any](x T) {
    	clear(x /* ERROR "cannot clear x" */)
    }
    
    func _[T ~map[int]string | ~[]byte](x T) {
    	clear(x)
    }
    
    func _[T ~map[int]string | ~[]byte | ~*[10]int | string](x T) {
    	clear(x /* ERROR "cannot clear x" */)
    }
    
    // close
    
    type C0 interface{ int }
    type C1 interface{ chan int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutputFactory.java

            for (StyledTextOutput textOutput: textOutputs) {
                builder.append(textOutput);
            }
            return builder.toString();
        }
    
        public void clear() {
            textOutputs.clear();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

    // end::use-plugin[]
    
    // tag::module-before-merged[]
    
    idea.module.iml {
        beforeMerged(Action<Module> {
            dependencies.clear()
        })
    }
    // end::module-before-merged[]
    
    // tag::project-before-merged[]
    
    idea.project.ipr {
        beforeMerged(Action<Project> {
            modulePaths.clear()
        })
    }
    // end::project-before-merged[]
    
    // tag::module-when-merged[]
    
    idea.module.iml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/crypto/rsa/boring_test.go

    	// Without the KeepAlives, the loop usually dies after
    	// about 30 iterations.
    	defer debug.SetGCPercent(debug.SetGCPercent(10))
    	for n := 0; n < 200; n++ {
    		// Clear the underlying BoringCrypto object cache.
    		privCache.Clear()
    
    		// Race to create the underlying BoringCrypto object.
    		// The ones that lose the race are prime candidates for
    		// being GC'ed too early if the finalizers are not being
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        assertMultimapRemainsUnmodified(multimap, originalEntries);
    
        Collection<V> sampleValueAsCollection = Collections.singleton(sampleValue);
    
        // Test #clear()
        try {
          multimap.clear();
          fail("clear succeeded on unmodifiable multimap");
        } catch (UnsupportedOperationException expected) {
        }
    
        assertMultimapRemainsUnmodified(multimap, originalEntries);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/timer/TimeoutManagerTest.java

        private int expiredCount;
    
        protected void setUp() throws Exception {
            expiredCount = 0;
            TimeoutManager.getInstance().clear();
        }
    
        protected void tearDown() throws Exception {
            TimeoutManager.getInstance().clear();
        }
    
        /**
         * @throws Exception
         */
        public void testExpired() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. test/for.go

    	var a1 [5]struct{}
    	for i = range a1 {
    		a1[i] = struct{}{}
    	}
    	assertequal(i, 4, " incorrect index value after array with zero size elem range clear")
    
    	i = 0
    	var a2 [5]int
    	for i = range a2 {
    		a2[i] = 0
    	}
    	assertequal(i, 4, " incorrect index value after array range clear")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 16:36:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top