Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for 8192 (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/registry/core/service/portallocator/allocator_test.go

    					Base: 30000,
    					Size: 4096,
    				},
    			},
    			want: 128,
    		},
    		{
    			name: "large node port range",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 8192,
    				},
    			},
    			want: 128,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := calculateRangeOffset(tt.args.pr); got != tt.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/runtime/asm_loong64.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: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/runtime/asm_mipsx.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: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/runtime/arena_test.go

    type smallScalar struct {
    	X uintptr
    }
    type smallPointer struct {
    	X *smallPointer
    }
    type smallPointerMix struct {
    	A *smallPointer
    	B byte
    	C *smallPointer
    	D [11]byte
    }
    type mediumScalarEven [8192]byte
    type mediumScalarOdd [3321]byte
    type mediumPointerEven [1024]*smallPointer
    type mediumPointerOdd [1023]*smallPointer
    
    type largeScalar [UserArenaChunkBytes + 1]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/encoding/base64/base64_test.go

    	}
    	_, err = StdEncoding.DecodeString("WvLTlMrX9NpYDQlEIFlnDB==")
    	if err != nil {
    		t.Errorf("Error = %v; want nil", err)
    	}
    }
    
    func BenchmarkEncodeToString(b *testing.B) {
    	data := make([]byte, 8192)
    	b.SetBytes(int64(len(data)))
    	for i := 0; i < b.N; i++ {
    		StdEncoding.EncodeToString(data)
    	}
    }
    
    func BenchmarkDecodeString(b *testing.B) {
    	sizes := []int{2, 4, 8, 64, 8192}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. src/syscall/types_windows.go

    	FORMAT_MESSAGE_IGNORE_INSERTS  = 512
    	FORMAT_MESSAGE_FROM_STRING     = 1024
    	FORMAT_MESSAGE_FROM_HMODULE    = 2048
    	FORMAT_MESSAGE_FROM_SYSTEM     = 4096
    	FORMAT_MESSAGE_ARGUMENT_ARRAY  = 8192
    	FORMAT_MESSAGE_MAX_WIDTH_MASK  = 255
    
    	MAX_PATH      = 260
    	MAX_LONG_PATH = 32768
    
    	MAX_COMPUTERNAME_LENGTH = 15
    
    	TIME_ZONE_ID_UNKNOWN  = 0
    	TIME_ZONE_ID_STANDARD = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top