Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 133 for 32768 (0.05 sec)

  1. src/runtime/asm_mipsx.s

    	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)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/net/textproto/reader_test.go

    		totalAlloc += m2.TotalAlloc - m1.TotalAlloc
    	}
    	// 32k is large and we actually allocate substantially less,
    	// but prior to the fix for #58975 we allocated ~400k in this case.
    	if got, want := totalAlloc/count, uint64(32768); got > want {
    		t.Fatalf("ReadMIMEHeader allocated %v bytes, want < %v", got, want)
    	}
    }
    
    type readResponseTest struct {
    	in       string
    	inCode   int
    	wantCode int
    	wantMsg  string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. src/syscall/types_windows.go

    	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
    
    	TIME_ZONE_ID_DAYLIGHT = 2
    	IGNORE                = 0
    	INFINITE              = 0xffffffff
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_ppc64le.s

    	MOVD    $·byteswapcons(SB),R3
    	LVX	(R3),byteswap
    #endif
    
    	CMPU	R5,$256		// length of bytes
    	BLT	short
    
    	RLDICR	$0,R5,$56,R6 // chunk to process
    
    	// First step for larger sizes
    l1:	MOVD	$32768,R7
    	MOVD	R7,R9
    	CMP	R6,R7   // compare R6, R7 (MAX SIZE)
    	BGT	top	// less than MAX, just do remainder
    	MOVD	R6,R7
    top:
    	SUB	R7,R6,R6
    
    	// mainloop does 128 bytes at a time
    	SRD	$7,R7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	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)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/runtime/asm_arm.s

    	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)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin.go

    		// when SS_DISABLE is set, it doesn't. sigaltstack returns ENOMEM
    		// if we don't give it a reasonable size.
    		// ref: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20140421/214296.html
    		new.ss_size = 32768
    	}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(sigaltstack_trampoline)), unsafe.Pointer(&new))
    	KeepAlive(new)
    	KeepAlive(old)
    }
    func sigaltstack_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/config.go

    	// Setup defaults
    	runtimeFlags := map[string]any{
    		"overload.global_downstream_max_connections": "2147483647",
    		"re2.max_program_size.error_level":           "32768",
    		"envoy.deprecated_features:envoy.config.listener.v3.Listener.hidden_envoy_deprecated_use_original_dst": true,
    		"envoy.reloadable_features.http_reject_path_with_fragment":                                             false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/runtime/asm_386.s

    	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)
    	DISPATCH(runtime·call524288, 524288)
    	DISPATCH(runtime·call1048576, 1048576)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation_test.go

    			setEgressToNamespaceSelector,
    			setEgressPorts(
    				makePort(&protocolUDP, intstr.FromString("dns"), 32768),
    				makePort(nil, intstr.FromInt32(32000), 32768),
    			),
    		),
    		"endPort defined without port defined": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    			setEgressPorts(makePort(&protocolTCP, intstr.FromInt32(0), 32768)),
    		),
    		"port is greater than endPort": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
Back to top