Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for Marche (1.45 sec)

  1. src/cmd/compile/internal/ssa/fmahash_test.go

    	case "linux", "darwin":
    	default:
    		t.Skipf("Slow test, usually avoid it, os=%s not linux or darwin", runtime.GOOS)
    	}
    	switch runtime.GOARCH {
    	case "amd64", "arm64":
    	default:
    		t.Skipf("Slow test, usually avoid it, arch=%s not amd64 or arm64", runtime.GOARCH)
    	}
    
    	testenv.MustHaveGoBuild(t)
    	gocmd := testenv.GoToolPath(t)
    	tmpdir := t.TempDir()
    	source := filepath.Join("testdata", "fma.go")
    	output := filepath.Join(tmpdir, "fma.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loong64/asm.go

    	"log"
    )
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    	if initfunc == nil {
    		return
    	}
    
    	o := func(op uint32) {
    		initfunc.AddUint32(ctxt.Arch, op)
    	}
    
    	// Emit the following function:
    	//
    	//	local.dso_init:
    	//		la.pcrel $a0, local.moduledata
    	//		b runtime.addmoduledata
    
    	//	0000000000000000 <local.dso_init>:
    	//	0:	1a000004	pcalau12i	$a0, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm_test.go

    	}
    
    	// TODO(quasilyte): oclass doesn't return Yxxx for X/Y regs with
    	// ID higher than 7. We don't encode such instructions, but this
    	// behavior seems inconsistent. It should probably either
    	// never check for arch or do it in all cases.
    
    	oclassTestsCommon := []*oclassTest{
    		{&obj.Addr{Type: obj.TYPE_NONE}, Ynone},
    		{&obj.Addr{Type: obj.TYPE_BRANCH}, Ybr},
    		{&obj.Addr{Type: obj.TYPE_TEXTSIZE}, Ytextsize},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. tests/postgres_test.go

    ALTER TABLE public.log_usage ALTER COLUMN log_id ADD GENERATED BY DEFAULT AS IDENTITY (
        SEQUENCE NAME public.log_usage_log_id_seq
        START WITH 1
        INCREMENT BY 1
        NO MINVALUE
        NO MAXVALUE
        CACHE 1
    );
    	`).Error; err != nil {
    		t.Fatalf("failed to create table, got error %v", err)
    	}
    
    	columns, err := DB.Migrator().ColumnTypes("log_usage")
    	if err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Oct 08 09:16:32 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache_test.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cache
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    )
    
    func init() {
    	verify = false // even if GODEBUG is set
    }
    
    func TestBasic(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/par/work.go

    		w.f(item)
    	}
    }
    
    // ErrCache is like Cache except that it also stores
    // an error value alongside the cached value V.
    type ErrCache[K comparable, V any] struct {
    	Cache[K, errValue[V]]
    }
    
    type errValue[V any] struct {
    	v   V
    	err error
    }
    
    func (c *ErrCache[K, V]) Do(key K, f func() (V, error)) (V, error) {
    	v := c.Cache.Do(key, func() errValue[V] {
    		v, err := f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/layout.go

    }
    
    func layoutOrder(f *Func) []*Block {
    	order := make([]*Block, 0, f.NumBlocks())
    	scheduled := f.Cache.allocBoolSlice(f.NumBlocks())
    	defer f.Cache.freeBoolSlice(scheduled)
    	idToBlock := f.Cache.allocBlockSlice(f.NumBlocks())
    	defer f.Cache.freeBlockSlice(idToBlock)
    	indegree := f.Cache.allocIntSlice(f.NumBlocks())
    	defer f.Cache.freeIntSlice(indegree)
    	posdegree := f.newSparseSet(f.NumBlocks()) // blocks with positive remaining degree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadcode.go

    // reachable is a map from block ID to whether the block is reachable.
    // The caller should call f.Cache.freeBoolSlice(live) and f.Cache.freeValueSlice(liveOrderStmts).
    // when they are done with the return values.
    func liveValues(f *Func, reachable []bool) (live []bool, liveOrderStmts []*Value) {
    	live = f.Cache.allocBoolSlice(f.NumValues())
    	liveOrderStmts = f.Cache.allocValueSlice(f.NumValues())[:0]
    
    	// After regalloc, consider all values to be live.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/distpack/test.go

    	{name: "go/src/bytes/bytes.go"},
    	{name: "**/.DS_Store", exclude: true},
    	{name: "go/.git", exclude: true},
    	{name: "go/.gitattributes", exclude: true},
    	{name: "go/.github", exclude: true},
    	{name: "go/VERSION.cache", exclude: true},
    	{name: "go/bin/**", exclude: true},
    	{name: "go/pkg/**", exclude: true},
    	{name: "go/src/cmd/dist/dist", exclude: true},
    	{name: "go/src/cmd/dist/dist.exe", exclude: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/mips/obj.go

    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"internal/buildcfg"
    )
    
    func Init() (*sys.Arch, ld.Arch) {
    	arch := sys.ArchMIPS
    	musl := "/lib/ld-musl-mips.so.1"
    	if buildcfg.GOARCH == "mipsle" {
    		arch = sys.ArchMIPSLE
    		musl = "/lib/ld-musl-mipsel.so.1"
    	}
    
    	theArch := ld.Arch{
    		Funcalign:  FuncAlign,
    		Maxalign:   MaxAlign,
    		Minalign:   MinAlign,
    		Dwarfregsp: DWARFREGSP,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top