Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for enum1 (0.1 sec)

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

    											Type: "string",
    											Enum: jsonSlice("foo/v1"),
    										},
    										"kind": {
    											Type: "string",
    											Enum: jsonSlice("Foo"),
    										},
    										"metadata": {
    											Type: "object",
    											Properties: map[string]apiextensions.JSONSchemaProps{
    												"name": {
    													Type: "string",
    													Enum: jsonSlice("foo"),
    												},
    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. staging/src/k8s.io/api/core/v1/types.go

    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
    }
    
    // +enum
    type AzureDataDiskCachingMode string
    
    // +enum
    type AzureDataDiskKind string
    
    const (
    	AzureDataDiskCachingNone      AzureDataDiskCachingMode = "None"
    	AzureDataDiskCachingReadOnly  AzureDataDiskCachingMode = "ReadOnly"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-61425`](https://youtrack.jetbrains.com/issue/KT-61425) Analysis API: Provide a way to get a declared member scope for an enum entry's initializing anonymous object
    - [`KT-61405`](https://youtrack.jetbrains.com/issue/KT-61405) Analysis API: An enum entry should not be a `KtSymbolWithMembers`
    - [`KT-55504`](https://youtrack.jetbrains.com/issue/KT-55504) AA: remove dependency on :compiler:cli from standalone AA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    )
    
    // Enum value maps for IngressControllerMode.
    var (
    	IngressControllerMode_name = map[int32]string{
    		0: "UNSPECIFIED",
    		1: "DEFAULT",
    		2: "STRICT",
    		3: "OFF",
    	}
    	IngressControllerMode_value = map[string]int32{
    		"UNSPECIFIED": 0,
    		"DEFAULT":     1,
    		"STRICT":      2,
    		"OFF":         3,
    	}
    )
    
    func (x IngressControllerMode) Enum() *IngressControllerMode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                    description: 'Set source-destination-check on AWS EC2 instances. Accepted
                      value must be one of "DoNothing", "Enable" or "Disable". [Default:
                      DoNothing]'
                    enum:
                    - DoNothing
                    - Enable
                    - Disable
                    type: string
                  bpfCTLBLogFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * ✨ Add support for tags with Enums. PR [#4468](https://github.com/tiangolo/fastapi/pull/4468) by [@tiangolo](https://github.com/tiangolo). New docs: [Path Operation Configuration - Tags with Enums](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/#tags-with-enums).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// Volume is being modified
    	PersistentVolumeClaimVolumeModifyingVolume PersistentVolumeClaimConditionType = "ModifyingVolume"
    )
    
    // +enum
    // When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource
    // that it does not recognizes, then it should ignore that update and let other controllers
    // handle it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - CEL cost estimator no longer treats enums as unbounded strings when determining its length. Instead, the length is set to the longest possible enum value. ([#121085](https://github.com/kubernetes/kubernetes/pull/121085), [@jiahuif](https://github.com/jiahuif)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Fixed `kubectl explain` to show enum for field types if they were defined. ([#123023](https://github.com/kubernetes/kubernetes/pull/123023), [@ah8ad3](https://github.com/ah8ad3))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Removed `resizeStatus` enum from `pvc.Status` and replaced with `AllocatedResourceStatus`. ([#116335](https://github.com/kubernetes/kubernetes/pull/116335), [@gnufied](https://github.com/gnufied)) [SIG API Machinery, Apps, Auth, Node, Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top