Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for PERMISSIVE (0.17 sec)

  1. LICENSE

    must place, in the relevant source files, a statement of the
    additional terms that apply to those files, or a notice indicating
    where to find the applicable terms.
    
      Additional terms, permissive or non-permissive, may be stated in the
    form of a separately written license, or stated as exceptions;
    the above requirements apply either way.
    
      8. Termination.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	// persisted to storage.
    	//
    	// This environment type is compatible with CEL expressions that have been
    	// persisted to storage by all known versions of Kubernetes. This is the most
    	// permissive environment available.
    	//
    	// StoredExpressions is appropriate for use with CEL expressions in
    	// configuration files.
    	StoredExpressions Type = "StoredExpressions"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. hack/golangci.yaml

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/mime/encodedword.go

    }
    
    // Decode decodes an RFC 2047 encoded-word.
    func (d *WordDecoder) Decode(word string) (string, error) {
    	// See https://tools.ietf.org/html/rfc2047#section-2 for details.
    	// Our decoder is permissive, we accept empty encoded-text.
    	if len(word) < 8 || !strings.HasPrefix(word, "=?") || !strings.HasSuffix(word, "?=") || strings.Count(word, "?") != 4 {
    		return "", errInvalidWord
    	}
    	word = word[2 : len(word)-2]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    	re(`-f(no-)?modules`),
    	re(`-f(no-)?objc-arc`),
    	re(`-f(no-)?objc-nonfragile-abi`),
    	re(`-f(no-)?objc-legacy-dispatch`),
    	re(`-f(no-)?omit-frame-pointer`),
    	re(`-f(no-)?openmp(-simd)?`),
    	re(`-f(no-)?permissive`),
    	re(`-f(no-)?(pic|PIC|pie|PIE)`),
    	re(`-f(no-)?plt`),
    	re(`-f(no-)?rtti`),
    	re(`-f(no-)?split-stack`),
    	re(`-f(no-)?stack-(.+)`),
    	re(`-f(no-)?strict-aliasing`),
    	re(`-f(un)signed-char`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top