Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,227 for notified (0.14 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationCompletionListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events;
    
    /**
     * A listener which is notified when operations run as part of the build complete.
     *
     * @since 6.1
     */
    public interface OperationCompletionListener {
        /**
         * Called when an operation completes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 907 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ProjectComponentObservationListener.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.StatefulListener;
    import org.gradle.util.Path;
    
    import javax.annotation.Nullable;
    
    /**
     * A listener that is notified when one project observes the local component metadata of another.
     */
    @StatefulListener
    @EventScope(Scope.Build.class)
    public interface ProjectComponentObservationListener {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

        }
    
        /**
         * Adds a closure to be notified before a test is executed. A {@link TestDescriptor} instance is passed to the closure as a parameter.
         *
         * @param closure The closure to call.
         */
        public void beforeTest(Closure closure) {
            addDispatchAsTestListener("beforeTest", closure);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. 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)
  6. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt

        /**
         * Creates a new event source and immediately returns it. Creating an event source initiates an
         * asynchronous process to connect the socket. Once that succeeds or fails, `listener` will be
         * notified. The caller must cancel the returned event source when it is no longer in use.
         */
        fun newEventSource(
          request: Request,
          listener: EventSourceListener,
        ): EventSource
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/RootBuildLifecycleListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.StatefulListener;
    
    /**
     * A listener that is notified when a root build is started and completed. No more than one root build may run at a given time.
     *
     * A root build may contain zero or more nested builds, such as `buildSrc` or included builds.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskActionListener.java

    import org.gradle.api.Task;
    import org.gradle.internal.DeprecatedInGradleScope;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * <p>A {@code TaskActionListener} is notified of the actions that a task performs.</p>
     *
     * @deprecated This type is not supported when configuration caching is enabled.
     */
    @EventScope(Scope.Build.class)
    @Deprecated
    @DeprecatedInGradleScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildProgressListener.java

         */
        void onEvent(Object event);
    
        /**
         * Returns the type of operations that the listener wants to subscribe to.
         *
         * @return the type of operations to be notified about
         */
        List<String> getSubscribedOperations();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top