Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for outOfDate (0.18 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

                }
            }
        }
    
        ExecutionEngine.Result outOfDate(UnitOfWork unitOfWork, String... expectedReasons) {
            return outOfDate(unitOfWork, ImmutableList.<String> copyOf(expectedReasons))
        }
    
        ExecutionEngine.Result outOfDate(UnitOfWork unitOfWork, List<String> expectedReasons) {
            def result = execute(unitOfWork)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/deployment/internal/GateControllingDeployment.java

            Status status = delegate.status();
            if (!status.hasChanged()) {
                gateKeeper.close();
            }
            return status;
        }
    
        @Override
        public void outOfDate() {
            delegate.outOfDate();
        }
    
        @Override
        public void upToDate(@Nullable Throwable failure) {
            delegate.upToDate(failure);
            gateKeeper.close();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/deployment/internal/SimpleBlockingDeployment.java

                }
                return delegate.status();
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void outOfDate() {
            lock.lock();
            try {
                delegate.outOfDate();
                outOfDate = true;
                upToDate.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/InMemoryDecoratedCache.java

            boolean outOfDate = false;
            FileLock.State previousState = fileLockStateReference.get();
            if (previousState == null) {
                outOfDate = true;
            } else if (currentCacheState.hasBeenUpdatedSince(previousState)) {
                LOG.info("Invalidating in-memory cache of {}", cacheId);
                outOfDate = true;
            }
            if (outOfDate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlan.java

         *
         * @return True if the grammar generation is out of date (needs regen); false otherwise.
         */
        public boolean isOutOfDate() {
            return outOfDate;
        }
    
        /**
         * Marks the plan as out of date.
         */
        void markOutOfDate() {
            this.outOfDate = true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/RegisteredDeployment.java

            }
        }
    
        public DeploymentInternal getDeployment() {
            return delegate;
        }
    
        public void outOfDate() {
            delegate.outOfDate();
        }
    
        public void upToDate(@Nullable Throwable failure) {
            delegate.upToDate(failure);
            restart();
        }
    
        public DeploymentHandle getHandle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentInternal.java

     * limitations under the License.
     */
    
    package org.gradle.deployment.internal;
    
    import javax.annotation.Nullable;
    
    public interface DeploymentInternal extends Deployment {
        void outOfDate();
        void upToDate(@Nullable Throwable failure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 822 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.incremental.IncrementalTaskInputs.xml

        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>outOfDate</td></tr>
                <tr><td>removed</td></tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 566 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

                            handle.start(deployment.getDeployment());
                            if (pendingChanges.hasRemainingChanges()) {
                                deployment.outOfDate();
                            }
                            deployments.put(name, deployment);
                            return handle;
                        }
                    });
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/deployment/internal/OutOfDateTrackingDeployment.java

        public synchronized Status status() {
            Status result = new DefaultDeploymentStatus(changed, failure);
            changed = false;
            return result;
        }
    
        @Override
        public synchronized void outOfDate() {
            changed = true;
            failure = null;
        }
    
        @Override
        public synchronized void upToDate(@Nullable Throwable failure) {
            this.failure = failure;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top