Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for representing (0.28 sec)

  1. pkg/apis/core/types.go

    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    	// A string representing a unique label for a range of resources, such as a CIDR "10.0.0.0/8" or
    	// port range "10000-30000". Range is not strongly schema'd here. The Range is expected to define
    	// a start and end unless there is an implicit end.
    	Range string
    	// A byte array representing the serialized state of a range allocation. Additional clarifiers on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string message = 2;
    }
    
    // ContainerStatus contains details for the current status of this container.
    message ContainerStatus {
      // Name is a DNS_LABEL representing the unique name of the container.
      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
      optional string name = 1;
    
    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

    }
    
    var map_ContainerStatus = map[string]string{
    	"":                   "ContainerStatus contains details for the current status of this container.",
    	"name":               "Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated.",
    	"state":              "State holds details about the container's current condition.",
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string message = 2;
    }
    
    // ContainerStatus contains details for the current status of this container.
    message ContainerStatus {
      // Name is a DNS_LABEL representing the unique name of the container.
      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
      optional string name = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // ContainerStatus contains details for the current status of this container.
    type ContainerStatus struct {
    	// Name is a DNS_LABEL representing the unique name of the container.
    	// Each container in a pod must have a unique name across all container types.
    	// Cannot be updated.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	return valueSet, allErrs
    }
    
    // ValidateTopologySelectorTerm tests that the specified topology selector term has valid data,
    // and constructs a map representing the term in raw form.
    func ValidateTopologySelectorTerm(term core.TopologySelectorTerm, fldPath *field.Path) (map[string]sets.Set[string], field.ErrorList) {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    		default:
    			cs.abortStreamLocked(err)
    		}
    	}
    	cc.cond.Broadcast()
    	cc.mu.Unlock()
    }
    
    // countReadFrameError calls Transport.CountError with a string
    // representing err.
    func (cc *http2ClientConn) countReadFrameError(err error) {
    	f := cc.t.CountError
    	if f == nil || err == nil {
    		return
    	}
    	if ce, ok := err.(http2ConnectionError); ok {
    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