Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 117 for Decrement (2.24 sec)

  1. pilot/pkg/config/kube/crdclient/metrics.go

    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_cfg_events",
    		"Events from k8s config.",
    	)
    )
    
    func incrementEvent(kind, event string) {
    	k8sEvents.With(typeTag.Value(kind), eventTag.Value(event)).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 953 bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/config/types.go

    	// pod.
    	MinimumTimeoutNFS int32
    	// podTemplateFilePathNFS is the file path to a pod definition used as a template for
    	// NFS persistent volume recycling
    	PodTemplateFilePathNFS string
    	// incrementTimeoutNFS is the increment of time added per Gi to ActiveDeadlineSeconds
    	// for an NFS scrubber pod.
    	IncrementTimeoutNFS int32
    	// podTemplateFilePathHostPath is the file path to a pod definition used as a template for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. test/codegen/atomics.go

    // generated for architectures that support them
    
    package codegen
    
    import "sync/atomic"
    
    type Counter struct {
    	count int32
    }
    
    func (c *Counter) Increment() {
    	// Check that ARm64 v8.0 has both atomic instruction (LDADDALW) and a dynamic check
    	// (for arm64HasATOMICS), while ARM64 v8.1 has only atomic and no dynamic check.
    	// arm64/v8.0:"LDADDALW"
    	// arm64/v8.1:"LDADDALW"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 728 bytes
    - Viewed (0)
  4. operator/pkg/validate/validate.go

    		return nil
    	}
    	if !util.IsPtr(structPtr) {
    		metrics.CRValidationErrorTotal.Increment()
    		return util.NewErrs(fmt.Errorf("validate path %s, value: %v, expected ptr, got %T", path, structPtr, structPtr))
    	}
    	structElems := reflect.ValueOf(structPtr).Elem()
    	if !util.IsStruct(structElems) {
    		metrics.CRValidationErrorTotal.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableLong.java

            this.value = value;
        }
    
        public long get() {
            return value;
        }
    
        public void set(long value) {
            this.value = value;
        }
    
        public void increment(long delta) {
            value += delta;
        }
    
        @Override
        public String toString() {
            return Long.toString(value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. samples/builder/README.md

    You can also build a set of images instead of all of them:
    
    ```bash
    docker buildx bake --push examples-helloworld-v1 tcp-echo-server
    ```
    
    ## Updating images
    
    When updating images, increment the version for the image in the `tags` config.
    You will also want to update the sample YAMLs
    
    ## Building official images
    
    Set `HUB=docker.io/istio` for official image builds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  7. pkg/version/stats.go

    // tracking rollouts, etc.
    func (b BuildInfo) RecordComponentBuildTag(component string) {
    	istioBuildTag.With(gitTagKey.Value(b.GitTag), componentTagKey.Value(component)).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockStateSerializer.java

        /**
         * size (bytes) of the data of this protocol.
         */
        int getSize();
    
        /**
         * single byte that describes the version.
         * an implementation protocol should increment the value when protocol changes in an incompatible way
         */
        byte getVersion();
    
        /**
         * Returns the initial state for a lock file with this format.
         */
        LockState createInitialState();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/panicnil_test.go

    			t.Errorf("recover() = %v, want %v", e, want)
    			panic(e)
    		}
    		metrics.Read(s)
    		v2 := s[0].Value.Uint64()
    		if want == nil {
    			if v2 != v1+1 {
    				t.Errorf("recover() with panicnil=1 did not increment metric %s", name)
    			}
    		} else {
    			if v2 != v1 {
    				t.Errorf("recover() with panicnil=0 incremented metric %s: %d -> %d", name, v1, v2)
    			}
    		}
    	}()
    	panic(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:26:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. pilot/pkg/util/informermetric/informerutil.go

    	mu.RUnlock()
    	if ok {
    		return handler
    	}
    
    	mu.Lock()
    	defer mu.Unlock()
    	clusterMetric := errorMetric.With(clusterLabel.Value(clusterID.String()))
    	h := func(_ *cache.Reflector, err error) {
    		clusterMetric.Increment()
    		log.Errorf("watch error in cluster %s: %v", clusterID, err)
    	}
    	handlers[clusterID] = h
    	return h
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top