Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 192 for isValidate (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                if (invalid) {
                    consumer.invalidate()
                } else {
                    consumedBy.add(consumer)
                }
            }
    
            fun invalidate() {
                if (invalid) {
                    return
                }
                invalid = true
                for (consumer in consumedBy) {
                    consumer.invalidate()
                }
                consumedBy.clear()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

         */
        Optional<FileSystemLocationSnapshot> read(String location, SnapshottingFilter filter);
    
        /**
         * Invalidate the given locations as they are about to be updated.
         */
        void invalidate(Iterable<String> locations);
    
        /**
         * Runs an action which potentially writes to the given locations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            removedSnapshots.empty
            addedSnapshots.empty
        }
    
        def "invalidate removes the node"() {
            expect:
            initialRoot.invalidate(childAbsolutePath("some/child"), CASE_SENSITIVE, changeListener) == Optional.empty()
            removedSnapshots == [initialRoot]
            addedSnapshots.empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/AbstractCache.java

      }
    
      @Override
      public void invalidate(Object key) {
        throw new UnsupportedOperationException();
      }
    
      /** @since 11.0 */
      @Override
      // For discussion of <? extends Object>, see getAllPresent.
      public void invalidateAll(Iterable<? extends Object> keys) {
        for (Object key : keys) {
          invalidate(key);
        }
      }
    
      @Override
      public void invalidateAll() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubeletconfig/util/files/files.go

    	for name := range files {
    		// invalidate empty names
    		if name == "" {
    			return "", fmt.Errorf("invalid file key: must not be empty: %q", name)
    		}
    		// invalidate: foo/bar and /bar
    		if name != filepath.Base(name) {
    			return "", fmt.Errorf("invalid file key %q, only base names are allowed", name)
    		}
    		// invalidate `.` and `..`
    		if name == "." || name == ".." {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/ConditionalInvalidation.java

     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection;
    
    import java.util.function.Predicate;
    
    /**
     * A feature of a cache-like storage that provides an ability to invalidate the items matching a predicate.
     * @param <T> the type of the stored items.
     */
    public interface ConditionalInvalidation<T> {
        /**
         * Instructs the cache to drop the stored items matching the predicate.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/ForwardingCache.java

        delegate().put(key, value);
      }
    
      /** @since 12.0 */
      @Override
      public void putAll(Map<? extends K, ? extends V> m) {
        delegate().putAll(m);
      }
    
      @Override
      public void invalidate(Object key) {
        delegate().invalidate(key);
      }
    
      /** @since 11.0 */
      @Override
      // For discussion of <? extends Object>, see getAllPresent.
      public void invalidateAll(Iterable<? extends Object> keys) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/ForwardingCache.java

        delegate().put(key, value);
      }
    
      /** @since 12.0 */
      @Override
      public void putAll(Map<? extends K, ? extends V> m) {
        delegate().putAll(m);
      }
    
      @Override
      public void invalidate(Object key) {
        delegate().invalidate(key);
      }
    
      /** @since 11.0 */
      @Override
      // For discussion of <? extends Object>, see getAllPresent.
      public void invalidateAll(Iterable<? extends Object> keys) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/error/badRequest.jsp

    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/search.js')}"></script>
    </body>
    </html>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

                ));
        }
    
        @Override
        public void invalidate(Iterable<String> locations) {
            writeListener.locationsWritten(locations);
            virtualFileSystem.invalidate(locations);
        }
    
        @Override
        public void write(Iterable<String> locations, IoRunnable action) throws IOException {
            invalidate(locations);
            action.run();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top