Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 141 for circuit (0.23 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    }
    
    // find finds obj within type T, returning the path to it, or nil if not found.
    //
    // The seen map is used to short circuit cycles through type parameters. If
    // nil, it will be allocated as necessary.
    func find(obj types.Object, T types.Type, path []byte, seen map[*types.TypeName]bool) []byte {
    	switch T := T.(type) {
    	case *aliases.Alias:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    		serviceAccounts: nil,
    		serviceTargets:  cb.serviceTargets,
    		istioMtlsSni:    "",
    		clusterMode:     DefaultClusterMode,
    		direction:       model.TrafficDirectionInbound,
    	}
    	// When users specify circuit breakers, they need to be set on the receiver end
    	// (server side) as well as client side, so that the server has enough capacity
    	// (not the defaults) to handle the increased traffic volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. src/runtime/pprof/proto.go

    	// the stack and we have return PCs anyway.
    	frames := runtime.CallersFrames([]uintptr{addr})
    	frame, more := frames.Next()
    	if frame.Function == "runtime.goexit" {
    		// Short-circuit if we see runtime.goexit so the loop
    		// below doesn't allocate a useless empty location.
    		return nil, 0
    	}
    
    	symbolizeResult := lookupTried
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/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
    - 23.9K bytes
    - Viewed (0)
  5. pkg/dns/client/dns.go

    // We will resolve www.google.com.ns1.svc.cluster.local with a CNAME record pointing to www.google.com.
    // which will cause the client's resolver to automatically resolve www.google.com. , and short circuit the lengthy
    // search process down to just two DNS queries. This will eliminate unnecessary upstream DNS queries from the
    // agent, reduce load on DNS servers and improve overall latency. This idea was borrowed and adapted from
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/text/template/exec_test.go

    	{"or", "{{or 0 0}} {{or 1 0}} {{or 0 true}} {{or 1 1}}", "0 1 true 1", nil, true},
    	{"or short-circuit", "{{or 0 1 (die)}}", "1", nil, true},
    	{"and short-circuit", "{{and 1 0 (die)}}", "0", nil, true},
    	{"or short-circuit2", "{{or 0 0 (die)}}", "", nil, false},
    	{"and short-circuit2", "{{and 1 1 (die)}}", "", nil, false},
    	{"and pipe-true", "{{1 | and 1}}", "1", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top