Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for clearKey (0.07 sec)

  1. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        table.set(index, entry);
        segment.count++;
    
        assertSame(value, map.get(key, loader));
        assertEquals(0, loader.getCount());
        assertEquals(1, segment.count);
    
        entry.clearKey();
        assertNotSame(value, map.get(key, loader));
        assertEquals(1, loader.getCount());
        assertEquals(2, segment.count);
      }
    
      public void testComputePartiallyCollectedValue() throws ExecutionException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 110.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        table.set(index, entry);
        segment.count++;
    
        assertSame(value, map.get(key, loader));
        assertEquals(0, loader.getCount());
        assertEquals(1, segment.count);
    
        entry.clearKey();
        assertNotSame(value, map.get(key, loader));
        assertEquals(1, loader.getCount());
        assertEquals(2, segment.count);
      }
    
      public void testComputePartiallyCollectedValue() throws ExecutionException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 112.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    `Explain yourself!'
    
      `I can't explain MYSELF, I'm afraid, sir' said Alice, `because
    I'm not myself, you see.'
    
      `I don't see,' said the Caterpillar.
    
      `I'm afraid I can't put it more clearly,' Alice replied very
    politely, `for I can't understand it myself to begin with; and
    being so many different sizes in a day is very confusing.'
    
      `It isn't,' said the Caterpillar.
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    				return
    			}
    		}(v)
    	}
    	wg.Wait()
    
    	errdID := ""
    	selfTgtsDeleted := errs[globalDeploymentID()] == nil // true if all remote targets and replication config cleared successfully on local cluster
    
    	for dID, err := range errs {
    		if err != nil {
    			if !rreq.RemoveAll && !selfTgtsDeleted {
    				return madmin.ReplicateRemoveStatus{
    					ErrDetail: err.Error(),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
Back to top