Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for chains (0.1 sec)

  1. pkg/proxy/nftables/proxier.go

    	// now, and record the time that they become stale in staleChains so they can be
    	// deleted later.
    	existingChains, err := proxier.nftables.List(context.TODO(), "chains")
    	if err == nil {
    		for _, chain := range existingChains {
    			if isServiceChainName(chain) {
    				if !activeChains.Has(chain) {
    					tx.Flush(&knftables.Chain{
    						Name: chain,
    					})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    		}
    		if !fullWildcardFound {
    			chain.sniHosts = append([]string{}, chain.sniHosts...)
    			sort.Stable(sort.StringSlice(chain.sniHosts))
    			match.ServerNames = chain.sniHosts
    		}
    	}
    	if len(chain.destinationCIDRs) > 0 {
    		chain.destinationCIDRs = append([]string{}, chain.destinationCIDRs...)
    		sort.Stable(sort.StringSlice(chain.destinationCIDRs))
    		for _, d := range chain.destinationCIDRs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    )
    
    const (
    	// the services chain
    	kubeServicesChain utiliptables.Chain = "KUBE-SERVICES"
    
    	// the external services chain
    	kubeExternalServicesChain utiliptables.Chain = "KUBE-EXTERNAL-SERVICES"
    
    	// the nodeports chain
    	kubeNodePortsChain utiliptables.Chain = "KUBE-NODEPORTS"
    
    	// the kubernetes postrouting chain
    	kubePostroutingChain utiliptables.Chain = "KUBE-POSTROUTING"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/tool-chains/groovy/build.gradle[tag=buildable]
    ----
    
    
    [[native_binaries:tool_chain]]
    == Tool chains
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    				}
    				var chains []string
    				for _, fc := range listeners[0].FilterChains {
    					for _, cidr := range fc.FilterChainMatch.PrefixRanges {
    						chains = append(chains, cidr.AddressPrefix)
    					}
    				}
    				// There should not be multiple filter chains with same CIDR match
    				if !reflect.DeepEqual(chains, tt.expectedChains) {
    					t.Fatalf("expected filter chains %v, found %v", tt.expectedChains, chains)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	kubePostroutingChain utiliptables.Chain = "KUBE-POSTROUTING"
    
    	// kubeMarkMasqChain is the mark-for-masquerade chain
    	kubeMarkMasqChain utiliptables.Chain = "KUBE-MARK-MASQ"
    
    	// kubeNodePortChain is the kubernetes node port chain
    	kubeNodePortChain utiliptables.Chain = "KUBE-NODE-PORT"
    
    	// kubeForwardChain is the kubernetes forward chain
    	kubeForwardChain utiliptables.Chain = "KUBE-FORWARD"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    			Disabled: simulation.Result{
    				// Should go through the TCP chains
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    				ClusterMatched:     "inbound|81||",
    				StrictMatch:        true,
    			},
    			Permissive: simulation.Result{
    				// Should go through the TCP chains
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    		x509Cert := c.Leaf
    		// Parse the certificate if this isn't the leaf node, or if
    		// chain.Leaf was nil.
    		if j != 0 || x509Cert == nil {
    			var err error
    			if x509Cert, err = x509.ParseCertificate(cert); err != nil {
    				return fmt.Errorf("failed to parse certificate #%d in the chain: %w", j, err)
    			}
    		}
    
    		for _, ca := range cri.AcceptableCAs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top