Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for perror (0.28 sec)

  1. pkg/apis/core/types.go

    	// Error is a human-readable description of the error state; machines can check whether or not Error
    	// is empty, but should not rely on the stability of the Error text across Kubelet versions.
    	// +optional
    	Error string
    }
    
    // NodeStatus is information about the current status of a node.
    type NodeStatus struct {
    	// Capacity represents the total resources of a node.
    	// +optional
    	Capacity ResourceList
    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. pkg/apis/core/validation/validation.go

    				// user-friendly.
    				error := field.NotFound(fldPath.Index(i), name)
    				error.Detail = "must be one of the names in pod.spec.resourceClaims"
    				if len(podClaimNames) == 0 {
    					error.Detail += " which is empty"
    				} else {
    					error.Detail += ": " + strings.Join(sets.List(podClaimNames), ", ")
    				}
    				allErrs = append(allErrs, error)
    			}
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Error is a human-readable description of the error state; machines can check whether or not Error
    	// is empty, but should not rely on the stability of the Error text across Kubelet versions.
    	// +optional
    	Error string `json:"error,omitempty" protobuf:"bytes,4,opt,name=error"`
    }
    
    // NodeStatus is information about the current status of a node.
    type NodeStatus struct {
    	// Capacity represents the total resources of a node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    			if err == nil {
    				t.Fatalf("unexpected success creating service")
    			}
    			for _, s := range tc.expect {
    				if !strings.Contains(err.Error(), s) {
    					t.Errorf("expected to find %q in the error:\n  %s", s, err.Error())
    				}
    			}
    		})
    	}
    }
    
    func TestCreateDeleteReuse(t *testing.T) {
    	testCases := []struct {
    		name string
    		svc  *api.Service
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - When using `kubectl logs <pod-name>` and the pod is not found, the error message now includes the namespace. Previously, the message would be "Error from server (NotFound): pods "my-pod-name" not found". Now, it reflects the namespace in the message as follows: "Error from server (NotFound): pods "my-pod-name" not found in namespace "default"".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // Error is a human-readable description of the error state; machines can check whether or not Error
      // is empty, but should not rely on the stability of the Error text across Kubelet versions.
      // +optional
      optional string error = 4;
    }
    
    // NodeDaemonEndpoints lists ports opened by daemons running on the Node.
    message NodeDaemonEndpoints {
      // Endpoint on which Kubelet is listening.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // Error is a human-readable description of the error state; machines can check whether or not Error
      // is empty, but should not rely on the stability of the Error text across Kubelet versions.
      // +optional
      optional string error = 4;
    }
    
    // NodeDaemonEndpoints lists ports opened by daemons running on the Node.
    message NodeDaemonEndpoints {
      // Endpoint on which Kubelet is listening.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - CEL authorizer checks no longer raise runtime errors. Calls to "check" will always return a decision object and the authorization error (if any) can be accessed within expressions using the new decision methods "errored" and "error". ([#118804](https://github.com/kubernetes/kubernetes/pull/118804), [@benluddy](https://github.com/benluddy)) [SIG API Machinery]
    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