Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 598 for notified (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

            // However, it is not always known whether a dependency will be scheduled or not when it is added here.
            // For example, the dependency may later be filtered from the graph and this set is never notified that it is complete
            // This lifecycle could be simplified and allow the dependencies to be discarded at this point
            pruned = false;
            waitingFor.add(node);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope.Global;
    import org.gradle.launcher.daemon.context.DaemonConnectDetails;
    
    /**
     * Notified when a daemon is started.
     */
    @EventScope(Global.class)
    public interface DaemonStartListener {
        void daemonStarted(DaemonConnectDetails daemonInfo);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1006 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top