Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Sall (0.23 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            then:
            hasSystemProperty('mySystemProperty', 'defined in the client JVM')
        }
    
        def "Passing an empty map to withSystemProperties() hides all client system properties"() {
            setup:
            toolingApi.requireDaemons() // no separate daemon JVM -> all client JVM system properties are expected to be visible
    
            when:
            runTask { withSystemProperties([:]) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/KotlinPluginImplementation.groovy

                    override fun apply(project: Project) {
                        var value = ${read.kotlinExpression}
                        println("apply = " + value)
    
                        // Call from a function body
                        val f = { p: String ->
                            println("\$p FUNCTION = " + System.getProperty("FUNCTION"))
                        }
                        f("apply")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         *
         * The standard {@link Class#cast(Object)} method produces unsatisfactory error messages on some platforms
         * when it fails. All this method does is provide a better, consistent, error message.
         *
         * This should be used whenever there is a chance the cast could fail. If in doubt, use this.
         *
         * @param outputType The type to cast the input to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

         */
        fun disableForCurrentThread() {
            ++inputTrackingDisabledCounterForThread
        }
    
        /**
         * Restores the input tracking state to the state it was in before the last call to
         * [disableForCurrentThread].
         */
        fun restoreForCurrentThread() {
            Preconditions.checkState(inputTrackingDisabledCounterForThread > 0, "Restore input tracking state without prior disable is detected")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains declarations for instrumentation of plugins. Adds interceptors, bytecode upgrades etc."
    
    dependencies {
        // All dependencies should be compileOnly, since this project is added also to worker classpath, so we don't pollute it.
        // If we need some dependency also at runtime we need to build a separate classpath and add it to :launcher project or :distributions-core project directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(['FOOBAR=foobar'] as String[], null)", "", "foobar"],
                [fromString(), "command.execute(['FOOBAR=foobar'] as List, null)", "", "foobar"],
                // null-safe call
                [fromGroovyString(), "command?.execute(null, null)", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ScopedFingerprintWriter.kt

    import java.io.Closeable
    
    
    internal
    class ScopedFingerprintWriter<T>(
        private val writeContext: DefaultWriteContext
    ) : Closeable {
        override fun close() {
            // we synchronize access to all resources used by callbacks
            // in case there was still an event being dispatched at closing time.
            synchronized(writeContext) {
                unsafeWrite(null)
                writeContext.close()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    However, the latest Java version may only be supported for compilation or testing, not for running Gradle.
    Support is achieved using <<toolchains#toolchains,toolchains>> and applies to all tasks supporting toolchains.
    
    See the table below for the Java version supported by a specific Gradle release:
    
    .Java Compatibility
    |===
    |Java version | Support for toolchains | Support for running Gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Shared
    
    /**
     * Base class for tests that invoke external process with the dynamic Groovy code.
     * There are many different ways to run a process in Groovy, and all are producing different byte code.
     * The class supports compiling Groovy code in both indy and old-school CallSite modes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsParallelIntegrationTest.groovy

            then:
            noExceptionThrown()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24887")
        @Issue("https://github.com/gradle/gradle/issues/27099")
        def "build events listener service handles all events before it is closed"() {
            buildFile """
                import ${BuildEventsListenerRegistry.name}
                import ${OperationCompletionListener.name}
                import ${FinishEvent.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top