Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 424 for notified (0.32 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         */
        void onStdin(@Nullable StdinHandler handler);
    
        /**
         * Registers a handler for when this connection is disconnected unexpectedly.. The handler is notified at most once.
         *
         * The handler is not notified after any of the following occurs:
         * <ul>
         * <li>When the connection is closed using {@link #stop()}.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            provider.get()
    
            then: "beforeValueObtained callback is notified"
            1 * computationListener.beforeValueObtained()
    
            then: "afterValueObtained callback is notified"
            1 * computationListener.afterValueObtained()
    
            then: "valueObtained is notified"
            obtainedValues.size() == 1
            obtainedValues[0].valueSourceType == EchoValueSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    		t.Error(err)
    	}
    	if handled != 0 {
    		t.Errorf("notified workload handler %d times, want %d", handled, 0)
    	}
    
    	if err := f(nil, &v1.Pod{ObjectMeta: pod1, Status: v1.PodStatus{Conditions: readyCondition, PodIP: ip, Phase: v1.PodPending}}, model.EventUpdate); err != nil {
    		t.Error(err)
    	}
    	if handled != 1 {
    		t.Errorf("notified workload handler %d times, want %d", handled, 1)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginEndOfBuildCallbackIntegrationTest.groovy

        }
    
        def "end of build listener is notified on success"() {
            when:
            succeeds succeedingTaskName
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
    
            when:
            succeeds succeedingTaskName
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
        }
    
        def "end of build listener is notified on failure"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/DefaultListenerManager.java

            }
    
            private List<Dispatch<MethodInvocation>> startNotification(boolean includeLogger) {
                takeOwnership();
    
                if (!notified) {
                    maybeAddPendingRegistrations(type);
                    notified = true;
                }
    
                // Take a snapshot while holding lock
                List<Dispatch<MethodInvocation>> result = includeLogger ? allWithLogger : allWithNoLogger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ScopedServiceRegistry.java

        ) {
            super(displayName, parents);
            addServiceValidator(scope, strict);
        }
    
        /**
         * Validator implements a special type of service ({@link AnnotatedServiceLifecycleHandler})
         * that gets notified about all existing and further service registrations.
         */
        private void addServiceValidator(Class<? extends Scope> scope, boolean strict) {
            add(new ServiceScopeValidator(scope, strict));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/AnnotatedServiceLifecycleHandler.java

    public interface AnnotatedServiceLifecycleHandler {
        List<Class<? extends Annotation>> getAnnotations();
    
        /**
         * When not null, all services are considered to have the implicit annotation
         * and the handler should be notified about all registrations.
         */
        @Nullable
        Class<? extends Annotation> getImplicitAnnotation();
    
        /**
         * Called when a service with the given annotation is registered.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:35:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerNotificationException.java

    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code ListenerNotificationException} is thrown when a listener cannot be notified of an event.
     */
    @Contextual
    public class ListenerNotificationException extends DefaultMultiCauseException {
        private final MethodInvocation event;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CoupledProjectsListener.kt

    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.Scope
    
    
    @EventScope(Scope.Build::class)
    interface CoupledProjectsListener {
        /**
         * Notified when the build logic for a [referrer] project accesses the mutable state of some other [target] project.
         *
         * The [referrer] and [target] might represent the same project, and the listener implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

            Class<? extends ValueSource<T, P>> valueSourceType,
            @Nullable Class<P> parametersType,
            @Nullable P parameters
        );
    
        /**
         * The listener that is notified when the value of the {@code ValueSource} is computed. There is no ordering guarantees with the
         * {@link ValueListener#valueObtained(ValueListener.ObtainedValue, ValueSource)}.
         */
        @EventScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top