Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,872 for buildable (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/build.gradle

        }
    }
    // end::withArguments[]
    
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
    
    // tag::buildable[]
    model {
        tasks {
            buildAllExecutables(Task) {
                dependsOn $.binaries.findAll { it.buildable }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/CachingTaskDependencyResolveContext.java

                    connectedNodes.addAll(queue);
                    return;
                }
                if (node instanceof Buildable) {
                    Buildable buildable = (Buildable) node;
                    connectedNodes.add(buildable.getBuildDependencies());
                    return;
                }
                for (WorkDependencyResolver<T> workResolver : workResolvers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:48:26 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

        }
    
        /**
         * Should this include non-buildable components in the report?
         */
        @Console
        public boolean isShowNonBuildable() {
            return showNonBuildable;
        }
    
        @Option(option = "non-buildable", description = "Show non-buildable components.")
        public void setShowNonBuildable(boolean showNonBuildable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/TaskDependencyUtil.java

                taskDependency.getDependencies(task);
        }
    
        public static Set<? extends Task> getDependenciesForInternalUse(Buildable buildable) {
            return getDependenciesForInternalUse(buildable.getBuildDependencies(), null);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 16:55:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/ProviderBackedFileCollectionTest.groovy

            1 * provider.get() >> 'ignore'
            result.empty
        }
    
        def "resolves task dependencies for provider with unknown producer and buildable value"() {
            def task = Stub(Task)
            def value = Mock(Buildable)
    
            when:
            def dependencies = fileCollection.buildDependencies
    
            then:
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFile.groovy

                        NMakeBuildCommandLine("echo '${configuration.project.name}' project is not buildable. && exit /b -42")
                        NMakeCleanCommandLine("echo '${configuration.project.name}' project is not buildable. && exit /b -42")
                        NMakeReBuildCommandLine("echo '${configuration.project.name}' project is not buildable. && exit /b -42")
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

            withLibBinaries("notBuildableBinary1", "notBuildableBinary2")
            withStandaloneBinaries("ignoreMe")
    
            when:
            fails "assemble"
    
            then:
            failureDescriptionContains("Execution failed for task ':assemble'.")
            failure.assertHasCause("""No buildable binaries found:
      - SampleBinary 'lib:notBuildableBinary1':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskDependencyTest.groovy

        }
    
        def "can depend on a buildable"() {
            Buildable buildable = Mock(Buildable)
            TaskDependency otherDependency = Mock(TaskDependency)
    
            given:
            1 * buildable.getBuildDependencies() >> otherDependency
            1 * otherDependency.getDependencies(task) >> toSet(otherTask)
    
            when:
            dependency.add(buildable)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/ToolSearchBuildAbilityTest.groovy

        def "is buildable when tool search is successful" () {
            when:
            result.isAvailable() >> true
    
            then:
            ability.isBuildable()
        }
    
        def "is not buildable when tool search is not successful" () {
            when:
            result.isAvailable() >> false
    
            then:
            !ability.isBuildable()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeLibraryBinarySpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.nativeplatform.internal;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.file.collections.MinimalFileSet;
    import org.gradle.api.internal.tasks.DefaultTaskDependency;
    import org.gradle.api.internal.tasks.TaskDependencyInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top