Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for _run (0.1 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/CachedScalaCompileIntegrationTest.groovy

            when:
            withBuildCache().run(compilationTask)
            then:
            class1.isFile()
            class2.isFile()
            file(compiledFile).isFile()
    
            when:
            run("clean")
            withBuildCache().run(compilationTask)
            then:
            skipped(compilationTask)
    
            when:
            assert source2.delete()
            withBuildCache().run(compilationTask)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/nistec_test.go

    }
    
    func TestEquivalents(t *testing.T) {
    	t.Run("P224", func(t *testing.T) {
    		testEquivalents(t, nistec.NewP224Point, elliptic.P224())
    	})
    	t.Run("P256", func(t *testing.T) {
    		testEquivalents(t, nistec.NewP256Point, elliptic.P256())
    	})
    	t.Run("P384", func(t *testing.T) {
    		testEquivalents(t, nistec.NewP384Point, elliptic.P384())
    	})
    	t.Run("P521", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/SingleRequestWorkerProcessIntegrationTest.groovy

        Object run(Long request) { throw new RuntimeException() }
    }
    """)
    
            when:
            def builder = workerFactory.singleRequestWorker(cl)
            builder.baseName = 'broken worker'
            def worker = builder.build()
            worker.run(12.toLong())
    
            then:
            def e = thrown(WorkerProcessException)
            e.message == 'Failed to run broken worker'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* remove extends */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplB", "ImplB2")
    
            when:
            impl.snapshot()
            source api: ["class A { /* change */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

                    doLast {
                        project.javaexec {
                            if (run.executable) {
                                executable run.executable
                            }
                            classpath = run.classpath
                            mainClass = run.mainClass
                            args run.args
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensionsTest.kt

            newPluginAwareMock<PluginAware>().run {
                target.apply<AnyPlugin>()
                verify(configurationAction).plugin(AnyPlugin::class.java)
            }
            newPluginAwareMock<Gradle>().run {
                target.apply<GradlePlugin>()
                verify(configurationAction).plugin(GradlePlugin::class.java)
            }
            newPluginAwareMock<Settings>().run {
                target.apply<SettingsPlugin>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["class A {}", "class B {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class A { String change; }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplA")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

            and:
            commonJvmFilesGenerated(scriptDsl)
            dslFixture.assertDoesNotUseTestSuites()
    
            when:
            run("build")
    
            then:
            assertTestPassed("org.example.AppTest", "appHasAGreeting")
    
            when:
            run("run")
    
            then:
            outputContains("Hello World!")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { final static $constantType x = $newValue; }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('X')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top