Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 119 for executors (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

    import org.gradle.internal.cc.impl.fixtures.ToolingApiBackedGradleExecuter
    import org.gradle.internal.cc.impl.fixtures.ToolingApiSpec
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    
    class ConfigurationCacheToolingApiInvocationIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements ToolingApiSpec {
        @Override
        GradleExecuter createExecuter() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                }
            """
        }
    
        @NoDebug
        def "fails appropriately if runner is loaded from a JAR that is not part of the distribution and no explicit version set"() {
            when:
            executer.withStackTraceChecksDisabled()
            def jarsDir = file('jars').createDir()
    
            new File(distribution.gradleHomeDir, 'lib').eachFileRecurse(FileType.FILES) { f ->
                if (f.name.contains("gradle-test-kit")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    // This file extends/implements core stream executor base classes in terms of
    // the C API defined in stream_executor.h. A class "CSomething" represents a
    // "Something" that can be manipulated via calls in the C interface and a C
    // struct called "SP_Something".
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            outputDoesNotContain 'initscript1!'
            outputContains 'initscript2!'
            configurationCache.assertStateStored()
        }
    
        private File gradleUserHomeDirFile(String path) {
            executer.gradleUserHomeDir.file(path)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                    }
                }
            """
    
            when:
            executer.withEnvironmentVars(ci: "1")
            configurationCacheRun("-Dci=1", "build")
    
            then:
            configurationCache.assertStateStored()
            outputContains("ON CI")
    
            when: "changing the value of the input doesn't invalidate cache"
            executer.withEnvironmentVars(ci: "2")
            configurationCacheRun("-Dci=2", "build")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

                        }
                        ${outputStream}.println("Hello, " + name);
                    }
                }
            """
        }
    
        def withStdInContents(String message) {
            executer.withStdinPipe(new PipedOutputStream() {
                @Override
                synchronized void connect(PipedInputStream snk) throws IOException {
                    super.connect(snk)
                    write(message.bytes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

        def apiJarVersion = System.getProperty("integTest.distZipVersion")
        def kotlinVersion = System.getProperty("integTest.kotlinVersion")
    
        def setup() {
            executer.beforeExecute {
                args("-Dorg.gradle.unsafe.suppress-gradle-api=true")
                withInstallations(jvm)
            }
    
            file("src/test/java/org/example/PublishedApiTestPluginTest.java") << pluginTestJava()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

            }
        }
    
        private
        fun WriteContext.writeReference(value: Any?) {
            // Cannot warn about a script reference here, because we don't know whether the closure will attempt to use the script object when it executes,
            // and since almost every closure in a Groovy build script legitimately has the script as an owner, this will generate false problems.
            // So instead, warn when the script object is used by the closure when executing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                assert elements.get().asFile == [file('a')]
            """
    
            expect:
            succeeds()
        }
    
        def "task @InputFiles file collection closure is called once only when task executes"() {
            taskTypeWithInputFileCollection()
            buildFile """
                task merge(type: InputFilesTask) {
                    outFile = file("out.txt")
                    inFiles.from {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                                implementationClass = 'BuildServicePlugin'
                            }
                        }
                    }
                """
            }
            executer.inDirectory(file("plugin")).withTasks("publish").run()
        }
    
        @Requires(IntegTestPreconditions.NotNoDaemonExecutor)
        def "build service from included build is loaded in reused classloader"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top