Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for circuit (0.11 sec)

  1. pkg/proxy/nftables/proxier.go

    		// true if there are endpoints that will be reached by external traffic.
    		// (But we may still have to generate externalTrafficChain even if there
    		// are no external endpoints, to ensure that the short-circuit rules for
    		// local traffic are set up.)
    		externalPolicyChain := clusterPolicyChain
    		hasExternalEndpoints := hasEndpoints
    		if svcInfo.ExternalPolicyLocal() {
    			externalPolicyChain = localPolicyChain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	routeHost := host.Name(rawRouteHost)
    	ourListener := host.Name(r.Hostname)
    	if len(ourListener) > 0 && !ourListener.IsWildCarded() {
    		// Short circuit: this logic only applies to wildcards
    		// Not required for correctness, just an optimization
    		return true
    	}
    	if len(ourListener) > 0 && !routeHost.Matches(ourListener) {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

        @CanIgnoreReturnValue
        private int collectTypes(K type, Map<? super K, Integer> map) {
          Integer existing = map.get(type);
          if (existing != null) {
            // short circuit: if set contains type it already contains its supertypes
            return existing;
          }
          // Interfaces should be listed before Object.
          int aboveMe = getRawType(type).isInterface() ? 1 : 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeToken.java

        @CanIgnoreReturnValue
        private int collectTypes(K type, Map<? super K, Integer> map) {
          Integer existing = map.get(type);
          if (existing != null) {
            // short circuit: if set contains type it already contains its supertypes
            return existing;
          }
          // Interfaces should be listed before Object.
          int aboveMe = getRawType(type).isInterface() ? 1 : 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
            currentClass.setUsingGenerics(true);
            boolean resolved = true;
            for (GenericsType type : types) {
                // attempt resolution on all types, so don't short-circuit and stop if we've previously failed
                resolved = resolveGenericsType(type) && resolved;
            }
            return resolved;
        }
    
        private void resolveGenericsHeader(GenericsType[] types) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    		// true if there are endpoints that will be reached by external traffic.
    		// (But we may still have to generate externalTrafficChain even if there
    		// are no external endpoints, to ensure that the short-circuit rules for
    		// local traffic are set up.)
    		externalPolicyChain := clusterPolicyChain
    		hasExternalEndpoints := hasEndpoints
    		if svcInfo.ExternalPolicyLocal() {
    			externalPolicyChain = localPolicyChain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top