Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for assemble64 (0.19 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                println "configuring \$project.path"
                classes.doLast { t ->
                    println "classes of \$t.path"
                }
            """
    
            when:
            execute(buildA, ":assemble")
    
            then:
            outputContains("> Configure project :${buildName}")
            result.groupedOutput.task(":${buildName}:classes").output.contains("classes of :classes")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    		p.errorf("%s: expected immediate constant; found %s", pseudo, obj.Dconv(&emptyProg, addr))
    		return false
    	}
    	return true
    }
    
    // asmText assembles a TEXT pseudo-op.
    // TEXT runtimeĀ·sigtramp(SB),4,$0-0
    func (p *Parser) asmText(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for TEXT")
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsCompositeBuildIntegrationTest.groovy

                dependencies { implementation 'libs:a:' }
            """
    
            when:
            isolatedProjectsRun(":assemble")
    
            then:
            fixture.assertStateStored {
                projectsConfigured(":", ":libs", ":libs:a")
            }
    
            when:
            isolatedProjectsRun(":assemble")
    
            then:
            fixture.assertStateLoaded()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingSwiftPerformanceTest.groovy

    class TaskOutputCachingSwiftPerformanceTest extends AbstractTaskOutputCachingPerformanceTest {
        def setup() {
            runner.minimumBaseVersion = "4.5"
        }
    
        def "clean assemble with local cache (swift)"() {
            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskSubclassingBinaryForwardCompatibilityCrossVersionSpec.groovy

            version previous withTasks 'assemble' inDirectory(file("producer")) run()
            version current withTasks 'tasks' requireDaemon() requireIsolatedDaemons() run()
        }
    
        def "task can use all methods declared by Task interface that AbstractTask specialises"() {
            given:
            prepareMethodUseTest(previous.version)
    
            expect:
            version previous withTasks 'assemble' inDirectory(file("producer")) run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/DockerPluginSmokeTest.groovy

                        images = ['jettyapp:1.115']
                    }
                }
                """.stripIndent()
    
            when:
            def result = runner('assemble').forwardOutput().build()
    
            then:
            result.task(':assemble').outcome == SUCCESS
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-spi/src/integTest/groovy/org/gradle/caching/BuildCacheServiceExtensibilityIntegrationTest.groovy

            buildFile << """
                apply plugin: "java"
            """
            file("src/main/java/Main.java") << """
                public class Main {}
            """
    
            when:
            withBuildCache().run "assemble"
            then:
            outputContains "Loading "
            outputContains "Storing "
        }
    
        def "produces deprecation message when BuildCacheKey.getDisplayName() is called"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            when:
            // We do a warmup run so even on Windows, the VFS really contains all the files we expect it to contain.
            withWatchFs().run("assemble")
            waitForChangesToBePickedUp()
            def vfsLogs = enableVerboseVfsLogs()
            withWatchFs().run("assemble")
            then:
            vfsLogs.retainedFilesInCurrentBuild >= 4
            // Make sure the daemon is already idle before making the file changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter="+it)
            }
        }
    
        def "can recompile many times in a row with a reused compiler daemon"() {
            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter=0")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
                    connection.model(BuildInvocations).forTasks('assemble').addProgressListener(events, EnumSet.of(OperationType.TASK)).get()
            }
    
            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top