Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 977 for incremented (0.45 sec)

  1. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h

      return testing::ExplainMatchResult(
          testing::IsTrue(), is_ok || graph_analysis_failure, result_listener);
    }
    
    MATCHER_P2(IncrementedOrFiltered, metric, value,
               "Metric was incremented by value or Status equal to the Graph "
               "Analysis failure") {
      auto graph_analysis_failure = WasGraphAnalysisFailure(arg);
      if (graph_analysis_failure) {
        return testing::ExplainMatchResult(testing::IsTrue(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // totally public telemetry data.
    //
    // There are two kinds of counters, basic counters and stack counters.
    // Basic counters are created by [New].
    // Stack counters are created by [NewStack].
    // Both are incremented by calling Inc().
    //
    // Basic counters are very cheap. Stack counters are more expensive, as they
    // require parsing the stack. (Stack counters are implemented as basic counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		if gotI != oneI {
    			panic(fmt.Sprintf("one not called once per iteration; got i %d want %d", gotI, oneI))
    		}
    		oneI++
    
    		// The function value must be evaluated before arguments, so
    		// selectI must have been incremented already.
    		if selectI != oneI {
    			panic(fmt.Sprintf("selectA not called before not called before one; got i %d want %d", selectI, oneI))
    		}
    
    		return 1
    	}
    
    	val := 0
    	for i := 0; i < iter; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

             * This is indicated by setting the current cache version to Integer.MAX_VALUE (so it cannot be further incremented).
             */
            public Builder retiredIn(String gradleVersion) {
                return changedTo(Integer.MAX_VALUE, gradleVersion);
            }
    
            public Builder changedTo(int cacheVersion, String minGradleVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/batch/v1/generated.proto

      //   running pods are terminated.
      // - Ignore: indicates that the counter towards the .backoffLimit is not
      //   incremented and a replacement pod is created.
      // - Count: indicates that the pod is handled in the default way - the
      //   counter towards the .backoffLimit is incremented.
      // Additional values are considered to be added in the future. Clients should
      // react to an unknown action by skipping the rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. 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)
  8. pkg/proxy/winkernel/proxier_test.go

    	} else {
    		if epInfo.hnsID != "EPID-3" {
    			t.Errorf("%v does not match %v", epInfo.hnsID, endpointGuid1)
    		}
    	}
    
    	if *proxier.endPointsRefCount["EPID-3"] <= 0 {
    		t.Errorf("RefCount not incremented. Current value: %v", *proxier.endPointsRefCount[endpointGuid1])
    	}
    
    	if *proxier.endPointsRefCount["EPID-3"] != *epInfo.refCount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    	// represented by the job's .status.failed field, is incremented.
    	PodFailurePolicyActionCount PodFailurePolicyAction = "Count"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    	// represented by the job's .status.failed field, is incremented.
    	PodFailurePolicyActionCount PodFailurePolicyAction = "Count"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top