Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 92 for BUILDABLE (0.1 sec)

  1. 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)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/ToolSearchBuildAbilityTest.groovy

        ToolSearchBuildAbility ability = new ToolSearchBuildAbility(result)
    
        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:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/UnpackingVisitorTest.groovy

    import org.gradle.api.tasks.TaskDependency
    import org.gradle.api.tasks.TaskOutputs
    import org.gradle.internal.file.PathToFileResolver
    import org.gradle.internal.Factory
    import org.gradle.api.Buildable
    import spock.lang.Specification
    
    import java.util.concurrent.Callable
    import java.util.function.Consumer
    
    class UnpackingVisitorTest extends Specification {
        def context = Mock(Consumer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

        }
    
        @Override
        public String getProjectScopedName() {
            return getIdentifier().getProjectScopedName();
        }
    
        @Override
        public void setBuildable(boolean buildable) {
            this.disabled = !buildable;
        }
    
        @Override
        public final boolean isBuildable() {
            return getBuildAbility().isBuildable();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileCollectionAdapterTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections
    
    import org.gradle.api.Buildable
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import spock.lang.Specification
    
    class FileCollectionAdapterTest extends Specification {
    
        def delegatesToTargetCollectionToBuildSetOfFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

                    srcDir: src/staticLibrary/moreCpp
    """
        }
    
        @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)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileCollectionAdapter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.internal.file.AbstractOpaqueFileCollection;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioProject.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.visualstudio;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.TaskDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/SelfResolvingDependency.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Buildable;
    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * A {@code SelfResolvingDependency} is a {@link Dependency} which is able to resolve itself, independent of a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top