Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for BUILDABLE (0.18 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                |    +--- lib:sharedLibrary NOT BUILDABLE
                |    |    \\--- main:executable
                |    +--- lib:staticLibrary NOT BUILDABLE
                |    \\--- main:executable
                \\--- util:staticLibrary
                '''.stripIndent()
    
            where:
            option            | _
            '--all'           | _
            '--non-buildable' | _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

        private void addSignature(Signature signature) {
            getSignatures().add(signature);
        }
    
        private void removeSignature(final Buildable source) {
            getSignatures().removeIf(hasSource(source));
        }
    
        private Predicate<Signature> hasSource(Buildable source) {
            return signature -> signature.getSource().equals(source);
        }
    
        /**
         * Changes the signatory of the signatures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks;
    
    import com.google.common.collect.ImmutableSet;
    import groovy.lang.Closure;
    import org.gradle.api.Buildable;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.Task;
    import org.gradle.api.internal.provider.ProviderInternal;
    import org.gradle.api.internal.provider.ValueSupplier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            taskAction2.execute(null)
    
            then:
            0 * mapping1.apply(_)
            1 * mapping2.apply(_) >> Mock(DirectoryProperty)
        }
    
        Set<Task> dependencies(Buildable buildable) {
            return buildable.buildDependencies.getDependencies(null)
        }
    
        FileCollection dir(String dirPath, Task builtBy) {
            def collection = fileCollectionFactory.configurableFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  7. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.signing;
    
    import groovy.lang.Closure;
    import org.gradle.api.Buildable;
    import org.gradle.api.Incubating;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.artifacts.PublishArtifact;
    import org.gradle.api.internal.artifacts.publish.AbstractPublishArtifact;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.language.swift.internal;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.artifacts.Configuration;
    import org.gradle.api.artifacts.ConfigurationContainer;
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactoryTest.groovy

            when:
            def deps = publishArtifact.buildDependencies
    
            then:
            deps.getDependencies(null).empty
        }
    
        def "create artifact from buildable RegularFile provider"() {
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def provider = Mock(ProviderInternal)
            def value = Mock(RegularFile)
            def file1 = new File("classes-1.zip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            where:
            linkage << ["static", "shared"]
        }
    
        @Issue("GRADLE-3332")
        @NotYetImplemented
        def "can create helper task to install buildable executables"() {
            def helloWorldApp = new CppHelloWorldApp()
            given:
            buildFile << '''
    apply plugin: 'cpp'
    
    model {
        components {
            main(NativeExecutableSpec)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top