Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for MUTUAL (0.11 sec)

  1. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

    ainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSettings":{"caCertificates":"/etc/istio/ms/ca.pem","clientCertificate":"/etc/istio/ms/client.pem","mode":"MUTUAL","privateKey":"/etc/istio/ms/key.pem"}},"proxyAdminPort":15005,"serviceCluster":"istio-proxy","statNameLength":200,"statsdUdpAddress":"10.1.1.1:9125","statusPort":15020,"tracing":{"zipkin":{"address":"localhost:6000"}}},"sidecar.istio.io/statsCompression":"gzip"}...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/all_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/authentication.go

    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/kind"
    )
    
    // MutualTLSMode is the mutual TLS mode specified by authentication policy.
    type MutualTLSMode int
    
    const (
    	// MTLSUnknown is used to indicate the variable hasn't been initialized correctly (with the authentication policy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/sync/rwmutex.go

    import (
    	"internal/race"
    	"sync/atomic"
    	"unsafe"
    )
    
    // There is a modified copy of this file in runtime/rwmutex.go.
    // If you make any changes here, see if you should make them there.
    
    // A RWMutex is a reader/writer mutual exclusion lock.
    // The lock can be held by an arbitrary number of readers or a single writer.
    // The zero value for a RWMutex is an unlocked mutex.
    //
    // A RWMutex must not be copied after first use.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options.go

    		"That CA is published in the 'extension-apiserver-authentication' configmap in "+
    		"the kube-system namespace. Components receiving calls from kube-aggregator should "+
    		"use that CA to perform their half of the mutual TLS verification.")
    	fs.StringVar(&s.ProxyClientKeyFile, "proxy-client-key-file", s.ProxyClientKeyFile, ""+
    		"Private key for the client certificate used to prove the identity of the aggregator or kube-apiserver "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

        }
    
        override fun isUsedAsExpression(expression: KtExpression): Boolean =
            isUsed(expression)
    
        /**
         * [isUsed] and [doesParentUseChild] are defined in mutual recursion,
         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
         * Whether an expression is used is defined by the context in which it
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    					expectCrossNetwork: never,
    					// Only the request to legacy one succeeds as we disable mtls explicitly.
    					expectSuccess: toMigrationNonIstioSubset,
    				},
    				{
    					name: "migration tls mutual",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    						config.File("testdata/reachability/migration.yaml.tmpl"),
    					}.WithParams(param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    // example of what can happen when loads are allowed to be reordered with older
    // stores (avoiding such reorderings lies at the heart of the classic
    // Peterson/Dekker algorithms for mutual exclusion). Rather than require memory
    // barriers, which will slow down both the mutator and the GC, we always grey
    // the ptr object regardless of the slot's color.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	}
    	c := *config
    
    	serverCertFile, serverKeyFile := s.ServerCert.CertKey.CertFile, s.ServerCert.CertKey.KeyFile
    	// load main cert *original description until 2023-08-18*
    
    	/*
    		kubernetes mutual (2-way) x509 between client and apiserver:
    
    			>1. apiserver sending its apiserver certificate along with its publickey to client
    			2. client verifies the apiserver certificate sent against its cluster certificate authority data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top