Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for currentValue (0.2 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/objectmetricstatus.go

    	Target       *CrossVersionObjectReferenceApplyConfiguration `json:"target,omitempty"`
    	MetricName   *string                                        `json:"metricName,omitempty"`
    	CurrentValue *resource.Quantity                             `json:"currentValue,omitempty"`
    	Selector     *v1.LabelSelectorApplyConfiguration            `json:"selector,omitempty"`
    	AverageValue *resource.Quantity                             `json:"averageValue,omitempty"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/externalmetricstatus.go

    	MetricName          *string                             `json:"metricName,omitempty"`
    	MetricSelector      *v1.LabelSelectorApplyConfiguration `json:"metricSelector,omitempty"`
    	CurrentValue        *resource.Quantity                  `json:"currentValue,omitempty"`
    	CurrentAverageValue *resource.Quantity                  `json:"currentAverageValue,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

            return visitValues(location, new AbstractNodeAccessVisitor<T>() {
                T currentValue = initialValue;
    
                @Override
                void visit(NodeAccess value) {
                    currentValue = visitor.apply(currentValue, value.getNode());
                }
    
                @Override
                T getResult() {
                    return currentValue;
                }
            });
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/RootScriptDomainObjectContext.java

            }
    
            @Override
            public T get() throws IllegalStateException {
                T currentValue = getOrNull();
                if (currentValue == null) {
                    throw new IllegalStateException("No value is available.");
                }
                return currentValue;
            }
    
            @Override
            public T getOrNull() {
                return value;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 23 18:38:36 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/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 May 06 21:25:20 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top