Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 259 for ungetc (0.19 sec)

  1. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // selector is the string-encoded form of a standard kubernetes label selector for the given metric
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 4;
    
      // averageValue is the target value of the average of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    // compares the MaximumVolumeSize against the requested size of pending volumes
    // to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back
    // to a comparison against the less precise Capacity. If that is also unset,
    // the scheduler assumes that capacity is insufficient and tries some other
    // node.
    type CSIStorageCapacity struct {
    	metav1.TypeMeta `json:",inline"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

        }
    
        @Override
        public SupportsConvention unsetConvention() {
            discardConvention();
            return this;
        }
    
        @Override
        public SupportsConvention unset() {
            discardValue();
            return this;
        }
    
        /**
         * Sets the value of the property to the current convention value, replacing whatever explicit value the property already had.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cfg/cfg.go

    		// case go/build falls back to the runtime constants), so
    		// go/build.Default.GOOS/GOARCH == runtime.GOOS/GOARCH.
    		// So ctxt.CgoEnabled (== go/build.Default.CgoEnabled) is correct
    		// as is and can be left unmodified.
    		//
    		// All that said, starting in Go 1.20 we layer one more rule
    		// on top of the go/build decision: if CC is unset and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    	addConfigError := func(err error, definition *admissionregistrationv1.ValidatingAdmissionPolicy, binding *admissionregistrationv1.ValidatingAdmissionPolicyBinding) {
    		// we always default the FailurePolicy if it is unset and validate it in API level
    		var policy admissionregistrationv1.FailurePolicyType
    		if definition.Spec.FailurePolicy == nil {
    			policy = admissionregistrationv1.Fail
    		} else {
    			policy = *definition.Spec.FailurePolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pkg/apis/storage/types.go

    // compares the MaximumVolumeSize against the requested size of pending volumes
    // to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back
    // to a comparison against the less precise Capacity. If that is also unset,
    // the scheduler assumes that capacity is insufficient and tries some other
    // node.
    type CSIStorageCapacity struct {
    	metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     * <ul>
     *     <li>{@link EmptySupplier}, the initial value of a collection (or after {@link #empty()} is invoked)</li>
     *     <li>{@link NoValueSupplier}, when the collection value is unset (via {@link #set(Iterable)} or {@link #unset()}.</li>
     *     <li>{@link FixedSupplier}, when the collection is finalized - in that case, the fixed supplier will wrap the realized
     *     of the Java collection this collection property corresponds to</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      // selector is the string-encoded form of a standard kubernetes label selector for the given metric.
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 4;
    
      // averageValue is the target value of the average of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // selector is the string-encoded form of a standard kubernetes label selector for the given metric.
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 4;
    
      // averageValue is the target value of the average of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    			return nil, fmt.Errorf("paramKind kind `%v` not yet synced to use for admission",
    				paramKind.String())
    		}
    	}
    
    	// Find params to use with policy
    	switch {
    	case paramKind == nil:
    		// ParamKind is unset. Ignore any globalParamRef or namespaceParamRef
    		// setting.
    		return []runtime.Object{nil}, nil
    	case paramRef == nil:
    		// Policy ParamKind is set, but binding does not use it.
    		// Validate with nil params
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top