Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,653 for tcClear (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. .github/ISSUE_TEMPLATE/feature_request.md

    assignees: ''
    
    ---
    
    **Is your feature request related to a problem? Please describe.**
    A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
    
    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    A clear and concise description of any alternative solutions or features you've considered.
    
    **Additional context**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  10. tests/associations_many2many_test.go

    	// Prepare Data for Clear
    	if err := DB.Model(&user2).Association("Languages").Append(&language); err != nil {
    		t.Fatalf("Error happened when append Languages, got %v", err)
    	}
    
    	AssertAssociationCount(t, user2, "Languages", 1, "after prepare data")
    
    	// Clear
    	if err := DB.Model(&user2).Association("Languages").Clear(); err != nil {
    		t.Errorf("Error happened when clear Languages, got %v", err)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Jun 10 13:05:19 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top