Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 467 for notified (0.21 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProgressListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * A listener which is notified as some long running operation makes progress.
     * @since 1.0-milestone-3
     */
    public interface ProgressListener {
        /**
         * Called when the progress status changes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1001 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/SingleFirePendingChangesListener.java

            if (!seenChanges) {
                LOGGER.debug("notifying pending changes");
                delegate.onPendingChanges();
                seenChanges = true;
            } else {
                LOGGER.debug("already notified");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginService.java

         *
         * It expects to receive notifications about all operations from the very start of the build.
         */
        BuildOperationNotificationListener getBuildOperationNotificationListener();
    
        /**
         * Notified when the build invocation has finished by Gradle.
         */
        GradleEnterprisePluginEndOfBuildListener getEndOfBuildListener();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/eob/BuildScanEndOfBuildNotifier.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.eob;
    
    import javax.annotation.Nullable;
    
    /**
     * Used by the scan plugin to register a listener to be notified about the build finishing.
     */
    public interface BuildScanEndOfBuildNotifier {
    
        interface BuildResult {
            @Nullable
            Throwable getFailure();
        }
    
        interface BuildScanResult {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top