Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 161 for human (0.31 sec)

  1. cmd/kubeadm/app/cmd/token.go

    		Short:                 "Create bootstrap tokens on the server",
    		Long: dedent.Dedent(`
    			This command will create a bootstrap token for you.
    			You can specify the usages for this token, the "time to live" and an optional human friendly description.
    
    			The [token] is the actual token to write.
    			This should be a securely generated random token of the form "[a-z0-9]{6}.[a-z0-9]{16}".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/types.go

    	// reason indicates a brief reason for the request state
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,2,opt,name=reason"`
    	// message contains a human readable message with details about the request state
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    	// lastUpdateTime is the time of the last update to this condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// `message` is a human-readable message indicating details about last transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // FlowSchemaConditionType is a valid value for FlowSchemaStatusCondition.Type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// `message` is a human-readable message indicating details about last transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // FlowSchemaConditionType is a valid value for FlowSchemaStatusCondition.Type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. src/internal/profile/profile.go

    	pp := &Profile{}
    	if err := unmarshal(b, pp); err != nil {
    		panic(err)
    	}
    	if err := pp.postDecode(); err != nil {
    		panic(err)
    	}
    
    	return pp
    }
    
    // Demangler maps symbol names to a human-readable form. This may
    // include C++ demangling and additional simplification. Names that
    // are not demangled may be missing from the resulting map.
    type Demangler func(name []string) (map[string]string, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Types.java

      @VisibleForTesting
      static WildcardType supertypeOf(Type lowerBound) {
        return new WildcardTypeImpl(new Type[] {lowerBound}, new Type[] {Object.class});
      }
    
      /**
       * Returns a human-readable string representation of {@code type}.
       *
       * <p>The format is subject to change.
       */
      static String toString(Type type) {
        return (type instanceof Class) ? ((Class<?>) type).getName() : type.toString();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/extensions/v1beta1/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
    - 45.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// `message` is a human-readable message indicating details about last transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // FlowSchemaConditionType is a valid value for FlowSchemaStatusCondition.Type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// The reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Automated testing allows developers to refactor and improve code with confidence.
    
    [[testing-pyramid]]
    === The testing pyramid
    
    Manual Testing :: While manual testing is straightforward, it is error-prone and requires human effort. For Gradle plugins, manual testing involves using the plugin in a build script.
    
    Automated Testing :: Automated testing includes unit, integration, and functional testing.
    
    image::testing-pyramid.png[float=right]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top