Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,777 for whereIs (0.34 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStoreTest.groovy

            result == [r1, r2, r3] as Set
        }
    
        def "whereIs falls back to the read store"() {
            def missing = Stub(File) {
                exists() >> false
            }
            def found = Stub(File)
    
            1 * writeStore.whereIs(key, "checksum") >> { missing }
            1 * readStore.whereIs(key, "checksum") >> { found }
    
            expect:
            twoStageStore.whereIs(key, "checksum") == found
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStore.java

            this.fileAccessTracker = new DelegatingFileAccessTracker();
        }
    
        @Override
        public File whereIs(ModuleComponentArtifactIdentifier artifactId, String checksum) {
            File file = writableStore.whereIs(artifactId, checksum);
            if (file.exists()) {
                return file;
            }
            return readOnlyStore.whereIs(artifactId, checksum);
        }
    
        @Override
        public FileAccessTracker getFileAccessTracker() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/filestore/ArtifactIdentifierFileStore.java

    import java.io.File;
    
    public interface ArtifactIdentifierFileStore extends FileStore<ModuleComponentArtifactIdentifier>, FileStoreSearcher<ModuleComponentArtifactIdentifier> {
        File whereIs(ModuleComponentArtifactIdentifier artifactId, String checksum);
    
        FileAccessTracker getFileAccessTracker();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMetadataFileSourceCodec.java

            ModuleComponentArtifactIdentifier artifactId = createArtifactId(group, module, version, name);
            HashCode hashCode = HashCode.fromBytes(sha1);
            File metadataFile = fileStore.whereIs(artifactId, hashCode.toString());
            return new DefaultMetadataFileSource(
                artifactId,
                metadataFile,
                hashCode);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/resource/local/GroupedAndNamedUniqueFileStore.java

            return checksumService.sha1(contentFile).toString();
        }
    
        private File getTempFile() {
            return temporaryFileProvider.createTemporaryFile("filestore", "bin");
        }
    
        public File whereIs(K key, String checksum) {
            return new File(baseDir, toPath(key, checksum));
        }
    
        @Override
        public LocallyAvailableResource add(K key, Action<File> addAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    d|sync|tail|tar|tee|test|time|timeout|times|touch|top|traceroute|trap|tr|tsort|tty|type|ulimit|umask|umount|unalias|uname|unexpand|uniq|units|unrar|unshar|uptime|useradd|userdel|usermod|users|uuencode|uudecode|v|vdir|vi|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yes|zip)(?=$|[\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&])(?:let|:|\.|if|then|else|elif|fi|for|break|continue|while|in|case|function|select|do|done|until|echo|exit|return|set|declare)(?=$|[\s;|&])/,l...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. clause/where.go

    	OrWithSpace  = " OR "
    )
    
    // Where where clause
    type Where struct {
    	Exprs []Expression
    }
    
    // Name where clause name
    func (where Where) Name() string {
    	return "WHERE"
    }
    
    // Build build where clause
    func (where Where) Build(builder Builder) {
    	if len(where.Exprs) == 1 {
    		if andCondition, ok := where.Exprs[0].(AndConditions); ok {
    			where.Exprs = andCondition.Exprs
    		}
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Apr 25 12:22:53 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cache_vet.txt

    go vet os/user
    
    # Check that second vet reuses cgo-derived inputs.
    # The first command could be build instead of vet,
    # except that if the cache is empty and there's a net.a
    # in GOROOT/pkg, the build will not bother to regenerate
    # and cache the cgo outputs, whereas vet always will.
    
    go vet -x os/user
    ! stderr '^(clang|gcc)'  # should not have run compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 721 bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    Again, please try your best to be kind. 🤗
    
    ---
    
    Here's what to keep in mind and how to review a pull request:
    
    ### Understand the problem
    
    * First, make sure you **understand the problem** that the pull request is trying to solve. It might have a longer discussion in a GitHub Discussion or issue.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/runtime/tracestatus.go

    			// in _Pgcstop, but we model it as running in the tracer.
    			status = traceProcRunning
    		}
    	case _Prunning:
    		status = traceProcRunning
    		// There's a short window wherein the goroutine may have entered _Gsyscall
    		// but it still owns the P (it's not in _Psyscall yet). The goroutine entering
    		// _Gsyscall is the tracer's signal that the P its bound to is also in a syscall,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top