Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 162 for sensible (0.21 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		// command (the .svg file includes embedded javascript so is best viewed in
    		// a browser).
    		cmds = append(cmds, []string{"chrome", "google-chrome", "chromium", "firefox", "sensible-browser"}...)
    		if os.Getenv("DISPLAY") != "" {
    			// xdg-open is only for use in a desktop environment.
    			cmds = append(cmds, "xdg-open")
    		}
    	}
    	return cmds
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    [[sec:plugin_conventions]]
    == Adding default configuration with conventions
    
    Plugins should provide sensible defaults and standards in a specific context, reducing the number of decisions users need to make.
    Using the `project` object, you can define default values.
    These are known as *conventions*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte NUL = 0;
    
      /**
       * Start of Heading: A communication control character used at the beginning of a sequence of
       * characters which constitute a machine-sensible address or routing information. Such a sequence
       * is referred to as the "heading." An STX character has the effect of terminating a heading.
       *
       * @since 8.0
       */
      public static final byte SOH = 1;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// str is the string representation of the Tag. It will only be used if the
    	// tag has variants or extensions.
    	str string
    }
    
    // Make is a convenience wrapper for Parse that omits the error.
    // In case of an error, a sensible default is returned.
    func Make(s string) Tag {
    	t, _ := Parse(s)
    	return t
    }
    
    // Raw returns the raw base language, script and region, without making an
    // attempt to infer their values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    	}
    	if a.sh == nil {
    		a.sh = b.backgroundSh.WithAction(a)
    	}
    	return a.sh
    }
    
    // BackgroundShell returns a Builder-wide Shell that's not bound to any Action.
    // Try not to use this unless there's really no sensible Action available.
    func (b *Builder) BackgroundShell() *Shell {
    	return b.backgroundSh
    }
    
    // moveOrCopyFile is like 'mv src dst' or 'cp src dst'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte NUL = 0;
    
      /**
       * Start of Heading: A communication control character used at the beginning of a sequence of
       * characters which constitute a machine-sensible address or routing information. Such a sequence
       * is referred to as the "heading." An STX character has the effect of terminating a heading.
       *
       * @since 8.0
       */
      public static final byte SOH = 1;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

            String value
        }
    
        static class Bean {
            String name
            String value
        }
    
        static class SpecialBean extends Bean {
            String other
        }
    
        def "sensible error is thrown when trying to apply a class that does not extend RuleSource as a scoped rule"() {
            def mmType = ModelTypes.modelMap(MutableValue)
    
            registry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    So Gradle picks the first match in this order: Microsoft JDK 17.0.1.
    
    [[sec:plugins_toolchains]]
    == Toolchains for plugin authors
    
    When creating a plugin or a task that uses toolchains, it is essential to provide sensible defaults and allow users to override them.
    
    For JVM projects, it is usually safe to assume that the `java` plugin has been applied to the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
     *       conformance.
     *   <li>The test classes currently do not declare inclusion in any particular package to simplify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
     *       conformance.
     *   <li>The test classes currently do not declare inclusion in any particular package to simplify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top