Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for Assembles (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:assembler_sources]]
    === Assembler sources
    
    Assembly language support is provided by means of the `'assembler'` plugin.
    
    === Example: The 'assembler' plugin
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/assembler/groovy/build.gradle[tag=apply-plugin]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically
    	// and accept the same constants.
    	MOVW $2147483648, R5            // 64058000
    	MOVWZ $-2147483648, R5          // 3ca08000
    
    	// TODO: These are preprocessed by the assembler into MOVD $const>>shift, R5; SLD $shift, R5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

       if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then
          addockeropt "\"live-restore\": false,"
       else
          addockeropt "\"live-restore\": true,"
       fi
    }
    
    function assemble-docker-flags {
      echo "Assemble docker options"
    
        # log the contents of the /etc/docker/daemon.json if already exists
      if [ -f /etc/docker/daemon.json ]; then
        echo "Contents of the old docker config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <h3>Lifecycle</h3>
     *
     * <p>There is a one-to-one relationship between a <code>Project</code> and a <code>{@value #DEFAULT_BUILD_FILE}</code>
     * file. During build initialisation, Gradle assembles a <code>Project</code> object for each project which is to
     * participate in the build, as follows:</p>
     *
     * <ul>
     *
     * <li>Create a {@link org.gradle.api.initialization.Settings} instance for the build.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	infoEpilog  loader.Sym
    
    	// Outputs for a given unit.
    	linesyms   []loader.Sym
    	infosyms   []loader.Sym
    	locsyms    []loader.Sym
    	rangessyms []loader.Sym
    }
    
    // dwUnitPortion assembles the DWARF content for a given compilation
    // unit: debug_info, debug_lines, debug_ranges, debug_loc (debug_frame
    // is handled elsewhere). Order is important; the calls to writelines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicIntegrationTest.groovy

                ":build-logic:jar",
                ":assemble")
            fixture.assertStateStored()
    
            when:
            configurationCacheRun("assemble")
    
            then:
            result.assertTasksExecuted(":assemble")
            fixture.assertStateLoaded()
    
            when:
            pluginSourceFile << """
                // some change
            """
            configurationCacheRun("assemble")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

      "scenario" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble for abi change with local cache",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 828
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble for non-abi change with local cache",
      "durations" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            assertStateStored()
            result.assertTasksExecuted(":compileJava", ":processResources", ":classes", ":jar", ":compileTestJava", ":processTestResources", ":testClasses", ":test", ":assemble", ":check", ":build")
            result.assertTasksNotSkipped(":jar", ":assemble", ":build")
            def jarFile = file("build/libs/somelib.jar")
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

                apply plugin: 'swift-library'
            """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(":compileDebugSwift", ":linkDebug", ":assemble")
            // TODO - should skip the task as NO-SOURCE
            result.assertTasksSkipped(":compileDebugSwift", ":linkDebug", ":assemble")
        }
    
        def "build fails when compilation fails"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIncrementalExecutionPerformanceTest.groovy

            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX, WINDOWS, MAC_OS], testProjects = "largeJavaMultiProject")
        ])
        def "assemble for non-abi change#configurationCaching"() {
            given:
            runner.tasksToRun = ['assemble']
            runner.addBuildMutator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top