Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for currentValue (0.63 sec)

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

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryCache.java

                        String currentValue = entry.getValue().toString();
                        if (!currentValue.equals(previousValue)) {
                            LOGGER.debug("Invalidating {} as cache property {} has changed from {} to {}.", DefaultPersistentDirectoryCache.this, entry.getKey(), previousValue, currentValue);
                            return true;
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:20:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                    LocalComponentGraphResolveState value = currentValue();
                    if (value != null) {
                        value.reevaluate();
                    }
                }
            }
    
            @Nullable
            LocalComponentGraphResolveState tryCached(ComponentIdentifier id) {
                LocalComponentGraphResolveState value = currentValue();
                assert value == null || value.getId().equals(id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top