Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 404 for Decrement (0.26 sec)

  1. operator/pkg/metrics/utils.go

    	CRMergeFailureTotal.
    		With(MergeErrorLabel.Value(string(reason))).
    		Increment()
    }
    
    // CountManifestRenderError increments the count of manifest
    // render errors.
    func CountManifestRenderError(cn name.ComponentName, reason RenderErrorType) {
    	ManifestRenderErrorTotal.
    		With(ComponentNameLabel.Value(string(cn))).
    		With(RenderErrorLabel.Value(string(reason))).
    		Increment()
    }
    
    // CountCRFetchFail increments the count of CR fetch failure
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 18:48:20 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. pkg/xds/monitoring.go

    	totalXDSRejects.With(typeTag.Value(model.GetMetricType(xdsType))).Increment()
    	switch xdsType {
    	case model.ListenerType:
    		ldsReject.With(nodeTag.Value(node), errTag.Value(errCode)).Increment()
    	case model.ClusterType:
    		cdsReject.With(nodeTag.Value(node), errTag.Value(errCode)).Increment()
    	case model.EndpointType:
    		edsReject.With(nodeTag.Value(node), errTag.Value(errCode)).Increment()
    	case model.RouteType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. 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.
       *
       * @since 28.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    <h3 id="IncDec_statements">IncDec statements</h3>
    
    <p>
    The "++" and "--" statements increment or decrement their operands
    by the untyped <a href="#Constants">constant</a> <code>1</code>.
    As with an assignment, the operand must be <a href="#Address_operators">addressable</a>
    or a map index expression.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/progress/PercentageProgressFormatter.java

            this.prefix = prefix;
        }
    
        @Override
        public String incrementAndGetProgress() {
            increment();
            return getProgress();
        }
    
        public void increment() {
            if (current == total) {
                throw new IllegalStateException("Cannot increment beyond the total of: " + total);
            }
            current++;
        }
    
        @Override
        public String getProgress() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                task first {
                    doFirst {
                        provider.get().increment()
                    }
                }
    
                task second {
                    doLast {
                        provider.get().increment()
                    }
                }
            """
    
            when:
            run("first", "second")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. pkg/webhooks/monitoring.go

    func reportWebhookPatchAttempts(webhookConfigName string) {
    	metricWebhookPatchAttempts.
    		With(webhookConfigNameTag.Value(webhookConfigName)).
    		Increment()
    }
    
    func reportWebhookPatchRetry(webhookConfigName string) {
    	metricWebhookPatchRetries.
    		With(webhookConfigNameTag.Value(webhookConfigName)).
    		Increment()
    }
    
    func reportWebhookPatchFailure(webhookConfigName string, reason string) {
    	metricWebhookPatchFailures.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/controller/monitoring.go

    	metricWebhookConfigurationUpdateError.With(reasonLabel.Value(string(reason))).Increment()
    }
    
    func reportValidationConfigLoadError(reason string) {
    	metricWebhookConfigurationLoadError.With(reasonLabel.Value(reason)).Increment()
    }
    
    func reportValidationConfigUpdate() {
    	metricWebhookConfigurationUpdates.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/monitoring.go

    		// TODO use a single metric with a type tag
    		switch xdsType {
    		case v3.ListenerType:
    			ldsSendErrPushes.Increment()
    		case v3.ClusterType:
    			cdsSendErrPushes.Increment()
    		case v3.EndpointType:
    			edsSendErrPushes.Increment()
    		case v3.RouteType:
    			rdsSendErrPushes.Increment()
    		}
    		return true
    	}
    	return false
    }
    
    func recordPushTime(xdsType string, duration time.Duration) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. 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)
Back to top