Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for statusCh (0.34 sec)

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

    				invalid("spec", "names", "listKind"), // kind == listKind
    				invalid("status", "acceptedNames", "plural"),
    				invalid("status", "acceptedNames", "singular"),
    				invalid("status", "acceptedNames", "kind"),
    				invalid("status", "acceptedNames", "listKind"), // invalid format
    				invalid("status", "acceptedNames", "listKind"), // kind == listKind
    				invalid("spec", "versions"),
    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

    	// +optional
    	Spec NamespaceSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status describes the current status of a Namespace.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
    	// +optional
    	Status NamespaceStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    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. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "description": "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.",
                "type": "string"
              },
              "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

    available observations of an object's current state. When a Job fails, one of the conditions will have type \"Failed\" and status true. When a Job is suspended, one of the conditions will have type \"Suspended\" and status true; when the Job is resumed, the status of this condition will become false. When a Job is completed, one of the conditions will have type \"Complete\" and status true.\n\nA job is considered finished when it is in a terminal condition, either \"Complete\" or \"Failed\". A Job cannot...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    		if err != nil {
    			return 0, err
    		}
    		i -= size
    		i = encodeVarintGenerated(dAtA, i, uint64(size))
    	}
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Status)
    	copy(dAtA[i:], m.Status)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Status)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    		if err != nil {
    			return 0, err
    		}
    		i -= size
    		i = encodeVarintGenerated(dAtA, i, uint64(size))
    	}
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Status)
    	copy(dAtA[i:], m.Status)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Status)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.12.md

        * If the serialization type is 'application/json':
        * If serialization fails, and the original status code was an failure (e.g. 4xx or 5xx), the original status code will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - resource.k8s.io/ResourceClaim (alpha API): The strategic merge patch strategy for the `status.reservedFor` array was changed so that a strategic-merge-patch can now add individual entries. This change may break clients using strategic merge patch to update status, which rely on the previous behavior (replacing the entire array).
    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. src/net/http/h2_bundle.go

    	}
    	return uint32(v)
    }
    
    // bodyAllowedForStatus reports whether a given response status code
    // permits a body. See RFC 7230, section 3.3.
    func http2bodyAllowedForStatus(status int) bool {
    	switch {
    	case status >= 100 && status <= 199:
    		return false
    	case status == 204:
    		return false
    	case status == 304:
    		return false
    	}
    	return true
    }
    
    type http2httpError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

     - Remove storage metrics `storage_operation_errors_total`, since we already have `storage_operation_status_count`.And add new field `status` for `storage_operation_duration_seconds`, so that we can know about all status storage operation latency. ([#98332](https://github.com/kubernetes/kubernetes/pull/98332), [@JornShen](https://github.com/JornShen)) [SIG Instrumentation and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top