Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for Validation (0.3 sec)

  1. src/cmd/go/internal/modload/init.go

    // with modules.
    func Init() {
    	if initialized {
    		return
    	}
    	initialized = true
    
    	// Keep in sync with WillBeEnabled. We perform extra validation here, and
    	// there are lots of diagnostics and side effects, so we can't use
    	// WillBeEnabled directly.
    	var mustUseModules bool
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        resource.getDirectory(),
                        resource);
            }
        }
    
        // ----------------------------------------------------------------------
        // Field validation
        // ----------------------------------------------------------------------
    
        private boolean validateCoordinateId(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	if err := Convert_apiextensions_CustomResourceDefinitionNames_To_v1_CustomResourceDefinitionNames(&in.Names, &out.Names, s); err != nil {
    		return err
    	}
    	out.Scope = ResourceScope(in.Scope)
    	// WARNING: in.Validation requires manual conversion: does not exist in peer-type
    	// WARNING: in.Subresources requires manual conversion: does not exist in peer-type
    	if in.Versions != nil {
    		in, out := &in.Versions, &out.Versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    	// rawEncoding encodes a raw instruction byte sequence.
    	rawEncoding = encoding{encode: encodeRawIns, validate: validateRaw, length: 4}
    
    	// pseudoOpEncoding panics if encoding is attempted, but does no validation.
    	pseudoOpEncoding = encoding{encode: nil, validate: func(*obj.Link, *instruction) {}, length: 0}
    
    	// badEncoding is used when an invalid op is encountered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	nodeUpdateWorkerSize = 8
    
    	// taintEvictionController is defined here in order to prevent imports of
    	// k8s.io/kubernetes/cmd/kube-controller-manager/names which would result in validation errors.
    	// This constant will be removed upon graduation of the SeparateTaintEvictionController feature.
    	taintEvictionController = "taint-eviction-controller"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	// listeners for these user specified ports, we will auto generate
    	// configs for other ports if and only if the sidecarConfig has an
    	// egressListener on wildcard port.
    	//
    	// Validation will ensure that we have utmost one wildcard egress listener
    	// occurring in the end
    
    	// Add listeners based on the config in the sidecar.EgressListeners if
    	// no Sidecar CRD is provided for this config namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    // the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    		}
    	default:
    		// It shouldn't reach here as invalid metric source type is filtered out in the api-server's validation.
    		err = fmt.Errorf("unknown metric source type %q%w", string(spec.Type), errSpec)
    		condition := a.getUnableComputeReplicaCountCondition(hpa, "InvalidMetricSourceType", err)
    		return 0, "", time.Time{}, condition, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    // the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top