Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for Constraint (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      // Collect `dst_root` constraints that are applicable to the values defined in
      // the `src_root` cluster.
      ValuesConstraintSet constraints = members[src_root].constraints;
      members[dst_root].constraints.Walk([&](Value v, ValueConstraint constraint) {
        Operation *op = v.getDefiningOp();
        if (op && filter(op)) constraints.Insert(v, constraint);
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains="" />
            <constraint name="TYPE" within="" contains="" />
            <constraint name="ARR" nameOfExprType=".*\[\]" within="" contains="" />
            <constraint name="RES" nameOfExprType="boolean" exprTypeWithinHierarchy="true" within="" contains="" />
            <constraint name="ITEM" within="" contains="" />
            <constraint name="TARGET" within="" contains="" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. migrator/migrator.go

    						if rel.Field.IgnoreMigration {
    							continue
    						}
    						if constraint := rel.ParseConstraint(); constraint != nil &&
    							constraint.Schema == stmt.Schema && !queryTx.Migrator().HasConstraint(value, constraint.Name) {
    							if err := execTx.Migrator().CreateConstraint(value, constraint.Name); err != nil {
    								return err
    							}
    						}
    					}
    				}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

            call(self, dependencyOrDependencyConstraint, null);
        }
    
        /**
         * Add a dependency or dependency constraint.
         *
         * @param dependencyOrDependencyConstraint dependency or dependency constraint to add
         * @param configuration an action to configure the dependency or dependency constraint
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	podLabelSet := labels.Set(updatedPod.Labels)
    	for _, constraint := range s.Constraints {
    		if !constraint.Selector.Matches(podLabelSet) {
    			continue
    		}
    
    		if pl.enableNodeInclusionPolicyInPodTopologySpread &&
    			!constraint.matchNodeInclusionPolicies(preemptorPod, node, requiredSchedulingTerm) {
    			continue
    		}
    
    		k, v := constraint.TopologyKey, node.Labels[constraint.TopologyKey]
    		pair := topologyPair{key: k, value: v}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `group`: The group of the dependency constraint.
    - `module`: The module of the dependency constraint.
    - `version`: optional. The version constraint of the dependency constraint.
    - `reason`: optional. An explanation of why the constraint is used. It can typically be used to explain why a specific version is rejected or from where a platform comes from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/crypto/x509/parser.go

    				}
    
    				// If the constraint contains an @ then
    				// it specifies an exact mailbox name.
    				if strings.Contains(constraint, "@") {
    					if _, ok := parseRFC2821Mailbox(constraint); !ok {
    						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
    					}
    				} else {
    					// Otherwise it's a domain name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top