Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 467 for notified (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

            Class<? extends ValueSource<T, P>> valueSourceType,
            @Nullable Class<P> parametersType,
            @Nullable P parameters
        );
    
        /**
         * The listener that is notified when the value of the {@code ValueSource} is computed. There is no ordering guarantees with the
         * {@link ValueListener#valueObtained(ValueListener.ObtainedValue, ValueSource)}.
         */
        @EventScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/ProgressListener.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 that are executed as part of running a build make progress.
     *
     * @see org.gradle.tooling.LongRunningOperation#addProgressListener(ProgressListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

         * Process the specified file or directory.  If it is a directory, then its contents
         * (but not the directory itself) will be checked with {@link #isAllowed(FileTreeElement, Spec)} and notified to
         * the listener.  If it is a file, the file will be checked and notified.
         */
        public void visitFrom(FileVisitor visitor, File fileOrDirectory, RelativePath path, AtomicBoolean stopFlag) {
            Spec<FileTreeElement> spec = patternSet.getAsSpec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     *
     * There is one global listener for the life of the build runtime.
     * Listeners must be sure to remove themselves if they want to only listen for a single build.
     *
     * Listeners are notified in registration order.
     * Started and progress notifications are emitted in registration order,
     * while finished notifications are emitted in reverse registration order.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/cache/types.go

    	ValidatePlugin(pluginName string, endpoint string, versions []string) error
    	// RegisterPlugin is called so that the plugin can be registered by any
    	// plugin consumer
    	// Error encountered here can still be Notified to the plugin.
    	RegisterPlugin(pluginName, endpoint string, versions []string, pluginClientTimeout *time.Duration) error
    	// DeRegisterPlugin is called once the pluginwatcher observes that the socket has
    	// been deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationMapper.java

        boolean isEnabled(BuildEventSubscriptions subscriptions);
    
        Class<DETAILS> getDetailsType();
    
        /**
         * Returns the trackers that are used by this mapper. If this mapper is enabled, then the trackers should be notified of
         * build operation execution. If this mapper is not enabled, the trackers can be ignored.
         */
        default List<? extends BuildOperationTracker> getTrackers() {
            return Collections.emptyList();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.session;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A listener that is notified when a session is started and completed. No more than one session may be active at any time.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DefaultDaemonScanInfo.java

            return singleRun;
        }
    
        @Override
        public void notifyOnUnhealthy(final Action<? super String> listener) {
            /*
                The semantics of this method are that the given action should be notified if the
                Daemon is going to be terminated at the end of this build.
                It is not a generic outlet for “expiry events”.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildActionExecuter.java

             *
             * <p>If the operation fails, build will fail with the appropriate exception. The handler won't be notified in case of failure.
             *
             * @param buildAction The action to run in the specified build phase.
             * @param handler The handler to supply the result of the given action to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:31:25 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

         * The action will be invoked at-most once during a build.
         * It will only be invoked for the build in which it was registered (i.e. not subsequent builds).
         * Each action provided to each invocation of this message will be notified.
         * <p>
         * The action receives a free-form, human friendly, string describing why the Daemon needs to be shut down.
         */
        void notifyOnUnhealthy(Action<? super String> listener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top