Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for PERMISSIVE (0.18 sec)

  1. tests/integration/pilot/common/routing.go

    		{"auto-tcp-server", "DISABLE", "DISABLE", check.Error()},
    		{"auto-tcp-server", "DISABLE", "PERMISSIVE", check.Error()},
    		{"auto-tcp-server", "DISABLE", "STRICT", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "DISABLE", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "PERMISSIVE", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "STRICT", check.Error()},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    	options
    }
    
    func apply(o *options, opts []Option) {
    	for _, f := range opts {
    		f(o)
    	}
    }
    
    // New creates a new Profile.
    //
    // With no options, the returned Profile is the most permissive and equals the
    // Punycode Profile. Options can be passed to further restrict the Profile. The
    // MapForLookup and ValidateForRegistration options set a collection of options,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/mesh_network_test.go

    	}
    	var trafficConfigs []trafficConfig
    	for _, c := range []struct {
    		name string
    		mode v1beta1.PeerAuthentication_MutualTLS_Mode
    	}{
    		{"strict", v1beta1.PeerAuthentication_MutualTLS_STRICT},
    		{"permissive", v1beta1.PeerAuthentication_MutualTLS_PERMISSIVE},
    		{"disable", v1beta1.PeerAuthentication_MutualTLS_DISABLE},
    	} {
    		name, mode := c.name, c.mode
    		trafficConfigs = append(trafficConfigs, trafficConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	options
    }
    
    func apply(o *options, opts []Option) {
    	for _, f := range opts {
    		f(o)
    	}
    }
    
    // New creates a new Profile.
    //
    // With no options, the returned Profile is the most permissive and equals the
    // Punycode Profile. Options can be passed to further restrict the Profile. The
    // MapForLookup and ValidateForRegistration options set a collection of options,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	if err != nil {
    		panic(fmt.Errorf("cannot parse '%v': %v", str, err))
    	}
    	return q
    }
    
    const (
    	// splitREString is used to separate a number from its suffix; as such,
    	// this is overly permissive, but that's OK-- it will be checked later.
    	splitREString = "^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$"
    )
    
    var (
    	// Errors that could happen while parsing a string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //      * Runs all JSR166 unit tests using junit.textui.TestRunner
      //      */
      //     public static void main(String[] args) {
      //         if (useSecurityManager) {
      //             System.err.println("Setting a permissive security manager");
      //             Policy.setPolicy(permissivePolicy());
      //             System.setSecurityManager(new SecurityManager());
      //         }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //      * Runs all JSR166 unit tests using junit.textui.TestRunner
      //      */
      //     public static void main(String[] args) {
      //         if (useSecurityManager) {
      //             System.err.println("Setting a permissive security manager");
      //             Policy.setPolicy(permissivePolicy());
      //             System.setSecurityManager(new SecurityManager());
      //         }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/constants/constants.go

    	NodeSelfCSRAutoApprovalClusterRoleName = "system:certificates.k8s.io:certificatesigningrequests:selfnodeclient"
    	// NodesClusterRoleBinding defines the well-known ClusterRoleBinding which binds the too permissive system:node
    	// ClusterRole to the system:nodes group. Since kubeadm is using the Node Authorizer, this ClusterRoleBinding's
    	// system:nodes group subject is removed if present.
    	NodesClusterRoleBinding = "system:node"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_inbound.go

    // This allows traffic to ports not exposed by any Service, for example.
    func buildInboundPassthroughChains(lb *ListenerBuilder) []*listener.FilterChain {
    	// Setup enough slots for common max size (permissive mode is 5 filter chains). This is not
    	// exact, just best effort optimization
    	filterChains := make([]*listener.FilterChain, 0, 1+5)
    	filterChains = append(filterChains, buildInboundBlackhole(lb))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          Defines the mTLS mode used for peer authentication.
    
                          Valid Options: DISABLE, PERMISSIVE, STRICT
                        enum:
                        - UNSET
                        - DISABLE
                        - PERMISSIVE
                        - STRICT
                        type: string
                    type: object
                  portLevelMtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
Back to top