Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 573 for Sall (0.08 sec)

  1. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorPolicy.java

         *
         * The Callable's call() needs to be called from this method.
         */
        <T> T onExecute(Callable<T> command) throws Exception;
    
        /**
         * Special behavior after an executor is stopped.
         *
         * This is called after the underlying Executor has been stopped.
         */
        void onStop();
    
        /**
         * Runs the Runnable, catches all Throwables and logs them.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

            val tree = parseAsTopLevelBlock(
                """
                myFun {
                    a = "x"
                    a = b
                    b = f(a = "x")
                    b = f(a = "x") { test() }
                    call(x = { }) // TODO: right now, it is reported as an unsupported language feature FunctionDeclaration, report it in a more precise way?
                    multiLambda({ }, { })
                    1
                    a.b()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

        }
    
        def "queries initial value for every call to get()"() {
            expect:
            def initialValue = toMutable(["abc"])
            property.set(initialValue)
            assertValueIs(["abc"])
            initialValue.add("added")
            assertValueIs(["abc", "added"])
        }
    
        def "queries underlying provider for every call to get()"() {
            def provider = Stub(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

            subprojectDir.mkdirs()
            FileTreeBuilder builder = new FileTreeBuilder(subprojectDir)
            config.setDelegate(builder)
            config.resolveStrategy = Closure.DELEGATE_FIRST
            config.call()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [source, groovy]
    ----
    interface CountingParams extends BuildServiceParameters {
        Property<Integer> getInitial()
    }
    ----
    
    A build service implementation can also optionally implement `AutoCloseable`, in which case Gradle will call the build service instance's `close()` method when it discards the service instance.
    This happens sometime between the completion of the last task that uses the build service and the end of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @see Project#beforeEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void beforeEvaluate(Closure closure);
    
        /**
         * <p>Adds a closure to call immediately after this project is evaluated.</p>
         *
         * @see Project#afterEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void afterEvaluate(@DelegatesTo(Project.class) Closure closure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    There is no way to provide values by argument name.
    
    To call a Kotlin function that has default arguments from Groovy, always pass values for all the function parameters.
    
    ==== Calling Groovy from Kotlin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

                        // even though the task was not found, the current project is coupled with the other project:
                        // if the configuration of that project changes, the result of this call might be different
                        val coupledProjects = listOfNotNull(parentPath?.let { referrerProject.findProject(it) })
                        reportCrossProjectTaskAccess(coupledProjects, path)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            when:
            try {
                cache.open()
            } finally {
                cache.close()
            }
    
            then:
            0 * _  // Does not call initialization action.
            dir.file("cache.properties").isFile()
            dir.file("some-file").isFile()
        }
    
        def "will rebuild cache if not unlocked cleanly"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/main/resources/footer.html

        const desktopMediaQuery = window.matchMedia("screen and (min-width: 64rem)");
    
        [].forEach.call(document.querySelectorAll(".docs-navigation a[href$='/" + getCurrentChapterFileName(window.location.pathname) + "']"), function (link) {
            // Add "active" to all links same as current URL
            link.classList.add("active");
    
            // Expand all parent navigation
            var parentListEl = link.closest("li");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top