Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 598 for notified (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/LifecycleAwareValue.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.properties;
    
    /**
     * An input property value may implement this interface to be notified when the task that owns it starts and completes execution.
     */
    public interface LifecycleAwareValue {
    
        /**
         * Called immediately prior to this property being used as an input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 18:04:59 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/internal/model/RuleBasedPluginListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import org.gradle.api.Project;
    
    /**
     * This listener is notified when a rule based plugin is applied to a project.
     * Listeners can react to this by activating compatibility layers that are otherwise not necessary.
     */
    public interface RuleBasedPluginListener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 02 15:31:41 UTC 2018
    - 972 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    	Enqueue()
    }
    
    // Notifier is a way to add listeners
    type Notifier interface {
    	// AddListener is adds a listener to be notified of potential input changes.
    	// This is a noop on static providers.
    	AddListener(listener Listener)
    }
    
    // CAContentProvider provides ca bundle byte content
    type CAContentProvider interface {
    	Notifier
    
    	// Name is just an identifier.
    	Name() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K 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. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/ToolingModelProjectDependencyListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @NonNullApi
    @EventScope(Scope.Build.class)
    public interface ToolingModelProjectDependencyListener {
    
        /**
         * Notified when model builders for a {@code consumer} project requests an intermediate model of some other {@code target} project.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top