Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,936 for buildable (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerExportIntegrationTest.groovy

    )
    """
            // In Swift PM 5.0+ an error is thrown when there is no buildable target, let's ignore this specific failure for backward compatibility
            if (swiftc.version.compareTo(VersionNumber.parse("5.0")) < 0) {
                swiftPmBuildSucceeds()
            } else {
                def result = swiftPmBuildFails()
                result.out.contains("the package does not contain a buildable target")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            }
            another(NativeLibrarySpec) {
                binaries.all { buildable = false }
            }
        }
    }
    """
            when:
            fails "assemble"
    
            then:
            failureDescriptionContains("Execution failed for task ':assemble'.")
            failure.assertHasCause("""No buildable binaries found:
      - shared library 'another:sharedLibrary': Disabled by user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top