Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for circuit (0.11 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

       * Returns an immutable list of interceptors that observe a single network request and response.
       * These interceptors must call [Interceptor.Chain.proceed] exactly once: it is an error for
       * a network interceptor to short-circuit or repeat a network request.
       */
      @get:JvmName("networkInterceptors")
      val networkInterceptors: List<Interceptor> =
        builder.networkInterceptors.toImmutableList()
    
      @get:JvmName("eventListenerFactory")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller.go

    				for k, v := range oldResources {
    					if _, failed := groupLookupFailures[k.GroupVersion()]; failed {
    						newResources[k] = v
    					}
    				}
    			} else {
    				// short circuit in non-discovery error cases or if discovery returned zero resources
    				return
    			}
    		}
    
    		logger := klog.FromContext(ctx)
    
    		// Decide whether discovery has reported a change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80 fib saddr type local jump mark-for-masquerade comment "masquerade local traffic"
    		add rule ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80 fib saddr type local goto service-42NFTM6N-ns2/svc2/tcp/p80 comment "short-circuit local traffic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/compile.go

    	{name: "early phielim and copyelim", fn: copyelim},
    	{name: "early deadcode", fn: deadcode}, // remove generated dead code to avoid doing pointless work during opt
    	{name: "short circuit", fn: shortcircuit},
    	{name: "decompose user", fn: decomposeUser, required: true},
    	{name: "pre-opt deadcode", fn: deadcode},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top