Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for Volver (0.65 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    			if e&varkill != 0 {
    				be.varkill.Set(pos)
    				be.uevar.Unset(pos)
    			}
    			if e&uevar != 0 {
    				be.uevar.Set(pos)
    			}
    		}
    	}
    }
    
    // Solve the liveness dataflow equations.
    func (lv *liveness) solve() {
    	// These temporary bitvectors exist to avoid successive allocations and
    	// frees within the loop.
    	nvars := int32(len(lv.vars))
    	newlivein := bitvec.New(nvars)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    			}
    			coverFile = strings.TrimSuffix(coverFile, ".go") + ".cover.go"
    			if cfg.Experiment.CoverageRedesign {
    				infiles = append(infiles, sourceFile)
    				outfiles = append(outfiles, coverFile)
    			} else {
    				cover := p.Internal.CoverVars[key]
    				if cover == nil {
    					continue // Not covering this file.
    				}
    				if err := b.cover(a, coverFile, sourceFile, cover.Var); err != nil {
    					return err
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/test.go

    }
    
    {{if .Cover}}
    
    // Only updated by init functions, so no need for atomicity.
    var (
    	coverCounters = make(map[string][]uint32)
    	coverBlocks = make(map[string][]testing.CoverBlock)
    )
    
    func init() {
    	{{range $i, $p := .Cover.Vars}}
    	{{range $file, $cover := $p.Vars}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/switch.go

    	// Failing that we'll take the latest release.
    	latest := ""
    	for i := len(list) - 1; i >= 0; i-- {
    		v := list[i]
    		if gover.Compare(v, need) < 0 {
    			break
    		}
    		if gover.Lang(latest) == gover.Lang(v) {
    			continue
    		}
    		newer := latest
    		latest = v
    		if newer != "" && !gover.IsPrerelease(newer) {
    			// latest is the last patch release of Go 1.X, and we saw a non-prerelease of Go 1.(X+1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/tidy.go

    	// request that their test dependencies be included.
    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	goVersion := tidyGo.String()
    	if goVersion != "" && gover.Compare(gover.Local(), goVersion) < 0 {
    		toolchain.SwitchOrFatal(ctx, &gover.TooNewError{
    			What:      "-go flag",
    			GoVersion: goVersion,
    		})
    	}
    
    	modload.LoadPackages(ctx, modload.PackageOpts{
    		TidyGoVersion:            tidyGo.String(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/cache.go

    }
    
    func CachePath(ctx context.Context, m module.Version, suffix string) (string, error) {
    	if gover.IsToolchain(m.Path) {
    		return "", ErrToolchain
    	}
    	dir, err := cacheDir(ctx, m.Path)
    	if err != nil {
    		return "", err
    	}
    	if !gover.ModIsValid(m.Path, m.Version) {
    		return "", fmt.Errorf("non-semver module version %q", m.Version)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/cover/cfg_test.go

    	}
    }
    
    func TestCoverOnPackageWithNoTestFiles(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    
    	// For packages with no test files, the new "go test -cover"
    	// strategy is to run cmd/cover on the package in a special
    	// "EmitMetaFile" mode. When running in this mode, cmd/cover walks
    	// the package doing instrumentation, but when finished, instead of
    	// writing out instrumented source files, it directly emits a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/godebug.go

    // license that can be found in the LICENSE file.
    
    package load
    
    import (
    	"errors"
    	"fmt"
    	"go/build"
    	"internal/godebugs"
    	"sort"
    	"strconv"
    	"strings"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modload"
    )
    
    var ErrNotGoDebug = errors.New("not //go:debug line")
    
    func ParseGoDebug(text string) (key, value string, err error) {
    	if !strings.HasPrefix(text, "//go:debug") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    // Package tar implements access to tar archives.
    //
    // Tape archives (tar) are a file format for storing a sequence of files that
    // can be read and written in a streaming manner.
    // This package aims to cover most variations of the format,
    // including those produced by GNU and BSD tar tools.
    package tar
    
    import (
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io/fs"
    	"math"
    	"path"
    	"reflect"
    	"strconv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    	if err != nil {
    		return err
    	}
    
    	if gomod, err := r.code.ReadFile(ctx, rev, filepath.Join(subdir, "go.mod"), codehost.MaxGoMod); err == nil {
    		goVers := gover.GoModLookup(gomod, "go")
    		if gover.Compare(goVers, gover.Local()) > 0 {
    			return &gover.TooNewError{What: r.ModulePath() + "@" + version, GoVersion: goVers}
    		}
    	} else if !errors.Is(err, fs.ErrNotExist) {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top