Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for BUILDABLE (0.1 sec)

  1. maven-core/src/main/mdo/extension.mdo

      ]]></description>
      <defaults>
        <default>
          <key>package</key>
          <value>extension descriptor XML documentation (no java generation)</value><!-- intentionally non-buildable value -->
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="extension">
          <name>ExtensionDescriptor</name>
          <version>1.0.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyTest.groovy

            projectDependency.setTransitive(false)
    
            when:
            projectDependency.resolve(context)
    
            then:
            0 * _
        }
    
        void "is buildable"() {
            def context = Mock(TaskDependencyResolveContext)
    
            def conf = project.configurations.create('conf')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    Furthermore, the `--non-binaries` option shows non-buildable binaries in the report, `--no-non-buildable` hides them.
    Similarly, the `--test-suites` option shows test suites and `--no-test-suites` hides them.
    The option `--no-all` hides both non-buildable binaries and test suites from the report.
    
    [[sec:assemble_dependents]]
    === Assembling dependents
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/cmd/cover/cfg_test.go

    		ofs, outcfg, _ := runPkgCover(t, instdira, tag, incfg, mode,
    			apkgfiles, false)
    		t.Logf("outfiles: %+v\n", ofs)
    
    		// Run the compiler on the files to make sure the result is
    		// buildable.
    		bargs := []string{"tool", "compile", "-p", "a", "-coveragecfg", outcfg}
    		bargs = append(bargs, ofs...)
    		cmd := testenv.Command(t, testenv.GoToolPath(t), bargs...)
    		cmd.Dir = instdira
    		run(cmd, t)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/go/build/build.go

    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    // MultiplePackageError describes a directory containing
    // multiple buildable Go source files for multiple packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <li>A {@link Task}.</li>
     *
     * <li>A {@link TaskDependency} object.</li>
     *
     * <li>A {@link org.gradle.api.tasks.TaskReference} object.</li>
     *
     * <li>A {@link Buildable} object.</li>
     *
     * <li>A {@link org.gradle.api.file.RegularFileProperty} or {@link org.gradle.api.file.DirectoryProperty}.</li>
     *
     * <li>A {@link Provider} object. May contain any of the types listed here.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top