Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 404 for Decrement (0.39 sec)

  1. 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)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProjectConfigurationTracker.java

            void increment(PluginApplication pluginApplication, long duration) {
                InternalPluginIdentifier plugin = pluginApplication.getPlugin();
                pluginApplicationResults
                    .computeIfAbsent(plugin, key -> new PluginApplicationResult(plugin, pluginApplication.getApplicationId()))
                    .increment(duration);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/server/monitoring.go

    		With(ResourceTag.Value(request.Resource.Resource)).
    		With(ReasonTag.Value(reason)).
    		Increment()
    }
    
    func reportValidationPass(request *kube.AdmissionRequest) {
    	metricValidationPassed.
    		With(GroupTag.Value(request.Resource.Group)).
    		With(VersionTag.Value(request.Resource.Version)).
    		With(ResourceTag.Value(request.Resource.Resource)).
    		Increment()
    }
    
    func reportValidationHTTPError(status int) {
    	metricValidationHTTPError.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.Int32Var(&o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.IncrementTimeoutNFS, "pv-recycler-increment-timeout-nfs", o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.IncrementTimeoutNFS, "the increment of time added per Gi to ActiveDeadlineSeconds for an NFS scrubber pod")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/options/options.go

    	fs.IntVar(&o.VolumeConfigFlags.PersistentVolumeRecyclerIncrementTimeoutNFS, "pv-recycler-increment-timeout-nfs",
    		o.VolumeConfigFlags.PersistentVolumeRecyclerIncrementTimeoutNFS, "the increment of time added per Gi to ActiveDeadlineSeconds for an NFS scrubber pod")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  6. test/prove.go

    	i := 0
    	if len(b) > i {
    	top:
    		println(b[i]) // ERROR "Induction variable: limits \[0,\?\), increment 1$" "Proved IsInBounds$"
    		i++
    		if i < len(b) {
    			goto top
    		}
    	}
    }
    
    func atexit(foobar []func()) {
    	for i := len(foobar) - 1; i >= 0; i-- { // ERROR "Induction variable: limits \[0,\?\], increment 1"
    		f := foobar[i]
    		foobar = foobar[:i] // ERROR "IsSliceInBounds"
    		f()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/monitoring/example_sum_test.go

    	requests = monitoring.NewSum(
    		"requests_total",
    		"Number of requests handled, by protocol",
    	)
    )
    
    func ExampleNewSum() {
    	// increment on every http request
    	requests.With(protocol.Value("http")).Increment()
    
    	// count gRPC requests double
    	requests.With(protocol.Value("grpc")).Record(2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1005 bytes
    - Viewed (0)
  8. security/pkg/server/ca/server.go

    func (s *Server) CreateCertificate(ctx context.Context, request *pb.IstioCertificateRequest) (
    	*pb.IstioCertificateResponse, error,
    ) {
    	s.monitoring.CSR.Increment()
    	caller, err := security.Authenticate(ctx, s.Authenticators)
    	if caller == nil || err != nil {
    		s.monitoring.AuthnError.Increment()
    		return nil, status.Error(codes.Unauthenticated, "request authenticate failure")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    // 		goto D
    // 	}
    // 	goto C
    // C:
    // 	glob_ = !glob_
    // 	// no y increment
    // 	b = x & 1
    // 	x = x >> 1
    // 	if b != 0 {
    // 		goto E
    // 	}
    // 	goto B
    // D:
    // 	glob_ = !glob_
    // 	y += 10
    // 	b = x & 1
    // 	x = x >> 1
    // 	if b != 0 {
    // 		goto Z
    // 	}
    // 	goto B
    // E:
    // 	glob_ = !glob_
    // 	// no y increment
    // 	b = x & 1
    // 	x = x >> 1
    // 	if b != 0 {
    // 		goto Z
    // 	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  10. cni/pkg/repair/repaircontroller.go

    	if err != nil {
    		m.With(resultLabel.Value(resultFail)).Increment()
    		return fmt.Errorf("get netns: %v", err)
    	}
    	log = log.WithLabels("netns", netns)
    
    	if err := redirectRunningPod(pod, netns); err != nil {
    		log.Errorf("failed to setup redirection: %v", err)
    		m.With(resultLabel.Value(resultFail)).Increment()
    		return err
    	}
    	c.repairedPods[key] = pod.UID
    	log.Infof("pod repaired")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top