Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 579 for chains (0.19 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    	// Create a new chain for redirecting outbound traffic to the common Envoy port.
    	// In both chains, '-j RETURN' bypasses Envoy and '-j ISTIOREDIRECT'
    	// redirects to Envoy.
    	cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand,
    		constants.ISTIOREDIRECT, constants.NAT, "-p", constants.TCP, "-j", constants.REDIRECT, "--to-ports", cfg.cfg.ProxyPort)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. src/go/types/named.go

    // heading.
    
    // under returns the expanded underlying type of n0; possibly by following
    // forward chains of named types. If an underlying type is found, resolve
    // the chain by setting the underlying type for each defined type in the
    // chain before returning it. If no underlying type is found or a cycle
    // is detected, the result is Typ[Invalid]. If a cycle is detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/crypto/x509/name_constraints_test.go

    					ok: []string{"dns:.foo.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.example.com"},
    		},
    		noOpenSSL: true, // OpenSSL's chain building is not informed by constraints.
    	},
    
    	// #24: when multiple roots are valid, chain building can avoid roots
    	// with incompatible constraints.
    	{
    		roots: []constraintsSpec{
    			{},
    			{
    				ok: []string{"dns:foo.com"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				// location so we give the some hint as to where the
    				// inlining happened that led to this instruction. So for
    				// example, suppose we have the following (inlined) call
    				// chains for this instruction:
    				//   F1->G->H
    				//   F2->G->H
    				// We could tag the instructions from the first call with
    				// F1 and instructions from the second call with F2. But
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// BuildHandlerChainFunc allows you to build custom handler chains by decorating the apiHandler.
    	BuildHandlerChainFunc func(apiHandler http.Handler, c *Config) (secure http.Handler)
    	// NonLongRunningRequestWaitGroup allows you to wait for all chain
    	// handlers associated with non long-running requests
    	// to complete while the server is shuting down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    In Gradle 3.4 and above, ABI-compatible changes no longer trigger recompiles of downstream projects.
    This especially improves build times in large multi-project builds with deep dependency chains.
    
    Upgrade to a Gradle version above 3.4 to benefit from compile avoidance.
    
    NOTE: If you use annotation processors, you need to explicitly declare them in order for compilation avoidance to work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"central_african_republic":             "\U0001f1e8\U0001f1eb",
    	"ceuta_melilla":                        "\U0001f1ea\U0001f1e6",
    	"chad":                                 "\U0001f1f9\U0001f1e9",
    	"chains":                               "\u26d3\ufe0f",
    	"chair":                                "\U0001fa91",
    	"champagne":                            "\U0001f37e",
    	"chart":                                "\U0001f4b9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/InterceptorTest.kt

        val interceptor1 =
          Interceptor { chainA: Interceptor.Chain ->
            assertThat(chainA.connectTimeoutMillis()).isEqualTo(5000)
            val chainB = chainA.withConnectTimeout(100, TimeUnit.MILLISECONDS)
            assertThat(chainB.connectTimeoutMillis()).isEqualTo(100)
            chainB.proceed(chainA.request())
          }
        val interceptor2 =
          Interceptor { chain: Interceptor.Chain ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.MakeIPTablesUtilChains, "make-iptables-util-chains", c.MakeIPTablesUtilChains, "If true, kubelet will ensure iptables utility rules are present on host.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc.go

    				if p.chunkHugePages {
    					sysHugePage(r, l2Size)
    				} else {
    					sysNoHugePage(r, l2Size)
    				}
    			}
    			// Store the new chunk block but avoid a write barrier.
    			// grow is used in call chains that disallow write barriers.
    			*(*uintptr)(unsafe.Pointer(&p.chunks[c.l1()])) = uintptr(r)
    		}
    		p.chunkOf(c).scavenged.setRange(0, pallocChunkPages)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top