Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for immediatetly (0.23 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

        /**
         * Runs the given {@link Factory} while the specified locks are released and the given new lock is acquired. On completion,
         * the new lock is released and the old locks reacquired.
         * If a lock cannot be immediately (re)acquired, the current worker lease will be released and the method will block until the locks are (re)acquired.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionListener.java

    @EventScope(Scope.Build.class)
    public interface TransformExecutionListener {
    
        /**
         * This method is called immediately before a transform is executed.
         */
        void beforeTransformExecution(Describable transform, Describable subject);
    
        /**
         * This method is call immediately after a transform has been executed.
         */
        void afterTransformExecution(Describable transform, Describable subject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolutionListener.java

    public interface DependencyResolutionListener {
        /**
         * This method is called immediately before a set of dependencies are resolved.
         *
         * @param dependencies The set of dependencies to be resolved.
         */
        void beforeResolve(ResolvableDependencies dependencies);
    
        /**
         * This method is called immediately after a set of dependencies are resolved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     * and {@link BuildFeatures#getIsolatedProjects() Isolated Projects}.
     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
         * @param action The action to execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskActionListener.java

    @Deprecated
    @DeprecatedInGradleScope
    public interface TaskActionListener {
        /**
         * This method is called immediately before the task starts performing its actions.
         *
         * @param task The task which is to perform some actions.
         */
        void beforeActions(Task task);
    
        /**
         * This method is called immediately after the task has completed performing its actions.
         *
    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. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskListenerInternal.java

    @EventScope(Scope.Build.class)
    public interface TaskListenerInternal {
        /**
         * This method is called immediately before a task is executed.
         *
         * @param taskIdentity The identity of the task about to be executed. Never null.
         */
        void beforeExecute(TaskIdentity<?> taskIdentity);
    
        /**
         * This method is call immediately after a task has been executed. It is always called, regardless of whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/RootBuildLifecycleListener.java

    @EventScope(Scope.BuildTree.class)
    @StatefulListener
    public interface RootBuildLifecycleListener {
        /**
         * Called at the start of the root build, immediately after the creation of the root build services.
         */
        void afterStart();
    
        /**
         * Called at the completion of the root build, immediately before destruction of the root build services.
         */
        void beforeComplete();
    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. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionListener.java

    @Deprecated
    @DeprecatedInGradleScope
    public interface TaskExecutionListener {
        /**
         * This method is called immediately before a task is executed.
         *
         * @param task The task about to be executed. Never null.
         */
        void beforeExecute(Task task);
    
        /**
         * This method is called immediately after a task has been executed. It is always called, regardless of whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

         * <p>May be called by any thread. This method returns immediately and does not block to wait for any currently running or pending calls to {@link #update(Function)} to complete.
         */
        T get() throws IllegalStateException;
    
        /**
         * Returns the current value, returning {@code null} if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

        /**
         * Called at the start of the session, immediately after initializing the session services.
         *
         * This method is called before the root build operation has started, so implementations should not perform any expensive work
         * and should not run any user code.
         */
        default void afterStart() {
        }
    
        /**
         * Called at the completion of the session, immediately prior to tearing down the session services.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top