Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for Constraint (1.19 sec)

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

    					rs = tidy
    				} else {
    					conflict := Conflict{
    						Path: mg.g.FindPath(func(m module.Version) bool {
    							return m.Path == "go" && m.Version == v
    						})[1:],
    						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
    					}
    					msg := conflict.Summary()
    					if cfg.BuildV {
    						msg = conflict.String()
    					}
    					ld.error(errors.New(msg))
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === [5.0] Improved support for dependency and version constraints
    
    Through the Gradle 4.x release stream, new `@Incubating` features were added to the dependency resolution engine.
    These include sophisticated version constraints (`prefer`, `strictly`, `reject`), dependency constraints, and `platform` dependencies.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    	DNSNames       []string
    	EmailAddresses []string
    	IPAddresses    []net.IP
    	URIs           []*url.URL
    
    	// Name constraints
    	PermittedDNSDomainsCritical bool // if true then the name constraints are marked critical.
    	PermittedDNSDomains         []string
    	ExcludedDNSDomains          []string
    	PermittedIPRanges           []*net.IPNet
    	ExcludedIPRanges            []*net.IPNet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // +optional
      optional ParamKind paramKind = 1;
    
      // MatchConstraints specifies what resources this policy is designed to validate.
      // The AdmissionPolicy cares about a request if it matches _all_ Constraints.
      // However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
      // ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // +optional
      optional ParamKind paramKind = 1;
    
      // MatchConstraints specifies what resources this policy is designed to validate.
      // The AdmissionPolicy cares about a request if it matches _all_ Constraints.
      // However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
      // ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// MatchConstraints specifies what resources this policy is designed to validate.
    	// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
    	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
    	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// MatchConstraints specifies what resources this policy is designed to validate.
    	// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
    	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
    	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                ModuleRevisionId dynamicId;
                if ((revConstraint == null) && (branchConstraint == null)) {
                    // no dynamic constraints defined, so dynamicId equals revId
                    dynamicId = createModuleRevisionId(org, name, branch, rev, extraAttributes, false);
                } else {
                    if (branchConstraint == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    					Status: policy.PodDisruptionBudgetStatus{DisruptionsAllowed: 0},
    				},
    			},
    			disableParallelism: true,
    			expected: [][]candidate{
    				{
    					// Even though the DefaultPreemptionArgs constraints suggest that the
    					// minimum number of candidates is 2, we get three candidates here
    					// because we're okay with being a little over (in production, if a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // for the entire encapsulated subgraph. In case of soft placement, use a
      // deterministic approach to fill in the requested device. Handle co-location
      // constraints similarly if they exist.
      if (device_.empty()) {
        device_ = node->assigned_device_name().empty()
                      ? node->requested_device()
                      : node->assigned_device_name();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top