Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for disks (0.06 sec)

  1. src/cmd/go/internal/modload/load.go

    // 1.11–1.15, but it will be possible in Go 1.16+.)
    //
    // Loading proceeds from the roots, using a parallel work-queue with a limit on
    // the amount of active work (to avoid saturating disks, CPU cores, and/or
    // network connections). Each package is added to the queue the first time it is
    // imported by another package. When we have finished identifying the imports of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

                            if (isUnix()) {
                                sh "rm -rvf $WORK_DIR/dists $WORK_DIR/it-local-repo"
                            } else {
                                bat "if exist it-local-repo rmdir /s /q it-local-repo"
                                bat "if exist dists         rmdir /s /q dists"
                            }
                            dir('dists') {
                              unstash 'maven-dist-s390x'
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240529002035+0000-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 280 bytes
    - Viewed (0)
  4. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt

            // Remove old distributions used by wrapper that we're unlikely to ever require again
            fileSystemOperations.removeOldVersionsFromDir(workerDir.dir("wrapper/dists"), expireDistributionCache, "gradle-", "-bin")
            fileSystemOperations.delete {
                delete(workerDir.dir("wrapper/dists/dist"))
            }
    
            // Remove caches that weren't multi-process safe and may be corrupt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_overlay.txt

    # go.work in overlay, but not on disk.
    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    ! stdout example.com/c
    
    # control case for go.work on disk and in overlay:
    # go.work is on disk but not in overlay.
    cp go.work.non-overlay go.work
    go list -m
    stdout example.com/a
    stdout example.com/b
    stdout example.com/c
    
    # go.work on disk and in overlay.
    go list -overlay=overlay.json -m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
         * Invoked when some locations on disk have been changed or are about to be changed.
         * This happens for example just before and after the task actions are executed or the outputs are loaded from the cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. architecture/standards/0002-avoid-using-java-serialization.md

    - **Security:**
    Java serialization poses security risks, especially related to deserialization vulnerabilities.
    
    - **Version Compatibility:**
    With Java serialization, even minor changes to a class (like adding a field) can break compatibility.
    
    - **Cross-Language Compatibility:**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	return "/" + tile.Path()
    }
    
    // readTile reads a single tile, either from the on-disk cache or the server.
    func (c *Client) readTile(tile tlog.Tile) ([]byte, error) {
    	type cached struct {
    		data []byte
    		err  error
    	}
    
    	result := c.tileCache.Do(tile, func() interface{} {
    		// Try the requested tile in on-disk cache.
    		data, err := c.ops.ReadCache(c.tileCacheKey(tile))
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/cache.go

    	}
    
    	// Stat should have populated the disk cache for us.
    	file, err := CachePath(ctx, module.Version{Path: path, Version: version}, "info")
    	if err != nil {
    		return nil, "", err
    	}
    	return info, file, nil
    }
    
    // GoMod is like Lookup(ctx, path).GoMod(rev) but avoids the
    // repository path resolution in Lookup if the result is
    // already cached on local disk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/verify.go

    		}
    	}
    	if ok {
    		fmt.Printf("all modules verified\n")
    	}
    }
    
    func verifyMod(ctx context.Context, mod module.Version) []error {
    	if gover.IsToolchain(mod.Path) {
    		// "go" and "toolchain" have no disk footprint; nothing to verify.
    		return nil
    	}
    	if modload.MainModules.Contains(mod.Path) {
    		return nil
    	}
    	var errs []error
    	zip, zipErr := modfetch.CachePath(ctx, mod, "zip")
    	if zipErr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top