Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for modsw (0.04 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"CREQV",
    	"CRNAND",
    	"CRNOR",
    	"CROR",
    	"CRORN",
    	"CRXOR",
    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    	"MODUW",
    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    	"EXTSBCC",
    	"EXTSH",
    	"EXTSHCC",
    	"FABS",
    	"FABSCC",
    	"FADD",
    	"FADDCC",
    	"FADDS",
    	"FADDSCC",
    	"FCMPO",
    	"FCMPU",
    	"FCTIW",
    	"FCTIWCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/list.go

    				continue
    			}
    			if v != "none" {
    				mods = append(mods, moduleInfo(ctx, rs, module.Version{Path: arg, Version: v}, mode, reuse))
    			} else if cfg.BuildMod == "vendor" {
    				// In vendor mode, we can't determine whether a missing module is “a
    				// known dependency” because the module graph is incomplete.
    				// Give a more explicit error message.
    				mods = append(mods, &modinfo.ModulePublic{
    					Path:  arg,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_indirect_main.txt

    # dependencies through older versions of the main module.
    
    go list -f '{{with .Module}}{{.Path}}{{with .Version}} {{.}}{{end}}{{end}}' all
    cmp stdout pkgmods.txt
    
    go list -m all
    cmp stdout mods.txt
    
    go mod graph
    cmp stdout graph.txt
    
    -- go.mod --
    module golang.org/issue/root
    
    go 1.12
    
    replace (
    	golang.org/issue/mirror v0.1.0 => ./mirror-v0.1.0
    	golang.org/issue/pkg v0.1.0 => ./pkg-v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/verify.go

    	sem := make(chan token, runtime.GOMAXPROCS(0))
    
    	mg, err := modload.LoadModGraph(ctx, "")
    	if err != nil {
    		base.Fatal(err)
    	}
    	mods := mg.BuildList()
    	// Use a slice of result channels, so that the output is deterministic.
    	errsChans := make([]<-chan []error, len(mods))
    
    	for i, mod := range mods {
    		sem <- token{}
    		errsc := make(chan []error, 1)
    		errsChans[i] = errsc
    		mod := mod // use a copy to avoid data races
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/why.go

    	}
    
    	if *whyM {
    		for _, arg := range args {
    			if strings.Contains(arg, "@") {
    				base.Fatalf("go: %s: 'go mod why' requires a module path, not a version query", arg)
    			}
    		}
    
    		mods, err := modload.ListModules(ctx, args, 0, "")
    		if err != nil {
    			base.Fatal(err)
    		}
    
    		byModule := make(map[string][]string)
    		_, pkgs := modload.LoadPackages(ctx, loadOpts, "all")
    		for _, path := range pkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/workcmd/sync.go

    		// TODO(#57001): Do we need a toolchain.SwitchOrFatal here,
    		// and do we need to pass a toolchain.Switcher in LoadPackages?
    		// If so, think about saving the WriteGoMods for after the loop,
    		// so we don't write some go.mods with the "before" toolchain
    		// and others with the "after" toolchain. If nothing else, that
    		// discrepancy could show up in auto-recorded toolchain lines.
    		changed, err := modload.EditBuildList(ctx, nil, mustSelectFor[m])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/anames.go

    package s390x
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ADD",
    	"ADDC",
    	"ADDE",
    	"ADDW",
    	"DIVW",
    	"DIVWU",
    	"DIVD",
    	"DIVDU",
    	"MODW",
    	"MODWU",
    	"MODD",
    	"MODDU",
    	"MULLW",
    	"MULLD",
    	"MULHD",
    	"MULHDU",
    	"MLGR",
    	"SUB",
    	"SUBC",
    	"SUBV",
    	"SUBE",
    	"SUBW",
    	"NEG",
    	"NEGW",
    	"MOVWBR",
    	"MOVB",
    	"MOVBZ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top