Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for PERMISSIVE (0.11 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    //	    "group": [
    //	      "group1",
    //	      "group2"
    //	    ]
    //	  }
    //	}
    //
    // The remote service is expected to fill the SubjectAccessReviewStatus field to either allow or
    // disallow access. A permissive response would return:
    //
    //	{
    //	  "apiVersion": "authorization.k8s.io/v1beta1",
    //	  "kind": "SubjectAccessReview",
    //	  "status": {
    //	    "allowed": true
    //	  }
    //	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb.py

    		if i < 0 or i >= self.len:
    			raise IndexError(i)
    		ptr = self.val["array"]
    		return (ptr + i).dereference()
    
    
    #
    #  Pretty Printers
    #
    
    # The patterns for matching types are permissive because gdb 8.2 switched to matching on (we think) typedef names instead of C syntax names.
    class StringTypePrinter:
    	"Pretty print Go strings."
    
    	pattern = re.compile(r'^(struct string( \*)?|string)$')
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	setSecurityDescriptorRMControl(sd, &rmControl)
    }
    
    // DACL returns the security descriptor DACL and whether it was defaulted. The dacl return value may be nil
    // if a DACL exists but is an "empty DACL", meaning fully permissive. If the DACL does not exist, err returns
    // ERROR_OBJECT_NOT_FOUND.
    func (sd *SECURITY_DESCRIPTOR) DACL() (dacl *ACL, defaulted bool, err error) {
    	var present bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs_test.go

    	"testing"
    
    	"cmd/go/internal/web"
    )
    
    func init() {
    	// GOVCS defaults to public:git|hg,private:all,
    	// which breaks many tests here - they can't use non-git, non-hg VCS at all!
    	// Change to fully permissive.
    	// The tests of the GOVCS setting itself are in ../../testdata/script/govcs.txt.
    	os.Setenv("GOVCS", "*:all")
    }
    
    // Test that RepoRootForImportPath determines the correct RepoRoot for a given importPath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. 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)
  6. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      is sent directly from the remote node.  In "DSR" mode, the remote
                      node appears to use the IP of the ingress node; this requires a
                      permissive L2 network.  [Default: Tunnel]'
                    type: string
                  bpfKubeProxyEndpointSlicesEnabled:
                    description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top