Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for chains (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        client: OkHttpClient,
        chain: RealInterceptorChain,
      ): ExchangeCodec {
        val socket = this.socket!!
        val source = this.source!!
        val sink = this.sink!!
        val http2Connection = this.http2Connection
    
        return if (http2Connection != null) {
          Http2ExchangeCodec(client, this, chain, http2Connection)
        } else {
          socket.soTimeout = chain.readTimeoutMillis()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. security/pkg/pki/util/crypto_test.go

    BB6nORpwdv4LVt/BFgLwWQIdAKvHn7cxBJ+aAC25rIumRNKDzP7PkV0HDbxtX+M=
    -----END CERTIFICATE-----`
    )
    
    var (
    	certChainValid             = loadPEMFile("../testdata/cert-chain.pem")
    	certChainValidTrailingLine = loadPEMFile("../testdata/cert-chain-trailing-line.pem")
    )
    
    func TestParsePemEncodedCertificate(t *testing.T) {
    	testCases := map[string]struct {
    		errMsg        string
    		pem           string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. tests/integration/security/egress_gateway_origination_test.go

    			ingressutil.CreateIngressKubeSecret(t, credNameGeneric, ingressutil.Mtls, ingressutil.IngressCredential{
    				Certificate: file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    				PrivateKey:  file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/key.pem")),
    				CaCert:      file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			}, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    //
    //	Inside, the key/cert are 'ca-key.pem' and 'ca-cert.pem'. The root cert signing the intermediate is root-cert.pem,
    //	which may contain multiple roots. A 'cert-chain.pem' file has the full cert chain.
    func (s *Server) createIstioCA(opts *caOptions) (*ca.IstioCA, error) {
    	var caOpts *ca.IstioCAOptions
    	var detectedSigningCABundle bool
    	var istioGenerated bool
    	var err error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds_test.go

    		credentials.GenericScrtCert: readFile(filepath.Join(certDir, "default/cert-chain.pem")),
    		credentials.GenericScrtKey:  readFile(filepath.Join(certDir, "default/key.pem")),
    	})
    	genericMtlsCert = makeSecret("generic-mtls", map[string]string{
    		credentials.GenericScrtCert:   readFile(filepath.Join(certDir, "dns/cert-chain.pem")),
    		credentials.GenericScrtKey:    readFile(filepath.Join(certDir, "dns/key.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. pkg/security/security.go

    	// i.e. mounted Secret or external plugin.
    	// If present, FileMountedCerts should be true.
    
    	// DefaultCertChainFilePath is the well-known path for an existing certificate chain file
    	DefaultCertChainFilePath = "./etc/certs/cert-chain.pem"
    
    	// DefaultKeyFilePath is the well-known path for an existing key file
    	DefaultKeyFilePath = "./etc/certs/key.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/simulation"
    	"istio.io/istio/pilot/test/xds"
    )
    
    // TestPeerAuthenticationPassthrough tests the PeerAuthentication policy applies correctly on the passthrough filter chain,
    // including both global configuration and port level configuration.
    func TestPeerAuthenticationPassthrough(t *testing.T) {
    	paStrict := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/text/template/exec.go

    }
    
    func (s *state) evalChainNode(dot reflect.Value, chain *parse.ChainNode, args []parse.Node, final reflect.Value) reflect.Value {
    	s.at(chain)
    	if len(chain.Field) == 0 {
    		s.errorf("internal error: no fields in evalChainNode")
    	}
    	if chain.Node.Type() == parse.NodeNil {
    		s.errorf("indirection through explicit nil in %s", chain)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    func (s preparedGenericAPIServer) NonBlockingRunWithContext(ctx context.Context, shutdownTimeout time.Duration) (<-chan struct{}, <-chan struct{}, error) {
    	// Use an internal stop channel to allow cleanup of the listeners on error.
    	internalStopCh := make(chan struct{})
    	var stoppedCh <-chan struct{}
    	var listenerStoppedCh <-chan struct{}
    	if s.SecureServingInfo != nil && s.Handler != nil {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    		checkSign(t, cli, false)
    		checkSign(t, cli, false)
    		server.Authenticator.Set("", "istiod.istio-system.svc")
    		checkSign(t, cli, true)
    		if err := file.Copy(filepath.Join(certDir, "cert-chain.pem"), dir, "cert-chain.pem"); err != nil {
    			t.Fatal(err)
    		}
    		if err := file.Copy(filepath.Join(certDir, "key.pem"), dir, "key.pem"); err != nil {
    			t.Fatal(err)
    		}
    		checkSign(t, cli, false)
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top