Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 233 for Constraint (0.35 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         */
        Dependency localGroovy();
    
        /**
         * Returns the dependency constraint handler for this project.
         *
         * @return the dependency constraint handler for this project
         * @since 4.5
         */
        DependencyConstraintHandler getConstraints();
    
        /**
         * Configures dependency constraint for this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/lookup.go

    	// If we didn't find anything and if we have a type parameter with a core type,
    	// see if there is a matching field (but not a method, those need to be declared
    	// explicitly in the constraint). If the constraint is a named pointer type (see
    	// above), we are ok here because only fields are accepted as results.
    	const enableTParamFieldLookup = false // see go.dev/issue/51576
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/go/types/lookup.go

    	// If we didn't find anything and if we have a type parameter with a core type,
    	// see if there is a matching field (but not a method, those need to be declared
    	// explicitly in the constraint). If the constraint is a named pointer type (see
    	// above), we are ok here because only fields are accepted as results.
    	const enableTParamFieldLookup = false // see go.dev/issue/51576
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *     </p>
     *     <p>In general, a provider that returns the value in any state will fail when it is queried before the value is known. This constraint isn't 100% implemented everywhere yet.</p>
     *     </li>
     *     <li>"usable". This is currently somewhat vague, but basically means that if the content is built by some work node, then that work node has already executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

     *
     * The before/after evaluate operations are fired regardless whether anyone is actually listening.
     * This may change in future versions.
     *
     * The use of term “evaluate” is a legacy constraint.
     * Project evaluation is synonymous with “project configuration” (the latter being the preferred term).
     *
     * @see ProjectEvaluationListener
     */
    public class LifecycleProjectEvaluator implements ProjectEvaluator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/doc/pkg.go

    			// Or a type embedded in a constraint.
    			// Nothing else is allowed.
    			ty := field.Type
    			if se, ok := field.Type.(*ast.StarExpr); !isInterface && ok {
    				// The form *ident or *pkg.ident is only valid on
    				// embedded types in structs.
    				ty = se.X
    			}
    			constraint := false
    			switch ident := ty.(type) {
    			case *ast.Ident:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      assert(new_inputs.size() == num_replicas);
    
      // As model parallelism is not yet supported, we assume that all ops are
      // placed in logical core 0.
      // TODO(b/148913020): Remove this constraint once model parallelism is
      // supported.
      assert(devices.find(tensorflow::GetDeviceAliasForLogicalCore(0))
                 ->getSecond()
                 .size() == num_replicas);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	opResults    = 'R' // .Results()	      (Signature)
    	opUnderlying = 'U' // .Underlying()	    (Named)
    	opTypeParam  = 'T' // .TypeParams.At(i) (Named, Signature)
    	opConstraint = 'C' // .Constraint()     (TypeParam)
    
    	// type->object operators
    	opAt     = 'A' // .At(i)		 (Tuple)
    	opField  = 'F' // .Field(i)	 (Struct)
    	opMethod = 'M' // .Method(i) (Named or Interface; not Struct: "promoted" names are ignored)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers_test.go

    	tests := []struct {
    		name               string
    		nodeFn             func() *v1.Node
    		existingPods, pods []*v1.Pod
    		want               []bool
    	}{
    		{
    			name: "regular node, pods with a single constraint",
    			nodeFn: func() *v1.Node {
    				return st.MakeNode().Name("fake-node").Label("hostname", "fake-node").Capacity(cpu8).Obj()
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("p").HostPort(80).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    		}
    	} else {
    		constraints, err = pl.buildDefaultConstraints(pod, v1.DoNotSchedule)
    		if err != nil {
    			return nil, fmt.Errorf("setting default hard topology spread constraints: %w", err)
    		}
    	}
    	return constraints, nil
    }
    
    func (pl *PodTopologySpread) isSchedulableAfterNodeChange(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top