Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writeDiskCache (0.12 sec)

  1. src/cmd/go/internal/modfetch/cache.go

    	if err != nil {
    		return err
    	}
    	return writeDiskCache(ctx, file, js)
    }
    
    // writeDiskGoMod writes a go.mod cache entry.
    // The file name must have been returned by a previous call to readDiskGoMod.
    func writeDiskGoMod(ctx context.Context, file string, text []byte) error {
    	return writeDiskCache(ctx, file, text)
    }
    
    // writeDiskCache is the generic "write to a cache file" implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top