Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Forbidden (0.35 sec)

  1. pkg/apis/apps/validation/validation_test.go

    		),
    		errs: field.ErrorList{
    			field.Forbidden(field.NewPath("spec"), ""),
    		},
    	}, {
    		name:   "update pod management policy 1",
    		old:    mkStatefulSet(&validPodTemplate, tweakPodManagementPolicy("")),
    		update: mkStatefulSet(&validPodTemplate, tweakPodManagementPolicy(apps.OrderedReadyPodManagement)),
    		errs: field.ErrorList{
    			field.Forbidden(field.NewPath("spec"), ""),
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. src/reflect/value.go

    				// that the runtime will crash on if it sees it during GC or write barriers.
    				// Since it is a not-in-heap pointer, all pointers to the heap are
    				// forbidden! That makes the test pretty easy.
    				// See issue 48399.
    				if !verifyNotInHeapPtr(*(*uintptr)(ptr)) {
    					panic("reflect: reflect.Value.Elem on an invalid notinheap pointer")
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    						},
    					},
    					ParameterNotFoundAction: ptr(admissionregistration.DenyAction),
    				},
    			},
    		},
    		expectedError: `spec.paramRef.name: Forbidden: name and selector are mutually exclusive, spec.paramRef.selector: Forbidden: name and selector are mutually exclusive`,
    	}, {
    		name: "paramRef parameterNotFoundAction must be set",
    		config: &admissionregistration.ValidatingAdmissionPolicyBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.\n 6....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
              "type": "string"
            },
            "uid": {
              "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
              "type": "string"
            }
          },
          "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		return
    	}
    
    	rcfg, _ := globalBucketObjectLockSys.Get(bucket)
    	if rcfg.LockEnabled && opts.DeletePrefix {
    		apiErr := toAPIError(ctx, errInvalidArgument)
    		apiErr.Description = "force-delete is forbidden on Object Locking enabled buckets"
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    	os := newObjSweeper(bucket, object).WithVersion(opts.VersionID).WithVersioning(opts.Versioned, opts.VersionSuspended)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    //
    //go:nosplit
    func Gosched() {
    	checkTimeouts()
    	mcall(gosched_m)
    }
    
    // goschedguarded yields the processor like gosched, but also checks
    // for forbidden states and opts out of the yield in those cases.
    //
    //go:nosplit
    func goschedguarded() {
    	mcall(goschedguarded_m)
    }
    
    // goschedIfBusy yields the processor like gosched, but only does so if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    }
    
    // AllowInstall returns a non-nil error if this invocation of the go command is
    // allowed to install a.Target.
    //
    // The build of cmd/go running under its own test is forbidden from installing
    // to its original GOROOT. The var is exported so it can be set by TestMain.
    var AllowInstall = func(*Action) error { return nil }
    
    // cleanup removes a's object dir to keep the amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    			if target.IsAIX() && rst != sym.SDYNIMPORT {
    				// It's not possible to make a loader relocation in a
    				// symbol which is not inside .data section.
    				// FIXME: It should be forbidden to have R_ADDR from a
    				// symbol which isn't in .data. However, as .text has the
    				// same address once loaded, this is possible.
    				if ldr.SymSect(s).Seg == &Segdata {
    					Xcoffadddynrel(target, ldr, syms, s, r, ri)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/net/http/server.go

    // written in the trailers at the end of the response.
    func (w *response) declareTrailer(k string) {
    	k = CanonicalHeaderKey(k)
    	if !httpguts.ValidTrailerHeader(k) {
    		// Forbidden by RFC 7230, section 4.1.2
    		return
    	}
    	w.trailers = append(w.trailers, k)
    }
    
    // requestTooLarge is called by maxBytesReader when too much input has
    // been read from the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top