Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 536 for assemble64 (0.17 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

            mappingFor("does-not-exist", "unused:dep")
            expect:
            succeeds("assemble")
            assertRepoNotCheckedOut()
        }
    
        @ToBeFixedForConfigurationCache
        def "last vcs mapping rule wins"() {
            mappingFor("does-not-exist", "org.test:dep")
            mappingFor(repo, "org.test:dep")
            expect:
            succeeds("assemble")
            assertRepoCheckedOut()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java

    /**
     * Collects the output of the toolchains builder.
     *
     * @since 3.3.0
     */
    public interface ToolchainsBuildingResult {
    
        /**
         * Gets the assembled toolchains.
         *
         * @return The assembled toolchains, never {@code null}.
         */
        PersistedToolchains getEffectiveToolchains();
    
        /**
         * Return a list of problems, if any.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerLangPluginTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.language.assembler.plugins
    
    import org.gradle.language.assembler.AssemblerSourceSet
    import org.gradle.test.fixtures.plugin.AbstractLanguagePluginSpec
    
    class AssemblerLangPluginTest extends AbstractLanguagePluginSpec {
        @Override
        Class getPluginClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/ear/src/integTest/groovy/org/gradle/integtests/MixedWarAndEjbProjectIntegrationTest.groovy

    """
    
            expect:
            succeeds "assemble"
        }
    
        def "assemble builds only the EAR by default"() {
            given:
            file("settings.gradle") << "rootProject.name = 'root'"
    
            and:
            buildFile << """
    apply plugin: 'java'
    apply plugin: 'war'
    apply plugin: 'ear'
    """
    
            when:
            run "assemble"
    
            then:
            !file("build/libs/root.jar").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

    """
    
            when:
            succeeds taskName
            then:
            executed ":sampleLibBinaryOneTask", ":sampleLibBinaryOne"
    
            where:
            taskName             | taskdescr
            "assemble"           | "assemble task"
            "sampleLibBinaryOne" | "binary lifecycle task"
        }
    
        def "details of rule-added tasks are visible in model report"() {
            given:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/assembler/AssemblerSourceSet.java

     * limitations under the License.
     */
    package org.gradle.language.assembler;
    
    import org.gradle.api.Incubating;
    import org.gradle.language.base.LanguageSourceSet;
    import org.gradle.model.Managed;
    
    /**
     * A set of assembly language sources.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'assembler'
     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginAccessorsIntegrationTest.kt

                }
            }
    
            build("assemble").run {
                assertTaskExecuted(
                    ":consumer:generateExternalPluginSpecBuilders"
                )
            }
    
            existing("producer/src/main/kotlin/changing-producer-plugin.gradle.kts").run {
                renameTo(resolveSibling("changed-producer-plugin.gradle.kts"))
            }
    
            build("assemble").run {
                assertTaskExecuted(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

    import org.apache.maven.api.settings.Settings;
    
    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilderResult {
    
        /**
         * Gets the assembled settings.
         *
         * @return the assembled settings, never {@code null}
         */
        @Nonnull
        Settings getEffectiveSettings();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java

    import org.apache.maven.api.toolchain.PersistedToolchains;
    
    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ToolchainsBuilderResult {
        /**
         * Gets the assembled toolchains.
         *
         * @return the assembled toolchains, never {@code null}
         */
        @Nonnull
        PersistedToolchains getEffectiveToolchains();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top