Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for allowGet (0.57 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    													Default: jsonPtr("foo"),
    												},
    											},
    											// allowed: unknown fields outside metadata
    											Default: jsonPtr(map[string]interface{}{
    												"unknown": int64(42),
    											}),
    										},
    									},
    								},
    								"allowed-object-defaults": {
    									Type: "object",
    									Properties: map[string]apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	}
    
    	// status and metadata are allowed change (barring restrictions above), so separately test spec field.
    	// spec only has a few fields, so check the ones we don't allow changing
    	//  1. PodCIDRs - immutable after first set - checked above
    	//  2. ProviderID - immutable after first set - checked above
    	//  3. Unschedulable - allowed to change
    	//  4. Taints - allowed to change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	VolumeMounts []VolumeMount
    	// volumeDevices is the list of block devices to be used by the container.
    	// +optional
    	VolumeDevices []VolumeDevice
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	LivenessProbe *Probe
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeDevices":            "volumeDevices is the list of block devices to be used by the container.",
    	"livenessProbe":            "Probes are not allowed for ephemeral containers.",
    	"readinessProbe":           "Probes are not allowed for ephemeral containers.",
    	"startupProbe":             "Probes are not allowed for ephemeral containers.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated VolumeDevice volumeDevices = 21;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe livenessProbe = 10;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe readinessProbe = 11;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe startupProbe = 22;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	}
    
    	// Might need to split after applying limits.
    	allowed := wr.stream.flow.available()
    	if n < allowed {
    		allowed = n
    	}
    	if wr.stream.sc.maxFrameSize < allowed {
    		allowed = wr.stream.sc.maxFrameSize
    	}
    	if allowed <= 0 {
    		return empty, empty, 0
    	}
    	if len(wd.p) > int(allowed) {
    		wr.stream.flow.take(allowed)
    		consumed := http2FrameWriteRequest{
    			stream: wr.stream,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	LivenessProbe *Probe `json:"livenessProbe,omitempty" protobuf:"bytes,10,opt,name=livenessProbe"`
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	ReadinessProbe *Probe `json:"readinessProbe,omitempty" protobuf:"bytes,11,opt,name=readinessProbe"`
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated VolumeDevice volumeDevices = 21;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe livenessProbe = 10;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe readinessProbe = 11;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe startupProbe = 22;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top