Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for circuit (0.14 sec)

  1. src/cmd/go/internal/modindex/build.go

    	l := strings.Split(name, "_")
    	if n := len(l); n > 0 && l[n-1] == "test" {
    		l = l[:n-1]
    	}
    	n := len(l)
    	if n >= 2 && knownOS[l[n-2]] && knownArch[l[n-1]] {
    		if allTags != nil {
    			// In case we short-circuit on l[n-1].
    			allTags[l[n-2]] = true
    		}
    		return ctxt.matchTag(l[n-1], allTags) && ctxt.matchTag(l[n-2], allTags)
    	}
    	if n >= 1 && (knownOS[l[n-1]] || knownArch[l[n-1]]) {
    		return ctxt.matchTag(l[n-1], allTags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. src/go/types/named.go

    // their expansion. Via the pidgeonhole principle, this guarantees that in the
    // presence of a cycle of named types, expansion will eventually find an
    // existing instance in the Context and short-circuit the expansion.
    //
    // Once an instance is complete, we can nil out this shared Context to unpin
    // memory, though this Context may still be held by other incomplete instances
    // in its "lineage".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control.go

    		return &status, err
    	}
    
    	updateStatus(&status, set.Spec.MinReadySeconds, currentRevision, updateRevision, replicas, condemned)
    
    	// for the OnDelete strategy we short circuit. Pods will be updated when they are manually deleted.
    	if set.Spec.UpdateStrategy.Type == apps.OnDeleteStatefulSetStrategyType {
    		return &status, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    	}
    	if len(tags.List) == 0 {
    		return false, nil
    	}
    
    	// NOTE: r.stat is very careful not to fetch commits that we shouldn't know
    	// about, like rejected GitHub pull requests, so don't try to short-circuit
    	// that here.
    	if _, err = r.stat(ctx, rev); err != nil {
    		return false, err
    	}
    
    	// Now fetch history so that git can search for a path.
    	unlock, err := r.mu.Lock()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    	}
    
    	// Did not match any inclusion filters, exclude from compression.
    	return true
    }
    
    // Utility which returns if a string is present in the list.
    // Comparison is case insensitive. Explicit short-circuit if
    // the list contains the wildcard "*".
    func hasStringSuffixInSlice(str string, list []string) bool {
    	str = strings.ToLower(str)
    	for _, v := range list {
    		if v == "*" {
    			return true
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pkg/controller/controller_utils.go

    // any API calls.
    func RemoveTaintOffNode(ctx context.Context, c clientset.Interface, nodeName string, node *v1.Node, taints ...*v1.Taint) error {
    	if len(taints) == 0 {
    		return nil
    	}
    	// Short circuit for limiting amount of API calls.
    	if node != nil {
    		match := false
    		for _, taint := range taints {
    			if taintutils.TaintExists(node.Spec.Taints, taint) {
    				match = true
    				break
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    		rhs := o.expr(n.Y, nil)
    		o.out = append(o.out, typecheck.Stmt(ir.NewAssignStmt(base.Pos, r, rhs)))
    		o.popTemp(t)
    		gen := o.out
    		o.out = saveout
    
    		// If left-hand side doesn't cause a short-circuit, issue right-hand side.
    		nif := ir.NewIfStmt(base.Pos, r, nil, nil)
    		if n.Op() == ir.OANDAND {
    			nif.Body = gen
    		} else {
    			nif.Else = gen
    		}
    		o.out = append(o.out, nif)
    		return r
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. pkg/api/v1/pod/util.go

    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    // false if visiting was short-circuited.
    func VisitContainers(podSpec *v1.PodSpec, mask ContainerType, visitor ContainerVisitor) bool {
    	if mask&InitContainers != 0 {
    		for i := range podSpec.InitContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Predicates.java

      }
    
      /**
       * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
       * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
       * as soon as a false predicate is found. It defensively copies the iterable passed in, so future
       * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Predicates.java

      }
    
      /**
       * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
       * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
       * as soon as a false predicate is found. It defensively copies the iterable passed in, so future
       * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top