Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for unhelpful (0.29 sec)

  1. logo/usage_guidelines.md

    All artwork is made available under the Linux Foundation trademark usage
    [guidelines](https://www.linuxfoundation.org/trademark-usage/). This text from
    those guidelines, and the correct and incorrect usage examples, are particularly
    helpful:
    >Certain marks of The Linux Foundation have been created to enable you to
    >communicate compatibility or interoperability of software or products. In
    >addition to the requirement that any use of a mark to make an assertion of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

       * java.nio.file.Files#newBufferedReader(java.nio.file.Path, Charset)}.
       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithExecutableJarIntegrationTest.groovy

            'ExecOperations.javaexec' | 'runWithExecOperations'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1346")
        @UnsupportedWithConfigurationCache(iterationMatchers = ".* project\\.javaexec")
        def "helpful message when jar is not executable with #method"() {
    
            when:
            fails taskName
    
            then:
            result.assertHasErrorOutput("no main manifest attribute")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. docs/contribute/code_of_conduct.md

       problems later. Be thoughtful and considerate when seeking out the appropriate forum for your
       questions. Those who are asked should be responsive and helpful.
    
     * **Step down considerately**: Members of every project come and go. When somebody leaves or
       disengages from the project, they should make it known and take the proper steps to ensure that
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUpgradeIntegrationTest.groovy

        def "can run the wrapper task when the build was started with the wrapper"() {
            given:
            prepareWrapper()
    
            expect:
            wrapperExecuter.withTasks('wrapper').run()
        }
    
        def "prints helpful error message on invalid version argument format: #badVersion"() {
            given:
            prepareWrapper()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/wait-on-pipe.go

    	// Write to the pipe to unblock it.
    	if _, err := syscall.Write(wfd, []byte{10}); err != nil {
    		log.Fatalf("failed to write to pipe: %v", err)
    	}
    
    	// Wait for the goroutine to unblock and start running.
    	// This is helpful to catch incorrect information written
    	// down for the syscall-blocked goroutine, since it'll start
    	// executing, and that execution information will be
    	// inconsistent.
    	<-done
    
    	// Stop tracing.
    	trace.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitComments.java

    @NonNullApi
    public enum BuildInitComments {
        /**
         * Comments are included for generated source files and build files.
         * <p>
         * Comments include explanations of various build script constructs,
         * helpful links and disclaimers about files being generated by an 'init' task.
         */
        ON,
    
        /**
         * Comments are not included for the source files and build files.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 12:41:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/PotentialMatchTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.logging.comparison
    
    import spock.lang.Specification
    
    class PotentialMatchTest extends Specification {
        def "potential match renders helpful context"() {
            when:
            def pm = new PotentialMatch(expectedLines, actualLines, matchBegins)
            def expectedContextMsg = PotentialMatch.HEADER + '\n' + contextBody.join('\n')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. Development.md

    ### Remove generic suggestions
    
    For some scenarios, it doesn't make sense to display all the generic suggestions we currently have.
    E.g. `--stacktrace` for a compilation error is not helpful.
    
    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/Files.java

       * java.nio.file.Files#newBufferedReader(java.nio.file.Path, Charset)}.
       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top