Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for unreadable (0.28 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    					},
    					"message": {
    						SchemaProps: spec.SchemaProps{
    							Description: "A human-readable description of the status of this operation.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"reason": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // for the transition into the object's current status.
      // TODO: provide exact specification for format.
      // +optional
      optional string reason = 3;
    
      // A human-readable description of the status of this operation.
      // TODO: decide on maximum length.
      // +optional
      optional string message = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"reason":             "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
    	"message":            "A human-readable description of the status of this operation.",
    	"source":             "The component reporting this event. Should be a short machine understandable string.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

    - **[alpha]** Represent node problems "not ready" and "unreachable" using `NoExecute` taints. In combination with `tolerationSeconds` described below, this allows per-pod specification of how long to remain bound to a node that becomes unreachable or not ready, rather than using the default of 5 minutes. You can enable this alpha feature by including `TaintBasedEvictions=true` in `--feature-gates`,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // for the transition into the object's current status.
      // TODO: provide exact specification for format.
      // +optional
      optional string reason = 3;
    
      // A human-readable description of the status of this operation.
      // TODO: decide on maximum length.
      // +optional
      optional string message = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    type PersistentVolumeStatus struct {
    	// Phase indicates if a volume is available, bound to a claim, or released by a claim
    	// +optional
    	Phase PersistentVolumePhase
    	// A human-readable message indicating details about why the volume is in this state.
    	// +optional
    	Message string
    	// Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Phase PersistentVolumePhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PersistentVolumePhase"`
    	// message is a human-readable message indicating details about why the volume is in this state.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		default:
    			panic("unreachable")
    		}
    		needWidth = true
    	} else if base.Flag.Race {
    		// for non-composite objects we can write just the start
    		// address, as any write must write the first byte.
    		switch kind {
    		case instrumentRead:
    			fn = ir.Syms.Raceread
    		case instrumentWrite:
    			fn = ir.Syms.Racewrite
    		default:
    			panic("unreachable")
    		}
    	} else if base.Flag.ASan {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.9.md

    ### **Scheduling**
    
    *   Taint key `unreachable` is now in GA.
    *   Taint key `notReady` is changed to `not-ready`, and is also now in GA.
    *   These changes are automatically updated for taints. Tolerations for these taints must be updated manually. Specifically, you must:
        *   Change `node.alpha.kubernetes.io/notReady` to `node.kubernetes.io/not-ready`
        *   Change `node.alpha.kubernetes.io/unreachable` to  `node.kubernetes.io/unreachable`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                          format: date-time
                          type: string
                        message:
                          description: message is a human readable message indicating
                            details about the transition. This may be an empty string.
                          maxLength: 32768
                          type: string
                        observedGeneration:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
Back to top