Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 301 for Constraint (0.14 sec)

  1. src/crypto/x509/verify.go

    	// least one label must be prepended, but only for URI and email
    	// constraints, not DNS constraints. The code also supports that
    	// behaviour for DNS constraints.
    
    	mustHaveSubdomains := false
    	if constraint[0] == '.' {
    		mustHaveSubdomains = true
    		constraint = constraint[1:]
    	}
    
    	constraintLabels, ok := domainToReverseLabels(constraint)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/crypto/x509/name_constraints_test.go

    				if err != nil {
    					return nil, nil, nil, nil, err
    				}
    				ips = append(ips, ipNet)
    
    			case strings.HasPrefix(constraint, "email:"):
    				emailAddrs = append(emailAddrs, constraint[6:])
    
    			case strings.HasPrefix(constraint, "uri:"):
    				uriDomains = append(uriDomains, constraint[4:])
    
    			default:
    				return nil, nil, nil, nil, fmt.Errorf("unknown constraint %q", constraint)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/PersistentVcsMetadataCache.java

            cache.useCache(() -> workingDirCache.put(constraintCacheKey(repository, constraint), selectedVersion));
        }
    
        private String constraintCacheKey(VersionControlRepositoryConnection repository, VersionConstraint constraint) {
            if (constraint.getBranch() != null) {
                return repository.getUniqueId() + ":b:" + constraint.getBranch();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/go/types/typeparam.go

    // than one type will result in a panic.
    //
    // The constraint argument can be nil, and set later via SetConstraint. If the
    // constraint is non-nil, it must be fully defined.
    func NewTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	return (*Checker)(nil).newTypeParam(obj, constraint)
    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                            constraint("org.springframework:spring-core:${springVersion}")
                            constraint("org.springframework:spring-aop:${springVersion}")
                            constraint("org.springframework:spring-beans:${springVersion}")
                            constraint("org.springframework:spring-context:${springVersion}")
                            constraint("org.springframework:spring-expression:${springVersion}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

            List<ExcludeMetadata> excludes,
            boolean force, boolean changing, boolean transitive, boolean constraint, boolean endorsing,
            @Nullable String reason
        ) {
            this(selector, dependencyConfiguration, artifactNames, excludes, force, changing, transitive, constraint, endorsing, false, reason);
        }
    
        public LocalComponentDependencyMetadata(
            ComponentSelector selector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. schema/relationship.go

    	sql = "CONSTRAINT ? FOREIGN KEY ? REFERENCES ??"
    	if constraint.OnDelete != "" {
    		sql += " ON DELETE " + constraint.OnDelete
    	}
    
    	if constraint.OnUpdate != "" {
    		sql += " ON UPDATE " + constraint.OnUpdate
    	}
    
    	foreignKeys := make([]interface{}, 0, len(constraint.ForeignKeys))
    	for _, field := range constraint.ForeignKeys {
    		foreignKeys = append(foreignKeys, clause.Column{Name: field.DBName})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

         *
         * @param dependencyConstraintNotation dependency constraint to add
         * @return the new dependency constraint
         * @see DependencyConstraintFactory#create(CharSequence) Valid dependency constraint notation for this method
         * @since 8.7
         */
        default DependencyConstraint constraint(CharSequence dependencyConstraintNotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                    }
                }
            }
        }
    
        void "module replacement rules are applied to dependency constraints"() {
            given:
            buildFile << """
                dependencies {
                    conf 'org:bar:1.0'
                    constraints {
                        conf 'org:baz:1.1' //constraint ignored due to replacement rule
                    }
                    modules {
                        module("org:baz") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. errors.go

    	// ErrDuplicatedKey occurs when there is a unique key constraint violation
    	ErrDuplicatedKey = errors.New("duplicated key not allowed")
    	// ErrForeignKeyViolated occurs when there is a foreign key constraint violation
    	ErrForeignKeyViolated = errors.New("violates foreign key constraint")
    	// ErrCheckConstraintViolated occurs when there is a check constraint violation
    	ErrCheckConstraintViolated = errors.New("violates check constraint")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top