Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,638 for CLEAR (0.16 sec)

  1. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

        table.put("cat", 1, 'b');
        table.clear();
        populate(table, data);
        return table;
      }
    
      @Override
      protected TreeBasedTable<String, Integer, Character> create(@Nullable Object... data) {
        TreeBasedTable<String, Integer, Character> table = TreeBasedTable.create();
        table.put("foo", 4, 'a');
        table.put("cat", 1, 'b');
        table.clear();
        populate(table, data);
        return table;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(0, indexingHelper.deleteOldDocuments(client, docList));
            assertEquals(0, docList.size());
            assertEquals(0, deletedDocIdList.size());
    
            docList.clear();
            deletedDocIdList.clear();
            docList.add(new HashMap<>(Map.of(//
                    "config_id", "W01", //
                    "doc_id", "1", //
                    "url", "http://test.com/001"//
            )));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ManualEvictionInMemoryCache.java

            map.put(key, value);
        }
    
        public void retainAll(Collection<? extends K> keysToRetain) {
            map.keySet().retainAll(keysToRetain);
        }
    
        public void clear() {
            map.clear();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_cache_test.go

    	if got := xdsCache.Get(&entry); got == nil || !reflect.DeepEqual(got, resource) {
    		t.Fatalf("rds cache was not updated")
    	}
    
    	// clear cache when delegate virtual service is updated
    	// this func is called by `dropCacheForRequest` in `initPushContext`
    	xdsCache.Clear(sets.New(delegate))
    	if got := xdsCache.Get(&entry); got != nil {
    		t.Fatalf("rds cache was not cleared")
    	}
    
    	// add resource to cache
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/runtime/lock_js.go

    func (e *timeoutEvent) diff(x int64) int64 {
    	if e == nil {
    		return 0
    	}
    
    	diff := x - idleTimeout.time
    	if diff < 0 {
    		diff = -diff
    	}
    	return diff
    }
    
    // clear cancels this timeout event.
    func (e *timeoutEvent) clear() {
    	if e == nil {
    		return
    	}
    
    	clearTimeoutEvent(e.id)
    }
    
    // The timeout event started by beforeIdle.
    var idleTimeout *timeoutEvent
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Java8Compatibility.java

     * https://github.com/google/guava/issues/3990
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    final class Java8Compatibility {
      static void clear(Buffer b) {
        b.clear();
      }
    
      static void flip(Buffer b) {
        b.flip();
      }
    
      static void limit(Buffer b, int limit) {
        b.limit(limit);
      }
    
      static void position(Buffer b, int position) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. docs/bucket/quota/README.md

    ```
    
    ### Verify the quota configured on `mybucket` on MinIO
    
    ```sh
    mc admin bucket quota myminio/mybucket
    ```
    
    ### Clear bucket quota configuration for `mybucket` on MinIO
    
    ```sh
    mc admin bucket quota myminio/mybucket --clear
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/CachingBlockStore.java

        @Override
        public void close() {
            flush();
            indexBlockCache.invalidateAll();
            store.close();
        }
    
        @Override
        public void clear() {
            dirty.clear();
            indexBlockCache.invalidateAll();
            store.clear();
        }
    
        @Override
        public void flush() {
            Iterator<BlockPayload> iterator = dirty.values().iterator();
            while (iterator.hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/runtime/mcheckmark.go

    			if bitmap == nil {
    				throw("out of memory allocating checkmarks bitmap")
    			}
    			arena.checkmarks = bitmap
    		} else {
    			// Otherwise clear the existing bitmap.
    			clear(bitmap.b[:])
    		}
    	}
    	// Enable checkmarking.
    	useCheckmark = true
    }
    
    // endCheckmarks ends the checkmarks phase.
    func endCheckmarks() {
    	if gcMarkWorkAvailable(nil) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/FilteredEntryMultimap.java

        return (unfiltered instanceof SetMultimap)
            ? Collections.<V>emptySet()
            : Collections.<V>emptyList();
      }
    
      @Override
      public void clear() {
        entries().clear();
      }
    
      @Override
      public Collection<V> get(@ParametricNullness K key) {
        return filterCollection(unfiltered.get(key), new ValuePredicate(key));
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top