Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for nips (0.09 sec)

  1. src/cmd/dist/build.go

    	rebuildall bool
    	noOpt      bool
    	isRelease  bool
    
    	vflag int // verbosity
    )
    
    // The known architectures.
    var okgoarch = []string{
    	"386",
    	"amd64",
    	"arm",
    	"arm64",
    	"loong64",
    	"mips",
    	"mipsle",
    	"mips64",
    	"mips64le",
    	"ppc64",
    	"ppc64le",
    	"riscv64",
    	"s390x",
    	"sparc64",
    	"wasm",
    }
    
    // The known operating systems.
    var okgoos = []string{
    	"darwin",
    	"dragonfly",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		},
    		sys.AMD64, sys.ARM64, sys.Loong64, sys.MIPS, sys.MIPS64, sys.PPC64, sys.RISCV64, sys.S390X)
    
    	addF("internal/runtime/atomic", "Store",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			s.vars[memVar] = s.newValue3(ssa.OpAtomicStore32, types.TypeMem, args[0], args[1], s.mem())
    			return nil
    		},
    		sys.AMD64, sys.ARM64, sys.Loong64, sys.MIPS, sys.MIPS64, sys.PPC64, sys.RISCV64, sys.S390X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    	- For GOARCH=arm64, GOARM64=v8.{0-9} and v9.{0-5}
    	  correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags.
    	- For GOARCH=mips or mipsle,
    	  GOMIPS=hardfloat and softfloat
    	  correspond to the mips.hardfloat and mips.softfloat
    	  (or mipsle.hardfloat and mipsle.softfloat) feature build tags.
    	- For GOARCH=mips64 or mips64le,
    	  GOMIPS64=hardfloat and softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //   - For GOARCH=arm64, GOARM64=v8.{0-9} and v9.{0-5}
    //     correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags.
    //   - For GOARCH=mips or mipsle,
    //     GOMIPS=hardfloat and softfloat
    //     correspond to the mips.hardfloat and mips.softfloat
    //     (or mipsle.hardfloat and mipsle.softfloat) feature build tags.
    //   - For GOARCH=mips64 or mips64le,
    //     GOMIPS64=hardfloat and softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    		[]byte("\xc0a\xc0"),
    		[]byte("\xc0a\xc0cd"),
    		[]byte("ab\xc0a\xc0")},
    	{not(isValidRune), "\xc0a\xc0",
    		[]byte("a"),
    		[]byte("a\xc0"),
    		[]byte("\xc0a")},
    	// The nils returned by TrimLeftFunc are odd behavior, but we need
    	// to preserve backwards compatibility.
    	{isSpace, "",
    		nil,
    		nil,
    		[]byte("")},
    	{isSpace, " ",
    		nil,
    		nil,
    		[]byte("")},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	case "mips64", "mips64le":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    		if gomips == "hardfloat" {
    			return []string{"-mabi=32", "-mfp32", "-mhard-float", "-mno-odd-spreg"}
    		} else if gomips == "softfloat" {
    			return []string{"-mabi=32", "-msoft-float"}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/cmd/go/internal/telemetrystats/telemetrystats.go

    		telemetry.Inc("go/platform/target/goamd64:" + cfg.GOAMD64)
    	case "arm":
    		telemetry.Inc("go/platform/target/goarm:" + cfg.GOARM)
    	case "arm64":
    		telemetry.Inc("go/platform/target/goarm64:" + cfg.GOARM64)
    	case "mips":
    		telemetry.Inc("go/platform/target/gomips:" + cfg.GOMIPS)
    	case "ppc64":
    		telemetry.Inc("go/platform/target/goppc64:" + cfg.GOPPC64)
    	case "riscv64":
    		telemetry.Inc("go/platform/target/goriscv64:" + cfg.GORISCV64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/verify.go

    	if len(args) != 0 {
    		// NOTE(rsc): Could take a module pattern.
    		base.Fatalf("go: verify takes no arguments")
    	}
    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	// Only verify up to GOMAXPROCS zips at once.
    	type token struct{}
    	sem := make(chan token, runtime.GOMAXPROCS(0))
    
    	mg, err := modload.LoadModGraph(ctx, "")
    	if err != nil {
    		base.Fatal(err)
    	}
    	mods := mg.BuildList()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/inl_test.go

    		want["runtime/internal/sys"] = append(want["runtime/internal/sys"], "Bswap32")
    	}
    	if runtime.GOARCH == "amd64" || runtime.GOARCH == "arm64" || runtime.GOARCH == "loong64" || runtime.GOARCH == "mips" || runtime.GOARCH == "mips64" || runtime.GOARCH == "ppc64" || runtime.GOARCH == "riscv64" || runtime.GOARCH == "s390x" {
    		// internal/runtime/atomic.Loaduintptr is only intrinsified on these platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/infer.go

    				// only parameter type it can possibly match against is a *TypeParam.
    				// Thus, for untyped arguments we only need to look at parameter types
    				// that are single type parameters.
    				// Also, untyped nils don't have a default type and can be ignored.
    				// Finally, it's not possible to have an alias type denoting a type
    				// parameter declared by the current function and use it in the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top