Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for 3p1024 (0.23 sec)

  1. internal/http/dial_linux.go

    			}
    
    			// Enable TCP open
    			// https://lwn.net/Articles/508865/ - 32k queue size.
    			_ = syscall.SetsockoptInt(fd, syscall.SOL_TCP, unix.TCP_FASTOPEN, 32*1024)
    
    			// Enable TCP fast connect
    			// TCPFastOpenConnect sets the underlying socket to use
    			// the TCP fast open connect. This feature is supported
    			// since Linux 4.11.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  2. cmd/erasure-decode_test.go

    	// 4
    	{dataBlocks: 7, onDisks: 14, offDisks: 0, blocksize: int64(oneMiByte), data: oneMiByte, offset: 3, length: 1024, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false},                    // 5
    	{dataBlocks: 8, onDisks: 16, offDisks: 0, blocksize: int64(oneMiByte), data: oneMiByte, offset: 4, length: 8 * 1024, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false},                // 6
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/v1alpha1/defaults.go

    	}
    	if obj.NFTables.MinSyncPeriod.Duration == 0 {
    		obj.NFTables.MinSyncPeriod = metav1.Duration{Duration: 1 * time.Second}
    	}
    
    	if obj.Conntrack.MaxPerCore == nil {
    		obj.Conntrack.MaxPerCore = ptr.To[int32](32 * 1024)
    	}
    	if obj.Conntrack.Min == nil {
    		obj.Conntrack.Min = ptr.To[int32](128 * 1024)
    	}
    
    	if obj.IPTables.MasqueradeBit == nil {
    		temp := int32(14)
    		obj.IPTables.MasqueradeBit = &temp
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/hash/crc32/gen_const_ppc64le.go

    	}
    }
    
    func genCrc32ConstTable(w *bytes.Buffer, poly uint32, polyid string) {
    
    	ref_poly := reflect_bits(uint64(poly), 32)
    	fmt.Fprintf(w, "\n\t/* Reduce %d kbits to 1024 bits */\n", blocking*8)
    	j := 0
    	for i := (blocking * 8) - 1024; i > 0; i -= 1024 {
    		a := reflect_bits(get_remainder(ref_poly, 32, uint(i)), 32) << 1
    		b := reflect_bits(get_remainder(ref_poly, 32, uint(i+64)), 32) << 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. cmd/dummy-data-generator_test.go

    }
    
    // Compares all the bytes returned by the given readers. Any Read
    // errors cause a `false` result. A string describing the error is
    // also returned.
    func cmpReaders(r1, r2 io.Reader) (bool, string) {
    	bufLen := 32 * 1024
    	b1, b2 := make([]byte, bufLen), make([]byte, bufLen)
    	for i := 0; true; i++ {
    		n1, e1 := io.ReadFull(r1, b1)
    		n2, e2 := io.ReadFull(r2, b2)
    		if n1 != n2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/rewrite.go

    // If bufSize == 0, FindAndHash uses a reasonable default.
    func FindAndHash(r io.Reader, id string, bufSize int) (matches []int64, hash [32]byte, err error) {
    	if bufSize == 0 {
    		bufSize = 31 * 1024 // bufSize+little will likely fit in 32 kB
    	}
    	if len(id) == 0 {
    		return nil, [32]byte{}, fmt.Errorf("buildid.FindAndHash: no id specified")
    	}
    	if len(id) > bufSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. src/runtime/os_openbsd.go

    // Called to initialize a new m (including the bootstrap m).
    // Called on the parent thread (main thread in case of bootstrap), can allocate memory.
    func mpreinit(mp *m) {
    	gsignalSize := int32(32 * 1024)
    	if GOARCH == "mips64" {
    		gsignalSize = int32(64 * 1024)
    	}
    	mp.gsignal = malg(gsignalSize)
    	mp.gsignal.m = mp
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, can not allocate memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/net/http/cgi/cgi_main.go

    	if params.Get("writestderr") != "" {
    		fmt.Fprintf(os.Stderr, "Hello, stderr!\n")
    	}
    
    	if params.Get("bigresponse") != "" {
    		// 17 MB, for OS X: golang.org/issue/4958
    		line := strings.Repeat("A", 1024)
    		for i := 0; i < 17*1024; i++ {
    			fmt.Printf("%s\r\n", line)
    		}
    		return
    	}
    
    	fmt.Printf("test=Hello CGI\r\n")
    
    	keys := make([]string, 0, len(params))
    	for k := range params {
    		keys = append(keys, k)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pkg/hbone/util.go

    	istiolog "istio.io/istio/pkg/log"
    )
    
    // createBuffer to get a buffer. io.Copy uses 32k.
    // experimental use shows ~20k max read with Firefox.
    var bufferPoolCopy = sync.Pool{New: func() any {
    	return make([]byte, 0, 32*1024)
    }}
    
    func copyBuffered(dst io.Writer, src io.Reader, log *istiolog.Scope) {
    	buf1 := bufferPoolCopy.Get().([]byte)
    	// nolint: staticcheck
    	defer bufferPoolCopy.Put(buf1)
    	bufCap := cap(buf1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/os_dragonfly.go

    	goenvs_unix()
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the parent thread (main thread in case of bootstrap), can allocate memory.
    func mpreinit(mp *m) {
    	mp.gsignal = malg(32 * 1024)
    	mp.gsignal.m = mp
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    	getg().m.procid = uint64(lwp_gettid())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top