Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 233 for Constraint (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * Unlike the top-level `dependencies` block, constraints are not in a separate block.
    ** Instead, constraints are added by decorating a dependency with `constraint(...)` like `implementation(constraint("org:foo:1.0"))`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/schedule.go

    			}
    			if score[c.ID] == ScoreReadTuple {
    				score[c.Args[0].ID] = ScoreControl
    				continue
    			}
    			score[c.ID] = ScoreControl
    		}
    	}
    	priq.score = score
    
    	// An edge represents a scheduling constraint that x must appear before y in the schedule.
    	type edge struct {
    		x, y *Value
    	}
    	edges := make([]edge, 0, 64)
    
    	// inEdges is the number of scheduling edges incoming from values that haven't been scheduled yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

                  "Invalid input list: type mismatch the op def expectation");
        } else if (!inputs.empty()) {
          if (arg_def.type_attr().empty())
            return FailedPrecondition(
                "Invalid opdef type constraint: either type or type_attr required");
    
          attrs_[arg_def.type_attr()] =
              TypeAttr::get(cast<MlirTensor>(inputs.front())->getElementType());
        }
      } else if (!arg_def.type_list_attr().empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. pkg/controller/daemon/update.go

    			if err != nil {
    				if errors.IsNotFound(err) {
    					continue
    				}
    				return fmt.Errorf("couldn't get pod which should be deleted due to scheduling constraints %q: %v", podToDeleteName, err)
    			}
    			logger.V(5).Info("DaemonSet pod on node should be deleted due to scheduling constraints", "daemonset", klog.KObj(ds), "pod", klog.KObj(podToDelete), "node", podToDelete.Spec.NodeName)
    			oldPodsToDelete = append(oldPodsToDelete, podToDeleteName)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa.go

    	return r, s, nil
    }
    
    type nistCurve[Point nistPoint[Point]] struct {
    	newPoint func() Point
    	curve    elliptic.Curve
    	N        *bigmod.Modulus
    	nMinus2  []byte
    }
    
    // nistPoint is a generic constraint for the nistec Point types.
    type nistPoint[T any] interface {
    	Bytes() []byte
    	BytesX() ([]byte, error)
    	SetBytes([]byte) (T, error)
    	Add(T, T) T
    	ScalarMult(T, []byte) (T, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/concepts.md

    There can be several approaches to achieve this, and I'll tell you more about specific strategies in the next chapters, for example when talking about Docker and containers.
    
    The main constraint to consider is that there has to be a **single** component handling the **port** in the **public IP**. And then it has to have a way to **transmit** the communication to the replicated **processes/workers**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            then:
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    constraint('org.gradle.test:lib:1.0', 'org.gradle.test:lib:1.0')
                    edge('org.gradle.test:lib', 'org.gradle.test:lib:1.0') {
                        byConstraint()
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	isEphemeral := pvcSource == nil && podVolume.VolumeSource.Ephemeral != nil
    	if isEphemeral {
    		// Generic ephemeral inline volumes are handled the
    		// same way as a PVC reference. The only additional
    		// constraint (checked below) is that the PVC must be
    		// owned by the pod.
    		pvcSource = &v1.PersistentVolumeClaimVolumeSource{
    			ClaimName: ephemeral.VolumeClaimName(pod, &podVolume),
    		}
    	}
    	if pvcSource != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. cmd/auth-handler.go

    		payload, err := io.ReadAll(io.LimitReader(r.Body, maxLocationConstraintSize))
    		if err != nil {
    			authZLogIf(ctx, err, logger.ErrorKind)
    			return ErrMalformedXML
    		}
    
    		// Populate payload to extract location constraint.
    		r.Body = io.NopCloser(bytes.NewReader(payload))
    		region, s3Err = parseLocationConstraint(r)
    		if s3Err != ErrNone {
    			return s3Err
    		}
    
    		// Populate payload again to handle it in HTTP handler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    // runtime, this means all malloc size classes larger than the cutoff must
    // be multiples of four words. On 32-bit systems that's 16 bytes, and
    // all size classes >= 16 bytes are 16-byte aligned, so no real constraint.
    // On 64-bit systems, that's 32 bytes, and 32-byte alignment is guaranteed
    // for size classes >= 256 bytes. On a 64-bit system, 256 bytes allocated
    // is 32 pointers, the bits for which fit in 4 bytes. So MaxPtrmaskBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top