Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Marche (1.13 sec)

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

    // Package cache implements a build artifact cache.
    package cache
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"encoding/hex"
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"time"
    
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/mmap"
    )
    
    // An ActionID is a cache action key, the hash of a complete description of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/cache.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/internal/obj"
    	"sort"
    )
    
    // A Cache holds reusable compiler state.
    // It is intended to be re-used for multiple Func compilations.
    type Cache struct {
    	// Storage for low-numbered values and blocks.
    	values [2000]Value
    	blocks [200]Block
    	locs   [2000]Location
    
    	// Reusable stackAllocState.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/cache.go

    		return nil, err
    	}
    
    	path := filepath.Join(cfg.GOMODCACHE, "cache", "lock")
    	if err := os.MkdirAll(filepath.Dir(path), 0777); err != nil {
    		return nil, fmt.Errorf("failed to create cache directory: %w", err)
    	}
    
    	return lockedfile.MutexAt(path).Lock()
    }
    
    // A cachingRepo is a cache around an underlying Repo,
    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