Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,638 for CLEAR (0.13 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/BiMapClearTester.java

      public void testClearClearsInverse() {
        BiMap<V, K> inv = getMap().inverse();
        getMap().clear();
        assertTrue(getMap().isEmpty());
        assertTrue(inv.isEmpty());
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testKeySetClearClearsInverse() {
        BiMap<V, K> inv = getMap().inverse();
        getMap().keySet().clear();
        assertTrue(getMap().isEmpty());
        assertTrue(inv.isEmpty());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  2. src/runtime/memclr_ppc64x.s

    	MOVD $384, R11
    	PCALIGN $16
    zero512:
    	DCBZ (R3+R0)        // clear first chunk
    	DCBZ (R3+R9)        // clear second chunk
    	DCBZ (R3+R10)       // clear third chunk
    	DCBZ (R3+R11)       // clear fourth chunk
    	ADD  $512, R3
    	BDNZ zero512
    	ANDCC $511, R4
    
    remain:
    	CMP  R4, $128  // check if 128 byte chunks left
    	BLT  smaller
    	DCBZ (R3+R0)   // clear 128
    	ADD  $128, R3
    	ADD  $-128, R4
    	BR   remain
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/CollectionClearTester.java

      public void testClear() {
        collection.clear();
        assertTrue("After clear(), a collection should be empty.", collection.isEmpty());
        assertEquals(0, collection.size());
        assertFalse(collection.iterator().hasNext());
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testClear_unsupported() {
        try {
          collection.clear();
          fail(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.cc

      }
    
      pass_name_ = extract_pass_name(pass->getName().str());
      error_collector_->Clear();
    }
    
    void ErrorCollectorInstrumentation::runAfterPass(Pass *pass,
                                                     Operation *module) {
      loc_to_name_.clear();
      pass_name_.clear();
      common_error_message_.clear();
      error_collector_->Clear();
    }
    
    void ErrorCollectorInstrumentation::runAfterPassFailed(Pass *pass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/sso/aad/AzureAdAuthenticatorTest.java

            list.clear();
            authenticator.addGroupOrRoleName(list, "test", true);
            assertEquals(1, list.size());
            assertEquals("test", list.get(0));
    
            list.clear();
            authenticator.addGroupOrRoleName(list, "test", false);
            assertEquals(1, list.size());
            assertEquals("test", list.get(0));
    
            list.clear();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

                    keysFromCurrentBuild.put(key, Boolean.TRUE);
                }
            }
    
            @Override
            public void clear() {
                delegate.clear();
                keysFromCurrentBuild.clear();
                keysFromPreviousBuild.clear();
            }
    
            @Override
            public void beforeComplete() {
                final Set<K> keysToRetain = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionClearTester.java

      public void testClear() {
        collection.clear();
        assertTrue("After clear(), a collection should be empty.", collection.isEmpty());
        assertEquals(0, collection.size());
        assertFalse(collection.iterator().hasNext());
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testClear_unsupported() {
        try {
          collection.clear();
          fail(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java

        protected volatile Map<String, List<Pattern>> includeUrlPatternMap = new HashMap<>();
    
        protected volatile Map<String, List<Pattern>> excludeUrlPatternMap = new HashMap<>();
    
        public void clear() {
            urlQueueMap.clear();
            sessionMap.clear();
        }
    
        public synchronized Queue<UrlQueueImpl<Long>> getUrlQueueList(final String sessionId) {
            Queue<UrlQueueImpl<Long>> urlQueueList = urlQueueMap.get(sessionId);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/compress/lzw/writer.go

    		w.width++
    		w.overflow <<= 1
    	}
    	if w.hi == maxCode {
    		clear := uint32(1) << w.litWidth
    		if err := w.write(w, clear); err != nil {
    			return err
    		}
    		w.width = w.litWidth + 1
    		w.hi = clear + 1
    		w.overflow = clear << 1
    		for i := range w.table {
    			w.table[i] = invalidEntry
    		}
    		return errOutOfCodes
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/xds_cache.go

    		log.Errorf("unknown type %s", entry.Type())
    		return nil
    	}
    }
    
    func (x XdsCacheImpl) Clear(s sets.Set[ConfigKey]) {
    	x.cds.Clear(s)
    	// clear all EDS cache for PA change
    	if HasConfigsOfKind(s, kind.PeerAuthentication) {
    		x.eds.ClearAll()
    	} else {
    		x.eds.Clear(s)
    	}
    	x.rds.Clear(s)
    	x.sds.Clear(s)
    }
    
    func (x XdsCacheImpl) ClearAll() {
    	x.cds.ClearAll()
    	x.eds.ClearAll()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top