Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for currentValue (0.23 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

        external:
          currentAverageValue: "0"
          currentValue: "0"
          metricName: metricNameValue
          metricSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
        object:
          averageValue: "0"
          currentValue: "0"
          metricName: metricNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          }
        }
        cachingHashMap.clear();
      }
    
      @Override
      public V putIfAbsent(K key, V value) {
        V currentValue = get(key);
        if (currentValue != null) {
          return currentValue;
        }
        return put(key, value);
      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean remove(Object key, Object value) {
        if (value.equals(get(key))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

                // TODO Should the loop go on the outside to make updates smaller and less likely to collide, and also cheaper to re-run?
                locationsWrittenByCurrentBuild.updateAndGet(currentValue -> {
                    FileHierarchySet newValue = currentValue;
                    for (String location : locations) {
                        newValue = newValue.plus(location);
                    }
                    return newValue;
                });
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2beta1/conversion.go

    	out.MetricName = in.Metric.Name
    	if in.Current.Value != nil {
    		out.CurrentValue = *in.Current.Value
    	}
    	out.MetricSelector = in.Metric.Selector
    	return nil
    }
    
    func Convert_v2beta1_ExternalMetricStatus_To_autoscaling_ExternalMetricStatus(in *autoscalingv2beta1.ExternalMetricStatus, out *autoscaling.ExternalMetricStatus, s conversion.Scope) error {
    	value := in.CurrentValue
    	averageValue := in.CurrentAverageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 16:28:10 UTC 2021
    - 13.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMinimalDependency.java

        @Override
        protected void validateMutation() {
            throw new UnsupportedOperationException("Minimal dependencies are immutable.");
        }
    
        @Override
        protected void validateMutation(Object currentValue, Object newValue) {
            validateMutation();
        }
    
        @Override
        public void copyTo(AbstractExternalModuleDependency target) {
            super.copyTo(target);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// metricName is the name of the metric in question.
    	MetricName string `json:"metricName" protobuf:"bytes,2,name=metricName"`
    	// currentValue is the current value of the metric (as a quantity).
    	CurrentValue resource.Quantity `json:"currentValue" protobuf:"bytes,3,name=currentValue"`
    
    	// selector is the string-encoded form of a standard kubernetes label selector for the given metric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// metricName is the name of the metric in question.
    	MetricName string `json:"metricName" protobuf:"bytes,2,name=metricName"`
    
    	// currentValue is the current value of the metric (as a quantity).
    	CurrentValue resource.Quantity `json:"currentValue" protobuf:"bytes,3,name=currentValue"`
    
    	// selector is the string-encoded form of a standard kubernetes label selector for the given metric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

            }
    
            @Override
            public T get() throws IllegalStateException {
                T currentValue = getOrNull();
                if (currentValue == null) {
                    throw new IllegalStateException("No calculated value is available for " + owner);
                }
                return currentValue;
            }
    
            @Override
            public T getOrNull() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/v1/conversion.go

    	out.MetricName = in.Metric.Name
    	if in.Current.Value != nil {
    		out.CurrentValue = *in.Current.Value
    	}
    	if in.Current.AverageValue != nil {
    		out.CurrentAverageValue = in.Current.AverageValue
    	}
    	out.MetricSelector = in.Metric.Selector
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 16 03:29:22 UTC 2021
    - 21.2K bytes
    - Viewed (0)
Back to top