Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 312 for chains (0.1 sec)

  1. cmd/kube-proxy/app/server_test.go

    func Test_getNodeIPs(t *testing.T) {
    	var chans [3]chan error
    
    	client := clientsetfake.NewSimpleClientset(
    		// node1 initially has no IP address.
    		makeNodeWithAddress("node1", ""),
    
    		// node2 initially has an invalid IP address.
    		makeNodeWithAddress("node2", "invalid-ip"),
    
    		// node3 initially does not exist.
    	)
    
    	for i := range chans {
    		chans[i] = make(chan error)
    		ch := chans[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            assumeTrue(toolChain.version.major == swiftVersion.version)
        }
    
        // TODO: Use @RequiresInstalledToolChain instead once Xcode test are sorted out
        void assumeSwiftCompilerSupportsLanguageVersion(SwiftVersion swiftVersion) {
            assert toolChain != null, "You need to specify Swift tool chain requirement with 'requireSwiftToolChain()'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		if expr.Init == enclosingStmt || expr.Post == enclosingStmt {
    			return expr
    		}
    	}
    	return enclosingStmt.(ast.Stmt)
    }
    
    // baseIfStmt walks up the if/else-if chain until we get to
    // the top of the current if chain.
    func baseIfStmt(path []ast.Node, index int) ast.Stmt {
    	stmt := path[index]
    	for i := index + 1; i < len(path); i++ {
    		if node, ok := path[i].(*ast.IfStmt); ok && node.Else == stmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/internal/concurrent/hashtriemap.go

    			return e.value, true
    		}
    		e = e.overflow.Load()
    	}
    	return *new(V), false
    }
    
    // compareAndDelete deletes an entry in the overflow chain if both the key and value compare
    // equal. Returns the new entry chain and whether or not anything was deleted.
    //
    // compareAndDelete must be called under the mutex of the indirect node which e is a child of.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    	return ret
    }
    
    // Called by sigtramp from Windows VEH handler.
    // Return value signals whether the exception has been handled (EXCEPTION_CONTINUE_EXECUTION)
    // or should be made available to other handlers in the chain (EXCEPTION_CONTINUE_SEARCH).
    //
    // This is nosplit to avoid growing the stack until we've checked for
    // _EXCEPTION_BREAKPOINT, which is raised by abort() if we overflow the g0 stack.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            when:
            transformer.transform('<root/>', writer)
    
            then:
            looksLike '<root>\n  <child1/>\n</root>\n', writer.toString()
        }
    
        def "can chain actions"() {
            Action<XmlProvider> stringAction = Mock()
            Action<XmlProvider> nodeAction = Mock()
            Action<XmlProvider> elementAction = Mock()
            Action<XmlProvider> stringAction2 = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top