Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 32K (0.03 sec)

  1. internal/http/dial_linux.go

    			}
    
    			if opts.RecvBufSize > 0 {
    				_ = unix.SetsockoptInt(fd, unix.SOL_SOCKET, unix.SO_RCVBUF, opts.RecvBufSize)
    			}
    
    			// 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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/hbone/util.go

    // limitations under the License.
    
    package hbone
    
    import (
    	"io"
    	"net"
    	"net/http"
    	"sync"
    	"time"
    
    	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) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    		// cheap to make the cache big in the second dimension below,
    		// the memory is only consumed when that many tokens are being
    		// used. Currently we advertise support 5k nodes and 10k
    		// namespaces; a 32k entry cache is therefore a 2x safety
    		// margin.
    		cache: newStripedCache(32, fnvHashFunc, func() cache { return newSimpleCache(clock) }),
    
    		hashPool: &sync.Pool{
    			New: func() interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/net/textproto/reader_test.go

    		runtime.ReadMemStats(&m1)
    		_, err := r.ReadMIMEHeader()
    		if err != nil {
    			t.Fatalf("ReadMIMEHeader: %v", err)
    		}
    		runtime.ReadMemStats(&m2)
    		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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/regexp/exec_test.go

    	{"Hard1", "ABCD|CDEF|EFGH|GHIJ|IJKL|KLMN|MNOP|OPQR|QRST|STUV|UVWX|WXYZ"},
    }
    
    var benchSizes = []struct {
    	name string
    	n    int
    }{
    	{"16", 16},
    	{"32", 32},
    	{"1K", 1 << 10},
    	{"32K", 32 << 10},
    	{"1M", 1 << 20},
    	{"32M", 32 << 20},
    }
    
    func TestLongest(t *testing.T) {
    	re, err := Compile(`a(|b)`)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if g, w := re.FindString("ab"), "a"; g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.17.md

    - Authentication token cache size is increased (from 4k to 32k) to support clusters with many nodes or many namespaces with active service accounts. ([#83643](https://github.com/kubernetes/kubernetes/pull/83643), [@lavalamp](https://github.com/lavalamp))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  7. src/regexp/testdata/re2-exhaustive.txt.bz2

     � ׵o��Pkh X��2IU��FI5�`�MAA��6 &�*���Ie@���V���� �,�n�2�g"�R�g���$-��4H[` J�����Zʴ�i����Q-�QE EQ-�J(��m���#F���Q��,��)6J(���� TA���҆����������I��!$�$I,�RRk�֨$�Jm� ���*�*b ��@ ����l��I$�Re+�"�$I��F!2�#��c&�32K)�ڮF�(�Z� �N.1��,'.# ��6�6�I���U��Z&! ��`��6h�b�BS4m9�s�8���-�� ["cmn���M41��M5�VP�ح��Z6����c�m���)�SUd�,X�i�h��&�$Ԓ$�%�PF��F�Z��U%dՃ31��Y+&�-#)5���Fjd���&L���-�*�R�Y"l��C*c+�cR9�6��ʩ�,�YK1m��İPJ�Vea*��cRL�1*l����6B 6 �X�...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
Back to top