Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 467 for notified (0.12 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         * thread-safe. Messages are delivered to the handler by a single thread.
         *
         * <p>A handler instance may also implement {@link org.gradle.internal.dispatch.StreamCompletion}, in which case it will be notified when no further messages will be forwarded to it.
         * This may happen because the peer has signalled that it has finished sending messages, or closes the connection, or crashes. It may also happen when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraph.java

     * #whenReady(groovy.lang.Closure)} or {@link #addTaskExecutionGraphListener(TaskExecutionGraphListener)}.</p>
     */
    public interface TaskExecutionGraph {
        /**
         * <p>Adds a listener to this graph, to be notified when this graph is ready.</p>
         *
         * @param listener The listener to add. Does nothing if this listener has already been added.
         */
        void addTaskExecutionGraphListener(TaskExecutionGraphListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 20:29:51 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

        /**
         * Notify other threads about changes to resource locks.
         */
        void notifyStateChange();
    
        void assertHasStateLock();
    
        /**
         * Adds a listener that is notified when a lock is released. Called while the state lock is held.
         */
        void addLockReleaseListener(Action<ResourceLock> listener);
    
        void removeLockReleaseListener(Action<ResourceLock> listener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

    import org.gradle.internal.DeprecatedInGradleScope;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * <p>A {@code BuildListener} is notified of the major lifecycle events as a build is executed.</p>
     *
     * @see org.gradle.api.invocation.Gradle#addListener(Object)
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface BuildListener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

     *
     * Further modification tracking is implemented with a subscription-based mechanism via [KotlinModificationTopics]. Modification trackers make the most
     * sense when there are many, possibly short-lived objects that need to be notified of a change. In such cases, subscriber management in the
     * message bus adds too much overhead.
     */
    public abstract class KotlinModificationTrackerFactory : KotlinPlatformComponent {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/JavadocUtils.java

            return kind == CallableKindInfo.STATIC_METHOD ? "static method" :
                kind == CallableKindInfo.INSTANCE_METHOD ? "instance method" :
                    kind == CallableKindInfo.AFTER_CONSTRUCTOR ? "constructor (getting notified after it)" :
                        kind == CallableKindInfo.GROOVY_PROPERTY_GETTER ? "Groovy property getter" :
                            kind == CallableKindInfo.GROOVY_PROPERTY_SETTER ? "Groovy property setter" : null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionTest.groovy

        List<Closeable> openedLocks = []
    
        def cleanup() {
            CompositeStoppable.stoppable(openedLocks).add(contentionHandler, contentionHandler2).stop()
        }
    
        def "lock manager is notified while holding an exclusive lock when another lock manager in same process requires lock with mode #lockMode"() {
            given:
            def file = tmpDir.file("lock-file.bin")
            def action = Mock(Consumer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

      }
    
      Status LocalDeviceManager(
          const tensorflow::DeviceMgr** deviceMgrPtr) override {
        // This method returns a null device manager without making an error.
        // Users of this method will be notified since it will have a fake data.
        *deviceMgrPtr = nullptr;
        return OkStatus();
      }
    
      Status Run(const std::vector<std::pair<std::string, Tensor>>& inputs,
                 const std::vector<std::string>& output_names,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccess.java

        private int lockCount;
        private FileLock fileLock;
        private final CacheInitializationAction initAction;
        private FileLockReleasedSignal lockReleaseSignal;
    
        /**
         * Actions are notified when lock is opened or closed. Actions are called while holding state lock, so that no other threads are working with cache while these are running.
         *
         * @param stateLock Lock to hold while mutating state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

     * system.
     *
     * <p>While the methods work with any Object, in general only interfaces should be used as listener types.
     *
     * <p>Implementations are thread-safe: A listener is notified by at most 1 thread at a time, and so do not need to be thread-safe. All listeners
     * of a given type receive events in the same order. Listeners can be added and removed at any time.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top