Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 232 for chains (0.17 sec)

  1. cni/README.md

    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
        - `install-cni` daemonset - main function is to install and help the node CNI, but it is also a proper server and interacts with K8S, watching Pods for recovery.
        - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pilot/pkg/credentials/kube/secrets.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    )
    
    const (
    	// The ID/name for the certificate chain in kubernetes generic secret.
    	GenericScrtCert = "cert"
    	// The ID/name for the private key in kubernetes generic secret.
    	GenericScrtKey = "key"
    	// The ID/name for the CA certificate in kubernetes generic secret.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	DefaultPilotTLSCaCert              = PilotWellKnownDNSCaCertPath + "root-cert.pem"
    	DefaultPilotTLSCaCertAlternatePath = PilotWellKnownDNSCertPath + "ca.crt"
    
    	// CertChainFilename is mTLS chain file
    	CertChainFilename = "cert-chain.pem"
    	// KeyFilename is mTLS private key
    	KeyFilename = "key.pem"
    	// RootCertFilename is mTLS root cert
    	RootCertFilename = "root-cert.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tests/integration/security/pass_through_filter_chain_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    // TestPassThroughFilterChain tests the authN and authZ policy on the pass through filter chain.
    func TestPassThroughFilterChain(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			type expect struct {
    				port echo.Port
    				// Plaintext will be sent from Naked pods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		if lp.Operation == networking.EnvoyFilter_Patch_REMOVE {
    			fc.Filters = nil
    			*filterChainRemoved = true
    			// nothing more to do in other patches as we removed this filter chain
    			return
    		} else if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			merged, err := mergeTransportSocketListener(fc, lp)
    			if err != nil {
    				log.Debugf("merge of transport socket failed for listener: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

            if (getContext().isInScope(owner)) {
                return fallbackValue;
            }
            // It is possible that the downstream chain itself forms a cycle.
            // However, it should be its responsibility to be defined in terms of safe evaluation rather than us intercepting the failure here.
            return evaluate(owner, evaluation);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/text/template/parse/parse_test.go

    		`{{if .X}}"true"{{else}}{{if .Y}}"false"{{end}}{{end}}`},
    	{"if else chain", "+{{if .X}}X{{else if .Y}}Y{{else if .Z}}Z{{end}}+", noError,
    		`"+"{{if .X}}"X"{{else}}{{if .Y}}"Y"{{else}}{{if .Z}}"Z"{{end}}{{end}}{{end}}"+"`},
    	{"simple range", "{{range .X}}hello{{end}}", noError,
    		`{{range .X}}"hello"{{end}}`},
    	{"chained field range", "{{range .X.Y.Z}}hello{{end}}", noError,
    		`{{range .X.Y.Z}}"hello"{{end}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		ae := audit.AuditEventFrom(r.Context())
    		if ae == nil {
    			t.Error("unexpected nil audit event")
    		}
    
    		// confirm that the indirect way of setting audit annotations later in the chain also works
    		audit.AddAuditAnnotation(r.Context(), "dogs", "are okay")
    
    		if _, err := w.Write([]byte("done")); err != nil {
    			t.Errorf("failed to write response: %v", err)
    		}
    	}), c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		return nil, nil, errCorrupt // more likely our math is wrong
    	}
    
    	// Link record into hash chain, making sure not to introduce a duplicate.
    	// We know name does not appear in the chain starting at head.
    	for {
    		next.Store(head)
    		if m.cas32(headOff, head, start) {
    			return v, nil, nil
    		}
    
    		// Check new elements in chain for duplicates.
    		old := head
    		head = m.load32(headOff)
    		for off := head; off != old; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

        def "adds model extensions"() {
            expect:
            toolChains != null
            platforms != null
            buildTypes != null
            flavors != null
        }
    
        def "does not provide a default tool chain"() {
            expect:
            realizeModelElement("toolChains", NativeToolChainRegistry).isEmpty()
        }
    
        def "adds default flavor to every binary"() {
            when:
            project.model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top