Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 178 for 8192 (0.05 sec)

  1. src/internal/trace/testdata/tests/go122-gc-stress.test

    GCSweepBegin dt=61 stack=28
    GCSweepEnd dt=10 swept_value=8192 reclaimed_value=8192
    HeapAlloc dt=4 heapalloc_value=108816544
    HeapAlloc dt=32 heapalloc_value=108994080
    HeapAlloc dt=50 heapalloc_value=109290272
    HeapAlloc dt=112 heapalloc_value=109566240
    HeapAlloc dt=104 heapalloc_value=109973280
    GCSweepBegin dt=66 stack=29
    GCSweepEnd dt=17 swept_value=8192 reclaimed_value=0
    HeapAlloc dt=3 heapalloc_value=110183040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1_test.go

    		h.Reset()
    		h.Write(in)
    		out = h.Sum(out[:0])
    	}))
    	if n > 0 {
    		t.Errorf("allocs = %d, want 0", n)
    	}
    }
    
    var bench = New()
    var buf = make([]byte, 8192)
    
    func benchmarkSize(b *testing.B, size int) {
    	sum := make([]byte, bench.Size())
    	b.Run("New", func(b *testing.B) {
    		b.ReportAllocs()
    		b.SetBytes(int64(size))
    		for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    }
    
    func bigframe(stop chan int) int {
    	// not splitting the stack will overflow.
    	// small will notice that it needs a stack split and will
    	// catch the overflow.
    	var x [8192]byte
    	return small(stop, &x)
    }
    
    func small(stop chan int, x *[8192]byte) int {
    	for i := range x {
    		x[i] = byte(i)
    	}
    	sum := 0
    	for i := range x {
    		sum += int(x[i])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. src/runtime/asm_mips64x.s

    // It does not clobber any other general-purpose registers,
    // but may clobber others (e.g., floating point registers).
    TEXT gcWriteBarrier<>(SB),NOSPLIT,$192
    	// Save the registers clobbered by the fast path.
    	MOVV	R1, 184(R29)
    	MOVV	R2, 192(R29)
    retry:
    	MOVV	g_m(g), R1
    	MOVV	m_p(R1), R1
    	MOVV	(p_wbBuf+wbBuf_next)(R1), R2
    	MOVV	(p_wbBuf+wbBuf_end)(R1), R23 // R23 is linker temp register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  5. src/runtime/asm_arm64.s

    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. src/runtime/asm_ppc64x.s

    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. src/runtime/asm_riscv64.s

    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    		cm.AuthorizerType = "Webhook"
    		cm.AuthorizerName = name
    		cm.Metrics = am
    	}
    	return &WebhookAuthorizer{
    		subjectAccessReview: subjectAccessReview,
    		responseCache:       cache.NewLRUExpireCache(8192),
    		authorizedTTL:       authorizedTTL,
    		unauthorizedTTL:     unauthorizedTTL,
    		retryBackoff:        retryBackoff,
    		decisionOnError:     decisionOnError,
    		metrics:             am,
    		celMatcher:          cm,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/gc.go

    // Test zombie object detection and reporting.
    func GCZombie() {
    	// Allocate several objects of unusual size (so free slots are
    	// unlikely to all be re-allocated by the runtime).
    	const size = 190
    	const count = 8192 / size
    	keep := make([]*byte, 0, (count+1)/2)
    	free := make([]uintptr, 0, (count+1)/2)
    	zombies := make([]*byte, 0, len(free))
    	for i := 0; i < count; i++ {
    		obj := make([]byte, size)
    		p := &obj[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top