Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 353 for chains (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    }
    
    // SourceIPs splits the comma separated X-Forwarded-For header and joins it with
    // the X-Real-Ip header and/or req.RemoteAddr, ignoring invalid IPs.
    // The X-Real-Ip is omitted if it's already present in the X-Forwarded-For chain.
    // The req.RemoteAddr is always the last IP in the returned list.
    // It returns nil if all of these are empty or invalid.
    func SourceIPs(req *http.Request) []net.IP {
    	var srcIPs []net.IP
    
    	hdr := req.Header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. android/guava/src/com/google/common/net/HostAndPort.java

          }
          return new String[] {host, hostPortString.substring(closeBracketIndex + 2)};
        }
      }
    
      /**
       * Provide a default port if the parsed string contained only a host.
       *
       * <p>You can chain this after {@link #fromString(String)} to include a port in case the port was
       * omitted from the input string. If a port was already provided, then this method is a no-op.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top