Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 536 for assemble64 (0.17 sec)

  1. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingResult.java

    import org.apache.maven.settings.Settings;
    
    /**
     * Collects the output of the settings builder.
     *
     */
    public interface SettingsBuildingResult {
    
        /**
         * Gets the assembled settings.
         *
         * @return The assembled settings, never {@code null}.
         */
        Settings getEffectiveSettings();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppBothLibraryLinkageIntegrationTest.groovy

            library.writeToProject(testDirectory)
    
            when:
            succeeds('assemble')
    
            then:
            result.assertTasksExecuted(':compileDebugSharedCpp', ':linkDebugShared', ':assemble')
            sharedLibrary('build/lib/main/debug/shared/foo').assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "can assemble static library followed by shared library"() {
            def library = new CppLib()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildPerformanceTest.groovy

        }
    
        def "up-to-date assemble (native)"() {
            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        def "assemble with #changeType file change"() {
            given:
            runner.tasksToRun = ["assemble"]
            runner.addBuildMutator { settings ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftBuildPerformanceTest.groovy

        }
    
        def "up-to-date assemble (swift)"() {
            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        def "incremental compile"() {
            given:
            runner.tasksToRun = ["assemble"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    ::
    Aggregates tasks that assemble the specific variant of this library.
    
    [[sec:swift_library_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The Swift Library Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the Swift Library Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

                        outgoing.artifact(tasks.jar2)
                    }
                }
            """
    
            expect:
            succeeds("assemble")
    
            executedAndNotSkipped(":jar1", ":jar2")
        }
    
        def "artifacts on role-locked configurations are not built by the assemble task by default"() {
            buildFile << """
                plugins {
                    id("base")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/assembler/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for building from Assembler language sources.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 727 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/swift-shared-library-task-graph.dot

      compileDebugSwift -> linkDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

                    @Test void ok() { new Thing() }
                }
            """
    
            and:
            def expectedTasks = [
                ":compileJava", ":compileGroovy", ":processResources", ":classes", ":jar", ":assemble",
                ":compileTestJava", ":compileTestGroovy", ":processTestResources", ":testClasses", ":test", ":check",
                ":build"
            ]
            def classFile = file("build/classes/groovy/main/Thing.class")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitDependentComponentsIntegrationSpec.groovy

        }
    
        private def getCunitLibName() {
            return OperatingSystem.current().getStaticLibraryName("cunit")
        }
    
        @ToBeFixedForConfigurationCache
        def "buildDependentsHello assemble and check all hello binaries"() {
            given:
            useConventionalSourceLocations()
            useStandardConfig()
    
            when:
            succeeds 'buildDependentsHello'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top