Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for buildtags (0.14 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilder.java

            return tasks.getNames().stream()
                .map(tasks::findByName)
                .filter(Objects::nonNull)
                .map(task -> buildTask(owner, task))
                .collect(toList());
        }
    
        private static LaunchableGradleProjectTask buildTask(DefaultGradleProject owner, Task task) {
            LaunchableGradleProjectTask model = buildFromTask(new LaunchableGradleProjectTask(), owner.getProjectIdentifier(), task);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	}
    	if cfg.BuildMSan {
    		appendSetting("-msan", "true")
    	}
    	// N.B. -pgo added later by setPGOProfilePath.
    	if cfg.BuildRace {
    		appendSetting("-race", "true")
    	}
    	if tags := cfg.BuildContext.BuildTags; len(tags) > 0 {
    		appendSetting("-tags", strings.Join(tags, ","))
    	}
    	if cfg.BuildTrimpath {
    		appendSetting("-trimpath", "true")
    	}
    	if p.DefaultGODEBUG != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    package comment, and only in package main or *_test.go files.
    
    Support for other known directives may be added in the future.
    
    This analyzer does not check //go:build, which is handled by the
    buildtag analyzer.
    `
    
    var Analyzer = &analysis.Analyzer{
    	Name: "directive",
    	Doc:  Doc,
    	URL:  "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/directive",
    	Run:  runDirective,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/BuildableComponentSpec.java

         */
        @Nullable
        Task getBuildTask();
    
        /**
         * Specifies the task responsible for building this component.
         */
        void setBuildTask(@Nullable Task buildTask);
    
        /**
         * Adds tasks required to build this component. Tasks added this way are subsequently
         * added as dependencies of this component's {@link #getBuildTask() build task}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.BuildableModelElement.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>buildTask</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

            }
    
            @Override
            String getOutput() {
                return delegate.output
            }
    
            @Override
            List<BuildTask> getTasks() {
                return delegate.tasks
            }
    
            @Override
            List<BuildTask> tasks(TaskOutcome outcome) {
                return delegate.tasks(outcome)
            }
    
            @Override
            List<String> taskPaths(TaskOutcome outcome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

            when:
            buildFile << withSimpleComponentBinaries()
            buildFile << '''
                model {
                    tasks {
                        tellTaskName(Task) {
                            doLast {
                                def binaries = $.binaries
                                assert binaries.sampleLibBinary.buildTask instanceof Task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        }
    
        private void withArgs(List<String> args) {
            buildArgs = args as List
        }
    
        private void checkDependencies() {
            resolve.prepare()
            execute(buildA, ":checkDeps", buildArgs)
        }
    
        private void checkDependenciesFails() {
            resolve.prepare()
            fails(buildA, ":checkDeps", buildArgs)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner;
    
    /**
     * The outcome of executing a task during a build.
     *
     * @since 2.6
     * @see BuildTask#getOutcome()
     */
    public enum TaskOutcome {
    
        /**
         * The task executed and performed its actions without failure.
         */
        SUCCESS,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryTasksCollectionTest.groovy

            then:
            1 * taskFactory.create("foo", DefaultTask) >> task
            1 * action.execute(task)
        }
    
        def "provides lifecycle task for binary"() {
            when:
            1 * binary.buildTask >> task
    
            then:
            tasks.build == task
        }
    
        def "returns null for missing single task with type"() {
            expect:
            tasks.findSingleTaskWithType(Copy) == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top