Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,184 for chain (0.04 sec)

  1. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	for _, chain := range chains {
    		ext.RunQuietlyAndIgnore(constants.IPTables, iptV, nil, "-t", table, "-F", chain)
    		ext.RunQuietlyAndIgnore(constants.IPTables, iptV, nil, "-t", table, "-X", chain)
    	}
    }
    
    func DeleteRule(ext dep.Dependencies, iptV *dep.IptablesVersion, table string, chain string, rulespec ...string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt

      override fun intercept(chain: Interceptor.Chain): Response {
        return if (chain.request().header("Accept-Encoding") == null) {
          val request =
            chain.request().newBuilder()
              .header("Accept-Encoding", "br,gzip")
              .build()
    
          val response = chain.proceed(request)
    
          uncompress(response)
        } else {
          chain.proceed(chain.request())
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. docs/features/interceptors.md

    class LoggingInterceptor implements Interceptor {
      @Override public Response intercept(Interceptor.Chain chain) throws IOException {
        Request request = chain.request();
    
        long t1 = System.nanoTime();
        logger.info(String.format("Sending request %s on %s%n%s",
            request.url(), chain.connection(), request.headers()));
    
        Response response = chain.proceed(request);
    
        long t2 = System.nanoTime();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/union/union.go

    // unionAuthTokenHandler authenticates tokens using a chain of authenticator.Token objects
    type unionAuthTokenHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Token
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a token authenticator that validates credentials using a chain of authenticator.Token objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/ir/fallback_opt.mlir

    // CHECK-LABEL: func @createop
    func.func @createop(%in_ch: !tfrt.chain) -> !tfrt.chain {
    
      // CHECK: [[ch:%.*]] = tfrt_fallback_async.createop(%{{.*}}) key(100) device("cpu") "tf.AddV2"() {T = i32} num_args(2)
      %out_ch = tfrt_fallback_async.createop(%in_ch) key(100) device("cpu") "tf.AddV2"() {T = i32} num_args(2)
    
      // CHECK: tfrt.return [[ch]]
      tfrt.return %out_ch: !tfrt.chain
    }
    
    // CHECK-LABEL: func @fallback_resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_network_linux.go

    	utilexec "k8s.io/utils/exec"
    )
    
    const (
    	// KubeIPTablesHintChain is the chain whose existence in either iptables-legacy
    	// or iptables-nft indicates which version of iptables the system is using
    	KubeIPTablesHintChain utiliptables.Chain = "KUBE-IPTABLES-HINT"
    
    	// KubeFirewallChain is kubernetes firewall rules
    	KubeFirewallChain utiliptables.Chain = "KUBE-FIREWALL"
    )
    
    func (kl *Kubelet) initNetworkUtil() {
    	exec := utilexec.New()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/builder/testdata/insert-multi-restore.golden

    * table
    -N chain
    -I chain 1 -f foo -b bar
    -I chain 2 -f foo -b baaz
    -I chain 3 -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 99 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/chain_test.go

    	tests := []struct {
    		name      string
    		ns        string
    		operation Operation
    		options   runtime.Object
    		chain     chainAdmissionHandler
    		accept    bool
    		calls     map[string]bool
    	}{
    		{
    			name:      "all accept",
    			ns:        sysns,
    			operation: Create,
    			options:   &metav1.CreateOptions{},
    			chain: []Interface{
    				makeHandler("a", true, Update, Delete, Create),
    				makeHandler("b", true, Delete, Create),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    // unionAuthRequestHandler authenticates requests using a chain of authenticator.Requests
    type unionAuthRequestHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Request
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a request authenticator that validates credentials using a chain of authenticator.Request objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top