Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 2,184 for chain (0.05 sec)

  1. pilot/pkg/networking/grpcgen/testdata/xds_bootstrap.json

        "UserAgentVersionType": "istiov1"
      },
      "certificate_providers": {
        "default": {
          "plugin_name": "file_watcher",
          "config": {
            "certificate_file": "../../../../tests/testdata/certs/default/cert-chain.pem",
            "private_key_file": "../../../../tests/testdata/certs/default/key.pem",
            "ca_certificate_file": "../../../../tests/testdata/certs/default/root-cert.pem",
            "refresh_interval": "900s"
          }
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 08 18:48:42 UTC 2022
    - 961 bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpBuildCacheServer.groovy

                void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
                    for (responder in responders) {
                        if (!responder.respond(request as HttpServletRequest, response as HttpServletResponse)) {
                            return
                        }
                    }
                    chain.doFilter(request, response)
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/OkHttpClientTest.kt

        } catch (ignored: IllegalArgumentException) {
        }
      }
    
      @Test fun clonedInterceptorsListsAreIndependent() {
        val interceptor =
          Interceptor { chain: Interceptor.Chain ->
            chain.proceed(chain.request())
          }
        val original = clientTestRule.newClient()
        original.newBuilder()
          .addInterceptor(interceptor)
          .addNetworkInterceptor(interceptor)
          .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/util/util.go

    		certFileMode = os.FileMode(0o644)
    	}
    	// Depending on the SDS resource to output, some fields may be nil
    	if privateKey == nil && certChain == nil && rootCert == nil {
    		return fmt.Errorf("the input private key, cert chain, and root cert are nil")
    	}
    
    	writeIfNotEqual := func(fileName string, newData []byte) error {
    		if newData == nil {
    			return nil
    		}
    		oldData, _ := os.ReadFile(path.Join(dir, fileName))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 10:33:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/main/resources/app.xml

    	</component>
    	<component name="authenticationManager" class="org.codelibs.fess.auth.AuthenticationManager">
    		<!--
    		<postConstruct name="addChain">
    			<arg>
    				<component class="org.codelibs.fess.auth.chain.CommandChain">
    					<property name="updateCommand">[
    					"/usr/sbin/htpasswd",
    					"-b",
    					"/tmp/test.txt",
    					"$USERNAME",
    					"$PASSWORD"
    					]</property>
    					<property name="deleteCommand">[
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. pkg/istio-agent/testdata/grpc-bootstrap.json

        },
        "locality": {},
        "UserAgentVersionType": null
      },
      "certificate_providers": {
        "default": {
          "plugin_name": "file_watcher",
          "config": {
            "certificate_file": "/cert/path/cert-chain.pem",
            "private_key_file": "/cert/path/key.pem",
            "ca_certificate_file": "/cert/path/root-cert.pem",
            "refresh_interval": "900s"
          }
        }
      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    link:https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-supply-chain-security[GitHub supply chain security] features will detect and alert about any dependencies that have known vulnerabilities.
    In order to do this, GitHub requires a complete dependency graph for your project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/field/fe_amd64.s

    	// r4 += a3×b1
    	MOVQ 24(CX), AX
    	MULQ 8(BX)
    	ADDQ AX, R15
    	ADCQ DX, R14
    
    	// r4 += a4×b0
    	MOVQ 32(CX), AX
    	MULQ (BX)
    	ADDQ AX, R15
    	ADCQ DX, R14
    
    	// First reduction chain
    	MOVQ   $0x0007ffffffffffff, AX
    	SHLQ   $0x0d, DI, SI
    	SHLQ   $0x0d, R9, R8
    	SHLQ   $0x0d, R11, R10
    	SHLQ   $0x0d, R13, R12
    	SHLQ   $0x0d, R15, R14
    	ANDQ   AX, DI
    	IMUL3Q $0x13, R14, R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java

    import org.eclipse.aether.repository.WorkspaceReader;
    import org.eclipse.aether.repository.WorkspaceRepository;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A maven workspace reader that delegates to a chain of other readers, effectively aggregating their contents.
     * <p>
     * This class, while technically is not immutable, should be considered as such once set up. If not mutated, it is also
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/plugin/authn/authentication.go

    	}
    
    	// Then generate the per-port passthrough filter chains.
    	for port := range b.applier.PortLevelSetting() {
    		// Skip the per-port passthrough filterchain if the port is already handled by InboundMTLSConfiguration().
    		if !needPerPortPassthroughFilterChain(port, b.proxy) {
    			continue
    		}
    
    		authnLog.Debugf("InboundMTLSConfiguration: build extra pass through filter chain for %v:%d", b.proxy.ID, port)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top