Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for human (0.07 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    The module metadata file is intended to be machine-generated rather than written by a human but is intended to be human-readable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    The module metadata file is intended to be machine-generated rather than written by a human but is intended to be human-readable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tfcompile.bzl

          graph: The TensorFlow GraphDef to compile.  If the file ends in '.pbtxt'
            it is expected to be in the human-readable proto text format, otherwise
            it is expected to be in the proto binary format.
          config: File containing tensorflow.tf2xla.Config proto.  If the file ends
            in '.pbtxt' it is expected to be in the human-readable proto text
            format, otherwise it is expected to be in the proto binary format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string
    	// type is an OpenAPI type definition for this column.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Type string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf_test.go

    							if p.Flags == elf.PF_R {
    								foundRO = true
    							}
    						}
    					}
    					if !foundRO {
    						// Things went off the rails. Write out some
    						// useful information for a human looking at the
    						// test failure.
    						t.Logf("test %s: %q section not in readonly segment",
    							wsro.Name, test.name)
    						t.Logf("section %s location: st=0x%x en=0x%x\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"lastTransitionTime": "Last time the condition transitioned from one status to another.",
    	"reason":             "The reason for the condition's last transition.",
    	"message":            "A human readable message indicating details about the transition.",
    }
    
    func (DaemonSetCondition) SwaggerDoc() map[string]string {
    	return map_DaemonSetCondition
    }
    
    var map_DaemonSetList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

                    } finally {
                        inputStream.close();
                    }
                } catch (GradleException e) {
                    throw e; // Gradle exceptions are already meant to be human-readable, so just rethrow it
                } catch (Exception e) {
                    String message = "Unable to expand " + getDisplayName() + "\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 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;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 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;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top