Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 152 for circuit (0.17 sec)

  1. pkg/kube/krt/collection.go

    				}
    
    				if h.log.DebugEnabled() {
    					h.log.WithLabels("res", key, "type", e.Event).Debugf("handled")
    				}
    				events = append(events, e)
    			}
    		}
    	}
    	h.mu.Unlock()
    
    	// Short circuit if we have nothing to do
    	if len(events) == 0 {
    		return
    	}
    	handlers := h.eventHandlers.Get()
    
    	if h.log.DebugEnabled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

            localTask.run();
            // Now check if our task attempted to reentrantly execute the next task.
            Runnable queuedTask;
            Executor queuedExecutor;
            // Intentionally using non-short-circuit operator
            while ((queuedTask = executingTaskQueue.nextTask) != null
                && (queuedExecutor = executingTaskQueue.nextExecutor) != null) {
              executingTaskQueue.nextTask = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            // at this level, otherwise we spam for no reason. We can remove this once the deprecation
            // turns into an error, since the error will short-circuit the child notifications.
            if (emittedDeprecation) {
                DeprecationLogger.whileDisabled(() -> notifyChildren(type));
            } else {
                notifyChildren(type);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    				return fmt.Errorf("unknown command %+s", cmds[0])
    			}
    
    			// short-circuit on help
    			help, err := cleanFlagSet.GetBool("help")
    			if err != nil {
    				return errors.New(`"help" flag is non-bool, programmer error, please correct`)
    			}
    			if help {
    				return cmd.Help()
    			}
    
    			// short-circuit on verflag
    			verflag.PrintAndExitIfRequested()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    		}
    	}
    
    	// ignore items in deltaUsage with zero usage
    	deltaUsage = quota.RemoveZeros(deltaUsage)
    	// if there is no remaining non-zero usage, short-circuit and return
    	if len(deltaUsage) == 0 {
    		return quotas, nil
    	}
    
    	// verify that for every resource that had limited by default consumption
    	// enabled that there was a corresponding quota that covered its use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top