Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for currentValue (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependency.java

            this.onMutate = onMutate.add(action);
        }
    
        protected void validateMutation() {
            onMutate.execute(this);
        }
    
        protected void validateMutation(Object currentValue, Object newValue) {
            if (!Objects.equal(currentValue, newValue)) {
                validateMutation();
            }
        }
    
        private void validateNotVariantAware() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.deepcopy.go

    	*out = *in
    	if in.MetricSelector != nil {
    		in, out := &in.MetricSelector, &out.MetricSelector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	out.CurrentValue = in.CurrentValue.DeepCopy()
    	if in.CurrentAverageValue != nil {
    		in, out := &in.CurrentAverageValue, &out.CurrentAverageValue
    		x := (*in).DeepCopy()
    		*out = &x
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/SortedMapDiffUtilTest.groovy

                    result.added.add(currentProperty)
                    return true
                }
    
                @Override
                boolean updated(String property, String previousValue, String currentValue) {
                    result.updated.add(property)
                    return true
                }
            })
            return result
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.MetricSelector != nil {
    		in, out := &in.MetricSelector, &out.MetricSelector
    		*out = new(metav1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	out.CurrentValue = in.CurrentValue.DeepCopy()
    	if in.CurrentAverageValue != nil {
    		in, out := &in.CurrentAverageValue, &out.CurrentAverageValue
    		x := (*in).DeepCopy()
    		*out = &x
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 16.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMinimalDependencyVariant.java

        @Override
        protected void validateMutation() {
            throw new UnsupportedOperationException("Minimal dependencies are immutable.");
        }
    
        @Override
        protected void validateMutation(Object currentValue, Object newValue) {
            validateMutation();
        }
    
        @Override
        public void mutateAttributes(AttributeContainer attributes) {
            attributesMutator.execute(attributes);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // within a given metric.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector metricSelector = 2;
    
      // currentValue is the current value of the metric (as a quantity)
      optional k8s.io.apimachinery.pkg.api.resource.Quantity currentValue = 3;
    
      // currentAverageValue is the current value of metric averaged over autoscaled pods.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"metricName":          "metricName is the name of a metric used for autoscaling in metric system.",
    	"metricSelector":      "metricSelector is used to identify a specific time series within a given metric.",
    	"currentValue":        "currentValue is the current value of the metric (as a quantity)",
    	"currentAverageValue": "currentAverageValue is the current value of metric averaged over autoscaled pods.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/Striped64.java

       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
       */
      abstract long fn(long currentValue, long newValue);
    
      /**
       * Handles cases of updates involving initialization, resizing, creating new Cells, and/or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/Striped64.java

       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
       */
      abstract long fn(long currentValue, long newValue);
    
      /**
       * Handles cases of updates involving initialization, resizing, creating new Cells, and/or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // within a given metric.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector metricSelector = 2;
    
      // currentValue is the current value of the metric (as a quantity)
      optional .k8s.io.apimachinery.pkg.api.resource.Quantity currentValue = 3;
    
      // currentAverageValue is the current value of metric averaged over autoscaled pods.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top