Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 221 for notifiers (1.66 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/DefaultAsyncConsumerActionExecutorTest.groovy

            }
            1 * handler.onComplete("result") >> {
                instant.resultReceived
            }
    
            and:
            instant.actionStarted < instant.resultReceived
        }
    
        def "notifies handler on failure"() {
            def failure = new RuntimeException()
    
            when:
            async {
                connection.run(action, handler)
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistry.java

     * limitations under the License.
     */
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.GradleException;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Map;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 20:06:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            and:
            operations.size() == 3
            assertConfigureOp(operations[0])
            assertBeforeEvaluateOp(operations[1])
            assertAfterEvaluateOp(operations[2])
        }
    
        void "notifies listeners and updates state on evaluation failure"() {
            when:
            1 * delegate.evaluate(project, state) >> { throw failure1 }
            1 * listener.afterEvaluate(project, state)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Dependency modifiers that can access platform and enforced platforms in {@code dependencies} blocks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 19:02:14 UTC 2023
    - 765 bytes
    - Viewed (0)
  5. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

        field.declaringClass != org.gradle.api.internal.AbstractTask::class.java
    
    
    private
    val Field.isTransient
        get() = isTransient(modifiers)
    
    
    private
    val Field.isStatic
        get() = isStatic(modifiers)
    
    
    private
    val abstractTaskRelevantFields = listOf(
        "actions",
        "enabled",
        "timeout",
        "onlyIfSpec",
        "logger",
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/modifiers/NamesTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers
    
    import spock.lang.Specification
    
    
    class NamesTest extends Specification {
        enum Test {
            ONE,
            THING_TWO
        }
    
        def "calculates display name"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

    import org.gradle.internal.enterprise.core.GradleEnterprisePluginManager;
    import org.gradle.internal.invocation.BuildAction;
    
    /**
     * An {@link BuildActionRunner} that notifies the GE plugin manager that the build has completed.
     */
    public class BuildCompletionNotifyingBuildActionRunner implements BuildActionRunner {
        private final BuildActionRunner delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                @Override
                public DefaultWorkResult execute(IsolatedParametersActionExecutionSpec<?> spec, BuildOperationRef parentBuildOperation) {
                    // This notifies the cancellation handler that a worker daemon has been in use during this build session.  If the
                    // build session is cancelled, we can't guarantee that all worker daemons are in a safe state, so the cancellation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/sync/runtime.go

    func runtime_SemacquireRWMutexR(s *uint32, lifo bool, skipframes int)
    func runtime_SemacquireRWMutex(s *uint32, lifo bool, skipframes int)
    
    // Semrelease atomically increments *s and notifies a waiting goroutine
    // if one is blocked in Semacquire.
    // It is intended as a simple wakeup primitive for use by the synchronization
    // library and should not be used directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-configuration/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "The Build configuration properties modifiers and helpers."
    
    dependencies {
        api(libs.jsr305)
        api(libs.inject)
    
        api(project(":core"))
        api(project(":core-api"))
        api(project(":jvm-services"))
        api(project(":toolchains-jvm-shared"))
        api(project(":stdlib-java-extensions"))
    
        implementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 888 bytes
    - Viewed (0)
Back to top