Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,054 for incrementBy (0.18 sec)

  1. pilot/pkg/xds/sds.go

    		pilotSDSCertificateErrors.Increment()
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    	configClusterSecrets, err := s.secrets.ForCluster(s.configCluster)
    	if err != nil {
    		log.Warnf("config cluster %s not found, cannot retrieve certificates: %v", s.configCluster, err)
    		pilotSDSCertificateErrors.Increment()
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/loopbce.go

    			// See https://go.dev/issue/63955
    			continue
    		}
    
    		// Expect the increment to be a nonzero constant.
    		if !inc.isGenericIntConst() {
    			continue
    		}
    		step := inc.AuxInt
    		if step == 0 {
    			continue
    		}
    
    		// Increment sign must match comparison direction.
    		// When incrementing, the termination comparison must be ind </<= limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    // This implementation is based on a condition variable.
    // This implementation tracks active goroutines:
    // the given counter is decremented for a goroutine waiting for this
    // varible to be set and incremented when such a goroutine is
    // unblocked.
    type countingPromise struct {
    	lock          sync.Locker
    	cond          sync.Cond
    	activeCounter counter.GoRoutineCounter // counter of active goroutines
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compilation_cache.h

      };
    
      // Returns std::nullopt if value for the supplied key is not found. If a value
      // is found, `request_count` is incremented before returning the value.
      std::optional<Value> Lookup(const Key& key) const;
    
      // Inserts an empty value if value is not found and returns it. If a value is
      // found, `request_count` is incremented before returning the value.
      Value LookupOrCreate(const Key& key);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. cmd/http-stats.go

    	apiStats map[string]int
    	sync.RWMutex
    }
    
    // Inc increments the api stats counter.
    func (stats *HTTPAPIStats) Inc(api string) {
    	if stats == nil {
    		return
    	}
    	stats.Lock()
    	defer stats.Unlock()
    	if stats.apiStats == nil {
    		stats.apiStats = make(map[string]int)
    	}
    	stats.apiStats[api]++
    }
    
    // Dec increments the api stats counter.
    func (stats *HTTPAPIStats) Dec(api string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Change Java files'                         | ['J', 'G']   | ['J.changed', 'G']   | ['Incremental compilation of', "UP-TO-DATE"]                 | ['J.changed', 'G']   | ['UP-TO-DATE', 'UP-TO-DATE']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    			// server-side-apply increments resouceVersion if the resource is unchanged for 1 second after the previous write,
    			// and by waiting a second we ensure that resourceVersion will be updated if the no-op patch increments resourceVersion
    			time.Sleep(time.Second)
    			// no-op patch
    			rv := patchedNoxuInstance.GetResourceVersion()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractTaskResult.java

        private final boolean incremental;
        private final List<String> executionReasons;
    
        protected AbstractTaskResult(long startTime, long endTime, String outcomeDescription, boolean incremental, List<String> executionReasons) {
            super(startTime, endTime, outcomeDescription);
            this.incremental = incremental;
            this.executionReasons = executionReasons;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top