Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Marche (0.2 sec)

  1. src/cmd/api/api_test.go

    			for _, name := range w.stdPackages {
    				pkg, _ := w.import_(name)
    				w.export(pkg)
    			}
    			w.Features()
    		}
    	}
    }
    
    var warmupCache = sync.OnceFunc(func() {
    	// Warm up the import cache in parallel.
    	var wg sync.WaitGroup
    	for _, context := range contexts {
    		context := context
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			_ = NewWalker(context, filepath.Join(testenv.GOROOT(nil), "src"))
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 17:31:12 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    func (p *Package) gccMachine() []string {
    	switch goarch {
    	case "amd64":
    		if goos == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case "arm64":
    		if goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "386":
    		return []string{"-m32"}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390":
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.22.txt

    pkg debug/elf, const R_LARCH_CFA R_LARCH #63725
    pkg debug/elf, const R_LARCH_DELETE = 101 #63725
    pkg debug/elf, const R_LARCH_DELETE R_LARCH #63725
    pkg debug/elf, const R_LARCH_PCREL20_S2 = 103 #63725
    pkg debug/elf, const R_LARCH_PCREL20_S2 R_LARCH #63725
    pkg debug/elf, const R_LARCH_SUB6 = 106 #63725
    pkg debug/elf, const R_LARCH_SUB6 R_LARCH #63725
    pkg debug/elf, const R_LARCH_SUB_ULEB128 = 108 #63725
    pkg debug/elf, const R_LARCH_SUB_ULEB128 R_LARCH #63725
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 20:54:27 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/bytes/bytes.go

    	// is too large we are basically just thrashing the CPU D-cache.
    	// So if the result length is larger than an empirically-found
    	// limit (8KB), we stop growing the source string once the limit
    	// is reached and keep reusing the same source string - that
    	// should therefore be always resident in the L1 cache - until we
    	// have completed the construction of the result.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  5. src/cmd/api/main_test.go

    		ctags["cgo"] = true
    	}
    	for _, tag := range context.BuildTags {
    		ctags[tag] = true
    	}
    	// TODO: ReleaseTags (need to load default)
    	key := dir
    
    	// explicit on GOOS and GOARCH as global cache will use "all" cached packages for
    	// an indirect imported package. See https://github.com/golang/go/issues/21181
    	// for more detail.
    	tags = append(tags, context.GOOS, context.GOARCH)
    	sort.Strings(tags)
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    		"0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000/file.txt",
    		"/home/support/.openoffice.org/3/user/uno_packages/cache/registry/com.sun.star.comp.deployment.executable.PackageRegistryBackend",
    	}
    
    	for i, name := range names {
    		var b bytes.Buffer
    
    		tw := NewWriter(&b)
    		if err := tw.WriteHeader(&Header{
    			Name: name,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
  7. doc/go1.22.html

          Constant <code>R_MIPS_PC32</code> is defined for use with MIPS64 systems.
        </p>
      </dd>
      <dd>
        <p><!-- https://go.dev/issue/63725, CL 537615 -->
          Additional <code>R_LARCH_*</code> constants are defined for use with LoongArch systems.
        </p>
      </dd>
    </dl><!-- debug/elf -->
    
    <dl id="encoding"><dt><a href="/pkg/encoding/">encoding</a></dt>
      <dd>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/00-bug.yml

        attributes:
          label: "Output of `go env` in your module/workspace:"
          placeholder: |
            GO111MODULE=""
            GOARCH="arm64"
            GOBIN="/Users/gopher/go/bin"
            GOCACHE="/Users/gopher/go/cache"
            GOENV="/Users/gopher/Library/Application Support/go/env"
            GOEXE=""
            GOEXPERIMENT=""
            GOFLAGS=""
            GOHOSTARCH="arm64"
            GOHOSTOS="darwin"
            GOINSECURE=""
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/asm.go

    			break
    		} else if p.arch.Family == sys.MIPS || p.arch.Family == sys.MIPS64 {
    			if arch.IsMIPSCMP(op) || arch.IsMIPSMUL(op) {
    				prog.From = a[0]
    				prog.Reg = p.getRegister(prog, op, &a[1])
    				break
    			}
    		} else if p.arch.Family == sys.Loong64 {
    			if arch.IsLoong64CMP(op) {
    				prog.From = a[0]
    				prog.Reg = p.getRegister(prog, op, &a[1])
    				break
    			}
    
    			if arch.IsLoong64RDTIME(op) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  10. doc/godebug.md

    controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots).
    
    Go 1.20 removed the preinstalled `.a` files for the standard library
    from the Go distribution.
    Installations now build and cache the standard library like
    packages in other modules.
    The [`installgoroot` setting](/cmd/go#hdr-Compile_and_install_packages_and_dependencies)
    restores the installation and use of preinstalled `.a` files.
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
Back to top