Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for ALLOW (0.18 sec)

  1. tests/integration/security/authz_test.go

    							allow: false,
    						},
    						{
    							path:  "/allow/admin?param=value",
    							allow: false,
    						},
    						{
    							path:  "/allow",
    							allow: false,
    						},
    						{
    							path:  "/allow/admin/temp",
    							allow: true,
    						},
    						{
    							path:  "/allow/admin/temp.txt",
    							allow: true,
    						},
    						{
    							path:  "/allow/admin/foo/temp.txt",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			concurrencyPolicy:          "Allow",
    			suspend:                    true,
    			schedule:                   onTheHour,
    			deadline:                   noDead,
    			jobCreationTime:            justAfterThePriorHour(),
    			now:                        *justAfterTheHour(),
    			jobPresentInCJActiveStatus: true,
    		},
    		"never ran, is time, past deadline": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    		},
    
    		// My node object
    		{
    			name:       "allow create of my node",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(mynodeObj, nil, nodeKind, mynodeObj.Namespace, mynodeObj.Name, nodeResource, "", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "",
    		},
    		{
    			name:       "allow create of my node pulling name from object",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    	exportContentStrings := map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. fastapi/param_functions.py

        allow_inf_nan: Annotated[
            Union[bool, None],
            Doc(
                """
                Allow `inf`, `-inf`, `nan`. Only applicable to numbers.
                """
            ),
        ] = _Unset,
        max_digits: Annotated[
            Union[int, None],
            Doc(
                """
                Maximum number of allow digits for strings.
                """
            ),
        ] = _Unset,
        decimal_places: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    				spec  string
    				check echo.Checker
    			}{
    				{
    					name:  "allow",
    					check: check.OK(),
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/{{.Namespace}}/sa/{{.Source}}", "cluster.local/ns/{{.Namespace}}/sa/{{.WaypointName}}"]
    `,
    				},
    				{
    					name:  "not allow",
    					check: CheckDeny,
    					spec: `
      rules:
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    	if spec.PodReplacementPolicy != nil {
    		// If PodFailurePolicy is specified then we only allow Failed.
    		if spec.PodFailurePolicy != nil {
    			if *spec.PodReplacementPolicy != batch.Failed {
    				allErrs = append(allErrs, field.NotSupported(fldPath, *spec.PodReplacementPolicy, []batch.PodReplacementPolicy{batch.Failed}))
    			}
    			// If PodFailurePolicy not specified we allow values in supportedPodReplacementPolicy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            assumeTrue("the container doesn't allow direct element addition", isDirectElementAdditionAllowed())
        }
    
        void containerAllowsElementRemoval() {
            assumeTrue("the container doesn't allow element removal", isElementRemovalAllowed())
        }
    
        void containerAllowsExternalProviders() {
            assumeTrue("the container doesn't allow external provider to be added", isExternalProviderAllowed())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    * AWS
      * Support for ap-northeast-2 region (Seoul)
      * Allow cross-region image pulling with ECR
      * More reliable kube-up/kube-down
      * Enable ICMP Type 3 Code 4 for ELBs
      * ARP caching fix
      * Use /dev/xvdXX names
      * ELB:
        * ELB proxy protocol support 
    	* mixed plaintext/encrypted ports support in ELBs
        * SSL support for ELB listeners
      * Allow VPC CIDR to be specified (experimental)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	ClassNL                         // allow character classes like [^a-z] and [[:space:]] to match newline
    	DotNL                           // allow . to match newline
    	OneLine                         // treat ^ and $ as only matching at beginning and end of text
    	NonGreedy                       // make repetition operators default to non-greedy
    	PerlX                           // allow Perl extensions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top