Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for unreadable (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. ChangeLog.md

    - [`KT-38490`](https://youtrack.jetbrains.com/issue/KT-38490) False negative INVALID_IF_AS_EXPRESSION with unreachable code and coercion to Unit
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

       ([#122530](https://github.com/kubernetes/kubernetes/pull/122530), [@neolit123](https://github.com/neolit123))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - Generated `ResourceClaim` names are now more readable because of an additional hyphen before the random suffix (`<pod name>-<claim name>-<random suffix>`). ([#120336](https://github.com/kubernetes/kubernetes/pull/120336), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    			return o.BaseConfig.Handler
    		}
    	}
    	return DefaultServeMux
    }
    
    // ServeConn serves HTTP/2 requests on the provided connection and
    // blocks until the connection is no longer readable.
    //
    // ServeConn starts speaking HTTP/2 assuming that c has not had any
    // reads or writes. It writes its initial settings frame and expects
    // to be able to read the preface and settings frame from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top