Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,650 for descriptive (0.17 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

     *
     * @param <K> the type of keys used by the maps under test
     * @param <V> the type of mapped values used the maps under test
     * @author George van den Driessche
     */
    // TODO: Descriptive assertion messages, with hints as to probable fixes.
    // TODO: Add another constructor parameter indicating whether the class under test is ordered, and
    // check the order if so.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

     *
     * @param <K> the type of keys used by the maps under test
     * @param <V> the type of mapped values used the maps under test
     * @author George van den Driessche
     */
    // TODO: Descriptive assertion messages, with hints as to probable fixes.
    // TODO: Add another constructor parameter indicating whether the class under test is ordered, and
    // check the order if so.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    //
    // Values in VolumeConfig are intended to be relevant to several plugins, but
    // not necessarily all plugins.  The preference is to leverage strong typing
    // in this struct.  All config items must have a descriptive but non-specific
    // name (i.e, RecyclerMinimumTimeout is OK but RecyclerMinimumTimeoutForNFS is
    // !OK).  An instance of config will be given directly to the plugin, so
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    		if f.fn.counterVar != "" {
    			return f
    		}
    
    		// Hack: function literals aren't named in the go/ast representation,
    		// and we don't know what name the compiler will choose. For now,
    		// just make up a descriptive name.
    		pos := n.Pos()
    		p := f.fset.File(pos).Position(pos)
    		fname := fmt.Sprintf("func.L%d.C%d", p.Line, p.Column)
    		if *pkgcfg != "" {
    			f.preFunc(n, fname)
    		}
    		if pkgconfig.Granularity != "perfunc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. cmd/storage-rest-server.go

    		}
    		logger.Fatal(config.ErrUnableToWriteInBackend(err).Hint(hint), "Unable to initialize backend")
    	case errors.Is(err, errDiskAccessDenied):
    		// Show a descriptive error with a hint about how to fix it.
    		var username string
    		if u, err := user.Current(); err == nil {
    			username = u.Username
    		} else {
    			username = "<your-username>"
    		}
    		var hint string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/runtime/metrics/description.go

    // descriptions of each metric in doc.go by running 'go generate'.
    var allDesc = []Description{
    	{
    		Name:        "/cgo/go-to-c-calls:calls",
    		Description: "Count of calls made from Go to C by the current process.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    		Name: "/cpu/classes/gc/mark/assist:cpu-seconds",
    		Description: "Estimated total CPU time goroutines spent performing GC tasks " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"name":       "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/model/Description.java

    public class Description {
        public final static Description JAVA = new Description(
            Language.JAVA,
            JUNIT_JUPITER,
            asList(JUNIT, JUNIT_JUPITER, TESTNG, SPOCK),
            null, null
        );
    
        public final static Description GROOVY = new Description(
            Language.GROOVY,
            SPOCK,
            singletonList(SPOCK),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. security/tools/deb/description

    Tao Li <******@****.***> 1516856822 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 05:07:02 UTC 2018
    - 73 bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    type MatchCondition struct {
    	// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    	// as well as providing an identifier for logging purposes. A good name should be descriptive of
    	// the associated expression.
    	// Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
    	// must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top