Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for relocs (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/intellij-script-dependencies-reload.png

    intellij-script-dependencies-reload.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. releasenotes/notes/drop-reload-plugin-certs.yaml

    John Howard <******@****.***> 1682567490 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:51:30 UTC 2023
    - 145 bytes
    - Viewed (0)
  3. src/runtime/defs_solaris_amd64.go

    	REG_RAX    = C.REG_RAX
    	REG_GS     = C.REG_GS
    	REG_FS     = C.REG_FS
    	REG_ES     = C.REG_ES
    	REG_DS     = C.REG_DS
    	REG_TRAPNO = C.REG_TRAPNO
    	REG_ERR    = C.REG_ERR
    	REG_RIP    = C.REG_RIP
    	REG_CS     = C.REG_CS
    	REG_RFLAGS = C.REG_RFL
    	REG_RSP    = C.REG_RSP
    	REG_SS     = C.REG_SS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1004 bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/nistec_test.go

    				t.Fatal(err)
    			}
    			out = p.BytesCompressed()
    			if _, err := p.SetBytes(out); err != nil {
    				t.Fatal(err)
    			}
    		}); allocs > 0 {
    			t.Errorf("expected zero allocations, got %0.1f", allocs)
    		}
    	})
    	t.Run("P256", func(t *testing.T) {
    		if allocs := testing.AllocsPerRun(10, func() {
    			p := nistec.NewP256Point().SetGenerator()
    			scalar := make([]byte, 32)
    			rand.Read(scalar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/encoding/gob/timing_test.go

    	enc := NewEncoder(&buf)
    	bench := &Bench{7, 3.2, "now is the time", []byte("for all good men")}
    
    	allocs := testing.AllocsPerRun(N, func() {
    		err := enc.Encode(bench)
    		if err != nil {
    			t.Fatal("encode:", err)
    		}
    	})
    	if allocs != 0 {
    		t.Fatalf("mallocs per encode of type Bench: %v; wanted 0\n", allocs)
    	}
    }
    
    func TestCountDecodeMallocs(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 07:16:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/base.go

    	const (
    		goal   = "/gc/heap/goal:bytes"
    		count  = "/gc/cycles/total:gc-cycles"
    		allocs = "/gc/heap/allocs:bytes"
    		frees  = "/gc/heap/frees:bytes"
    	)
    
    	sample := []metrics.Sample{{Name: goal}, {Name: count}, {Name: allocs}, {Name: frees}}
    	const (
    		GOAL   = 0
    		COUNT  = 1
    		ALLOCS = 2
    		FREES  = 3
    	)
    
    	// Assumptions and observations of Go's garbage collector, as of Go 1.17-1.20:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/sync/map_test.go

    }
    
    func TestMapRangeNoAllocations(t *testing.T) { // Issue 62404
    	testenv.SkipIfOptimizationOff(t)
    	var m sync.Map
    	allocs := testing.AllocsPerRun(10, func() {
    		m.Range(func(key, value any) bool {
    			return true
    		})
    	})
    	if allocs > 0 {
    		t.Errorf("AllocsPerRun of m.Range = %v; want 0", allocs)
    	}
    }
    
    // TestConcurrentClear tests concurrent behavior of sync.Map properties to ensure no data races.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/link/testdata/pe-llvm/main.go

    //     [ 1](sec  1)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$01
    //     AUX scnlen 0x68 nreloc 1 nlnno 0 checksum 0x0 assoc 0 comdat 0
    //     [ 3](sec  2)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$02
    //     AUX scnlen 0x18 nreloc 0 nlnno 0 checksum 0x0 assoc 0 comdat 0
    //     [ 5](sec  2)(fl 0x00)(ty   0)(scl   3) (nx 0) 0x00000000 $R000000
    //     RELOCATION RECORDS FOR [.rsrc$01]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache_test.go

    		var wg sync.WaitGroup
    		for i := 0; i < 100; i++ {
    			wg.Add(1)
    			go func() {
    				f()
    				wg.Done()
    			}()
    		}
    		wg.Wait()
    
    		allocs := testing.AllocsPerRun(100, f)
    		if allocs > 1 {
    			t.Errorf("Expected 1 allocations, got %v", allocs)
    		}
    	})
    }
    
    func TestSimpleCache(t *testing.T) {
    	fakeClock := testingclock.NewFakeClock(time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/riscv64/obj.go

    			Linuxdynld: "/lib/ld.so.1",
    
    			Freebsddynld:   "/usr/libexec/ld-elf.so.1",
    			Netbsddynld:    "XXX",
    			Openbsddynld:   "/usr/libexec/ld.so",
    			Dragonflydynld: "XXX",
    			Solarisdynld:   "XXX",
    
    			Reloc1:    elfreloc1,
    			RelocSize: 24,
    			SetupPLT:  elfsetupplt,
    		},
    	}
    
    	return arch, theArch
    }
    
    func archinit(ctxt *ld.Link) {
    	switch ctxt.HeadType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 17:46:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top