Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 355 for Decrement (0.51 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

                file("build/libs1/test-1.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
                file("build/libs1/test2-2.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
            } else {
                // Counter is isolated at execution time, so transforms will see the increment in each tasks' doLast { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.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. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy_test.go

    		old           *unstructured.Unstructured
    		obj           *unstructured.Unstructured
    		statusEnabled bool
    		expected      *unstructured.Unstructured
    	}{
    		{
    			name:          "/status is enabled, spec changes increment generation",
    			statusEnabled: true,
    			old: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"metadata": generation1(),
    					"spec":     "old",
    					"status":   "old",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K 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