Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for _run (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            given:
            run "installMainExecutable"
    
            when:
            run "installMainExecutable"
    
            then:
            allSkipped()
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
        def "rebuilds executable with source file change"() {
            given:
            run "installMainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/framefuzz.test

    === RUN   TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/zero
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv6
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv6+zone
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4-in-ipv6
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4-in-ipv6+zone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/divconst_test.go

    	t.Run("7", testdiv(7, func(n uint64) (uint64, uint64) { return n / 7, n % 7 }))
    	t.Run("8", testdiv(8, func(n uint64) (uint64, uint64) { return n / 8, n % 8 }))
    	t.Run("9", testdiv(9, func(n uint64) (uint64, uint64) { return n / 9, n % 9 }))
    	t.Run("10", testdiv(10, func(n uint64) (uint64, uint64) { return n / 10, n % 10 }))
    	t.Run("11", testdiv(11, func(n uint64) (uint64, uint64) { return n / 11, n % 11 }))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  5. src/internal/saferio/io_test.go

    		}
    	})
    
    	t.Run("maxint", func(t *testing.T) {
    		_, err := ReadData(bytes.NewReader(input), 1<<62)
    		if err == nil {
    			t.Error("large read succeeded unexpectedly")
    		}
    	})
    
    	t.Run("small-EOF", func(t *testing.T) {
    		_, err := ReadData(bytes.NewReader(nil), chunk-1)
    		if err != io.EOF {
    			t.Errorf("ReadData = %v, want io.EOF", err)
    		}
    	})
    
    	t.Run("large-EOF", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/smiley.json

    {"Action":"start"}
    {"Action":"run","Test":"Test☺☹"}
    {"Action":"output","Test":"Test☺☹","Output":"=== RUN   Test☺☹\n"}
    {"Action":"output","Test":"Test☺☹","Output":"=== PAUSE Test☺☹\n"}
    {"Action":"pause","Test":"Test☺☹"}
    {"Action":"run","Test":"Test☺☹Asm"}
    {"Action":"output","Test":"Test☺☹Asm","Output":"=== RUN   Test☺☹Asm\n"}
    {"Action":"output","Test":"Test☺☹Asm","Output":"=== PAUSE Test☺☹Asm\n"}
    {"Action":"pause","Test":"Test☺☹Asm"}
    {"Action":"run","Test":"Test☺☹Dirs"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            inDirectory("impl")
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            run(":impl:build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

                apply plugin: 'java'
    
                task run(type: JavaExec) {
                    dependsOn 'compileJava'
                    classpath = sourceSets.main.runtimeClasspath
                    mainClass = 'Main'
                }
            """
    
            when:
            executer.withConsole(consoleType)
            succeeds("run")
    
            then:
            def output = result.groupedOutput.task(':run').output
            output.contains(EXPECTED_OUTPUT)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            inDirectory(rootDir).withTasks("do-stuff").run().assertTasksExecuted(":do-stuff", ":child:do-stuff");
            inDirectory(rootDir).withTasks(":do-stuff").run().assertTasksExecuted(":do-stuff");
    
            inDirectory(childDir).withTasks("do-stuff").run().assertTasksExecuted(":child:do-stuff");
            inDirectory(childDir).withTasks(":do-stuff").run().assertTasksExecuted(":do-stuff");
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

            """
    
            expect:
            blockingServer.expectConcurrent("a", "b")
    
            run ":a:ping", ":b:ping"
    
            and:
            blockingServer.expectConcurrent("a", "b")
    
            run ":a:ping", ":b:ping"
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks are not run in parallel when they require an exclusive shared service"() {
            given:
            withParallelThreads(2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top