Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 192 for isValidate (0.18 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

        /**
         * Invalidates part of the node.
         */
        @CheckReturnValue
        Optional<FileSystemNode> invalidate(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, SnapshotHierarchy.NodeDiffListener diffListener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

        abstract protected boolean isSameNodeType(FileSystemNode node)
    
        abstract boolean isAllowEmptyChildren()
    
        def "invalidate child with no common pathToParent has no effect (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            expect:
            initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get() is initialRoot
            removedNodes.empty
            addedNodes.empty
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			runtime.KeepAlive(c.ptr.m)
    			return sum
    		}
    	}
    }
    
    func (c *Counter) invalidate() {
    	for {
    		state := c.state.load()
    		if !state.havePtr() {
    			debugPrintf("invalidate %s: no ptr\n", c.name)
    			return
    		}
    		if c.state.update(&state, state.clearHavePtr()) {
    			debugPrintf("invalidate %s: cleared havePtr\n", c.name)
    			return
    		}
    	}
    }
    
    func (c *Counter) refresh() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/RemovalCause.java

     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum RemovalCause {
      /**
       * The entry was manually removed by the user. This can result from the user invoking {@link
       * Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()}, {@link
       * Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}.
       */
      EXPLICIT {
        @Override
        boolean wasEvicted() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

        interface VfsStorer {
            FileSystemLocationSnapshot store(FileSystemLocationSnapshot snapshot);
        }
    
        /**
         * Removes any information at the absolute paths from the VFS.
         */
        void invalidate(Iterable<String> locations);
    
        /**
         * Removes any information from the VFS.
         */
        void invalidateAll();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/tasks/UpgradedPropertiesMergeTask.kt

        /**
         * Output with all upgraded properties, merged from multiple projects in to one file.
         * This is also used in InstrumentingClasspathFileTransformer to invalidate instrumentation cache on changes. So output must be stable.
         */
        @get:OutputFile
        abstract val upgradedProperties: RegularFileProperty
    
        @TaskAction
        fun mergeUpgradedProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 08:13:17 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            when:
            allowFileSystemAccess(false)
            def subDir = someDir.file("sub")
            snapshot = read(subDir)
            then:
            assertIsDirectorySnapshot(snapshot, subDir)
        }
    
        def "invalidate regular file"() {
            def parentDir = temporaryFolder.file("in/some")
            def someFile = parentDir.file("directory/somefile.txt").createFile()
            when:
            allowFileSystemAccess(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. src/iter/iter.go

    		}
    		// Recover and propagate panics from seq.
    		defer func() {
    			if p := recover(); p != nil {
    				panicValue = p
    			} else if !seqDone {
    				panicValue = goexitPanicValue
    			}
    			done = true // Invalidate iterator
    			race.Release(unsafe.Pointer(&racer))
    		}()
    		seq(yield)
    		var v0 V
    		v, ok = v0, false
    		seqDone = true
    	})
    	next = func() (v1 V, ok1 bool) {
    		race.Write(unsafe.Pointer(&racer)) // detect races
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/AbstractLoadingCache.java

     * {@code get}; {@link #getAllPresent} is implemented in terms of {@code getIfPresent}; {@link
     * #putAll} is implemented in terms of {@link #put}, {@link #invalidateAll(Iterable)} is implemented
     * in terms of {@link #invalidate}. The method {@link #cleanUp} is a no-op. All other methods throw
     * an {@link UnsupportedOperationException}.
     *
     * @author Charles Fry
     * @since 11.0
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

        }
    
        /**
         * The macOS native watcher reports the canonical path for watched paths.
         * That means that we would not invalidate the right locations in the virtual file system on macOS.
         * Therefore, we disable file system watching when we try to watch a directory whose parent is a symlink.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top