Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 869 for Constraint (0.15 sec)

  1. schema/constraint_test.go

    	results := map[string]schema.CheckConstraint{
    		"name_checker": {
    			Name:       "name_checker",
    			Constraint: "name <> 'jinzhu'",
    		},
    		"chk_user_checks_name2": {
    			Name:       "chk_user_checks_name2",
    			Constraint: "name <> 'jinzhu'",
    		},
    		"chk_user_checks_name3": {
    			Name:       "chk_user_checks_name3",
    			Constraint: "name <> 'jinzhu'",
    		},
    	}
    
    	checks := user.ParseCheckConstraints()
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AuthScheme.groovy

            }
    
            private ConstraintMapping createConstraintMapping(String path) {
                def constraint = new Constraint()
                constraint.name = constraintName()
                constraint.authenticate = true
                constraint.roles = [Constraint.ANY_ROLE, Constraint.ANY_AUTH, TestUserRealm.ROLE] as String[]
                def constraintMapping = new ConstraintMapping()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/utils.td

    def GetShape: NativeCodeCall<"GetShape($0)">;
    
    // Constraint that values in list attribute are all ones.
    def IsAllOnesConstant : Constraint<CPred<"TFL::IsAllOnesConstant($0)">>;
    
    // Constraint that checks if the transpose op is trivial. Trivial means that
    // the permutation is a cyclic permutation of the original shape with only the
    // identity dimensions permuted.
    def IsTransposeTrivial : Constraint<CPred<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

                }
            }
            if (specs.size() == 1) {
                return specs.get(0);
            }
            return Specs.intersect(specs);
        }
    
        private void validateLowestTestedVersion(String constraint, String value, GradleVersion minVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    project(":platform", "org.test:platform:1.9") {
                        variant("runtimeElements", ['org.gradle.usage': 'java-runtime', 'org.gradle.category': 'platform'])
                        constraint("org:foo:1.1")
                        constraint("org:bar:1.2")
                        noArtifacts()
                    }
                    edge('org:foo', 'org:foo:1.1') {
                        configuration = "runtime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        constraint("org:databind:2.9.0")
                        constraint("org:core:2.9.0")
                        constraint("org:annotations:2.9.0")
                    }
                    '2.9.4' {
                        asPlatform()
                        constraint("org:databind:2.9.4")
                        constraint("org:core:2.9.4")
                        constraint("org:annotations:2.9.0")
                    }
                    '2.9.4.1' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                            }
                        }
                    }
                    // The following constraints come from the compile classpath configuration resolution result
                    constraint("org:foo:{strictly 1.0}", "org:foo:1.0")
                    constraint("org:fooA:{strictly 1.0}", "org:fooA:1.0")
                    constraint("org:transitive:{strictly 1.0}", "org:transitive:1.0")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    
    class StrictVersionConstraintsFeatureInteractionIntegrationTest extends AbstractModuleDependencyResolveTest {
        def "can turn constraint into strict constraint by using a component metadata rule"() {
            given:
            repository {
                'org:foo:1.0'() {
                    dependsOn 'org:baz:2.0'
                }
                'org:bar:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. 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)
Back to top