Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 324 for human (0.14 sec)

  1. src/internal/trace/event/event.go

    type Type uint8
    
    // Spec is a specification for a trace event. It contains sufficient information
    // to perform basic parsing of any trace event for any version of Go.
    type Spec struct {
    	// Name is the human-readable name of the trace event.
    	Name string
    
    	// Args contains the names of each trace event's argument.
    	// Its length determines the number of arguments an event has.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // StorageVersionMigration represents a migration of stored data to the latest
    // storage version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storagemigration/v1alpha1/types_swagger_doc_generated.go

    	"status":         "Status of the condition, one of True, False, Unknown.",
    	"lastUpdateTime": "The last time this condition was updated.",
    	"reason":         "The reason for the condition's last transition.",
    	"message":        "A human readable message indicating details about the transition.",
    }
    
    func (MigrationCondition) SwaggerDoc() map[string]string {
    	return map_MigrationCondition
    }
    
    var map_StorageVersionMigration = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/apis/storagemigration/types.go

    	Status corev1.ConditionStatus
    	// The last time this condition was updated.
    	// +optional
    	LastUpdateTime metav1.Time
    	// The reason for the condition's last transition.
    	// +optional
    	Reason string
    	// A human readable message indicating details about the transition.
    	// +optional
    	Message string
    }
    
    // Status of the storage version migration.
    type StorageVersionMigrationStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// +optional
    	Conditions []PodCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,2,rep,name=conditions"`
    	// A human readable message indicating details about why the pod is in this condition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. pkg/kubelet/container/runtime.go

    	Status bool
    	// Reason is brief reason for the condition's last transition.
    	Reason string
    	// Message is human readable message indicating details about last transition.
    	Message string
    }
    
    // String formats the runtime condition into human readable string.
    func (c *RuntimeCondition) String() string {
    	return fmt.Sprintf("%s=%t reason:%s message:%s", c.Type, c.Status, c.Reason, c.Message)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // +required
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // The reason for the condition's last transition.
      // +required
      optional string reason = 5;
    
      // A human readable message indicating details about the transition.
      // +required
      optional string message = 6;
    }
    
    // A list of StorageVersions.
    message StorageVersionList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_cluster_signature.cc

    #include <variant>
    
    namespace tensorflow {
    namespace {
    using Signature = DeviceCompilationClusterSignature;
    using TensorTypeAndShape = Signature::TensorTypeAndShape;
    
    // Functor that converts a Signature's arg to a human readable string.
    struct SignatureHumanStringAppender {
      explicit SignatureHumanStringAppender(std::string* dest) : dest(dest) {}
      std::string* dest;
      void operator()(const Tensor& arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/error.go

    			handleErr(msg, PreFlightExitCode)
    		case errorsutil.Aggregate:
    			handleErr(msg, ValidationExitCode)
    
    		default:
    			handleErr(msg, DefaultErrorExitCode)
    		}
    	}
    }
    
    // FormatErrMsg returns a human-readable string describing the slice of errors passed to the function
    func FormatErrMsg(errs []error) string {
    	var errMsg string
    	for _, err := range errs {
    		errMsg = fmt.Sprintf("%s\t- %s\n", errMsg, err.Error())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. fastapi/exceptions.py

                    It is UTF-8-encoded data. The interpretation of the reason is up to the
                    application, it is not specified by the WebSocket specification.
    
                    It could contain text that could be human-readable or interpretable
                    by the client code, etc.
                    """
                ),
            ] = None,
        ) -> None:
            super().__init__(code=code, reason=reason)
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top