Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for refcount (0.31 sec)

  1. pkg/proxy/winkernel/proxier.go

    func (ep *endpointInfo) DecrementRefCount() {
    	klog.V(3).InfoS("Decrementing Endpoint RefCount", "endpointInfo", ep)
    	if !ep.IsLocal() && ep.refCount != nil && *ep.refCount > 0 {
    		*ep.refCount--
    	}
    }
    
    func (ep *endpointInfo) Cleanup() {
    	klog.V(3).InfoS("Endpoint cleanup", "endpointInfo", ep)
    	if !ep.IsLocal() && ep.refCount != nil {
    		*ep.refCount--
    
    		// Remove the remote hns endpoint, if no service is referring it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        V put(K key, int hash, V value, boolean onlyIfAbsent) {
          lock();
          try {
            preWriteCleanup();
    
            int newCount = this.count + 1;
            if (newCount > this.threshold) { // ensure capacity
              expand();
              newCount = this.count + 1;
            }
    
            AtomicReferenceArray<E> table = this.table;
            int index = hash & (table.length() - 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsKeyMatchCA.java

            setBoost_Count("boost", opLambda);
        }
    
        public void setBoost_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            ValueCountAggregationBuilder builder = regCountA(name, "boost");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoost_Cardinality() {
            setBoost_Cardinality(null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsDuplicateHostCA.java

            setCreatedBy_Count("createdBy", opLambda);
        }
    
        public void setCreatedBy_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            ValueCountAggregationBuilder builder = regCountA(name, "createdBy");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Cardinality() {
            setCreatedBy_Cardinality(null);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsRoleTypeCA.java

            setCreatedBy_Count("createdBy", opLambda);
        }
    
        public void setCreatedBy_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            ValueCountAggregationBuilder builder = regCountA(name, "createdBy");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Cardinality() {
            setCreatedBy_Cardinality(null);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    	for _, compiler := range []string{"gc", "gccgo", "source"} {
    		errcount := 0
    		conf := Config{
    			Error: func(err error) {
    				// we should only see the import error
    				if errcount > 0 || !strings.Contains(err.Error(), "could not import") {
    					t.Errorf("for %s importer, got unexpected error: %v", compiler, err)
    				}
    				errcount++
    			},
    			//Importer: importer.For(compiler, nil),
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    	for _, compiler := range []string{"gc", "gccgo", "source"} {
    		errcount := 0
    		conf := Config{
    			Error: func(err error) {
    				// we should only see the import error
    				if errcount > 0 || !strings.Contains(err.Error(), "could not import") {
    					t.Errorf("for %s importer, got unexpected error: %v", compiler, err)
    				}
    				errcount++
    			},
    			Importer: importer.For(compiler, nil),
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
                      } catch (InvocationTargetException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
                      } catch (InvocationTargetException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    		// Absolutely no data, suggesting that a garbage collection
    		// has not yet happened. In order to allow profiling when
    		// garbage collection is disabled from the beginning of execution,
    		// accumulate all of the cycles, and recount buckets.
    		n = 0
    		for b := head; b != nil; b = b.allnext {
    			mp := b.mp()
    			for c := range mp.future {
    				lock(&profMemFutureLock[c])
    				mp.active.add(&mp.future[c])
    				mp.future[c] = memRecordCycle{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top