Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,146 for whereIs (0.12 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. 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)
  6. 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)
  7. 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)
  8. docs/en/docs/advanced/security/http-basic-auth.md

        ...
    ```
    
    But right at the moment Python compares the first `j` in `johndoe` to the first `s` in `stanleyjobson`, it will return `False`, because it already knows that those two strings are not the same, thinking that "there's no need to waste more computation comparing the rest of the letters". And your application will say "Incorrect username or password".
    
    But then the attackers try with username `stanleyjobsox` and password `love123`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

    // FunctionDef corresponds to a single ConcreteFunction.
    // 2. A tf.function can take arbitrary python inputs, whereas the FunctionDef
    // only accepts tensors.
    // 3. A tf.function is a closure that can contain captured inputs, whereas
    // FunctionDefs loaded from SavedModels are "functional" (all inputs are
    // explicitly passed as arguments).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. docs/features/connections.md

     5. It sends the HTTP request and reads the response.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top