Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,027 for buildable (0.21 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySet.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.DomainObjectSet;
    
    /**
     * A set of artifact dependencies.
     */
    public interface DependencySet extends DomainObjectSet<Dependency>, Buildable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 849 bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/PublishArtifactSet.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.DomainObjectSet;
    import org.gradle.api.file.FileCollection;
    
    /**
     * A set of artifacts to be published.
     */
    public interface PublishArtifactSet extends DomainObjectSet<PublishArtifact>, Buildable {
        FileCollection getFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 937 bytes
    - Viewed (0)
  5. 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)
  6. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuiteTarget.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins.jvm.internal;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.plugins.JavaBasePlugin;
    import org.gradle.api.plugins.jvm.JvmTestSuiteTarget;
    import org.gradle.api.tasks.TaskContainer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/PublicationArtifact.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish;
    
    import org.gradle.api.Buildable;
    
    import java.io.File;
    
    /**
     * An artifact published as part of a {@link Publication}.
     *
     * @since 4.8
     */
    public interface PublicationArtifact extends Buildable {
        /**
         * The actual file contents to publish.
         */
        File getFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

    """
        }
    
        @RequiresInstalledToolChain
        @ToBeFixedForConfigurationCache(because = ":components")
        def "shows details of native C++ library that is not buildable"() {
            given:
            buildFile << """
    plugins {
        id 'cpp'
    }
    
    model {
        platforms {
            windows { operatingSystem 'windows'; architecture 'sparc' }
        }
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

            return getIdentifier().getProjectScopedName();
        }
    
        @Override
        public void setBuildable(boolean buildable) {
            this.disabled = !buildable;
        }
    
        @Override
        public final boolean isBuildable() {
            return getBuildAbility().isBuildable();
        }
    
        @Override
        public DomainObjectSet<LanguageSourceSet> getInputs() {
            return inputSourceSets;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/api/BuildableComponentSpec.java

    package org.gradle.api;
    
    import org.gradle.platform.base.ComponentSpec;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ComponentSpec} that is directly {@link Buildable} via a specified task.
     */
    @Incubating
    public interface BuildableComponentSpec extends Buildable, ComponentSpec {
        /**
         * Returns the task responsible for building this component.
         */
        @Nullable
        Task getBuildTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top