Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for modcache (0.23 sec)

  1. src/cmd/go/testdata/script/mod_sum_issue56222.txt

    stdout 1.18
    
    
    # Even at go 1.20 or earlier, 'go mod tidy' shouldn't need go.mod files or
    # checksums that it won't record.
    
    go mod tidy -go=1.20
    go clean -modcache  # Remove checksums from the module cache, so that only go.sum is used.
    
    # Issue 60667: 'go list' without -mod=mod shouldn't report the checksums as
    # dirty either.
    go list -m -u all
    
    env OLDSUMDB=$GOSUMDB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 13:58:58 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download.txt

    # requirements are inconsistent.)
    
    rm go.sum
    cp go.mod.orig go.mod
    go mod edit -go=1.17
    cp go.mod.update go.mod.go117
    go mod edit -go=1.17 go.mod.go117
    
    go clean -modcache
    go mod download
    cmp go.mod go.mod.go117
    
    go list -e -m all
    stdout '^rsc.io/quote v1.5.2$'
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    stdout '^rsc.io/sampler v1.3.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/sumdb.go

    	}
    	return f.Close()
    }
    
    // ReadCache reads cached lookups or tiles from
    // GOPATH/pkg/mod/cache/download/sumdb,
    // which will be deleted by "go clean -modcache".
    func (*dbClient) ReadCache(file string) ([]byte, error) {
    	targ := filepath.Join(cfg.GOMODCACHE, "cache/download/sumdb", file)
    	data, err := lockedfile.Read(targ)
    	// lockedfile.Write does not atomically create the file with contents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java

     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
        <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data);
    
        <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
        <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data);
    
        <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tools/go-compile-verbose

    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    case "$ls" in
      link)
        log "${ls}\t$(basename ${2})" ;;
      compile)
        f=${@: -1}
        if [[ "$f" =~ "$GMODCACHE" ]]; then
          base="${f/"$GMODCACHE"\//}"
          mod="$(<<< "$base" cut -d@ -f1)"
          rest="$(<<< "$base" cut -d@ -f2 | cut -d/ -f2-)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/pod_cache.go

    Ben Leggett <******@****.***> 1717175891 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue59709.dir/dcache.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dcache
    
    import (
    	"./aconfig"
    	"./bresource"
    	"./cmem"
    )
    
    type Module struct {
    	cfg  *aconfig.Config
    	err  error
    	last any
    }
    
    //go:noinline
    func TD() {
    }
    
    func (m *Module) Configure(x string) error {
    	if m.err != nil {
    		return m.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 21:04:28 UTC 2023
    - 626 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_cache_dir.txt

    env GO111MODULE=on
    
    # Go should reject relative paths in GOMODCACHE environment.
    
    env GOMODCACHE="~/test"
    ! go install example.com/tools/cmd/hello@latest
    stderr 'must be absolute path'
    
    env GOMODCACHE="./test"
    ! go install example.com/tools/cmd/hello@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 289 bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ModelCacheFactory.java

     * under the License.
     */
    package org.apache.maven.repository.internal;
    
    import org.apache.maven.model.building.ModelCache;
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Factory for {@link ModelCache} objects.
     */
    public interface ModelCacheFactory {
    
        ModelCache createCache(RepositorySystemSession session);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top