Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for 3p1024 (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    	}
    }
    
    const maxAuditAnnotationValueLength = 10 * 1024
    
    // validationFailureValue defines the JSON format of a "validation.policy.admission.k8s.io/validation_failure" audit
    // annotation value.
    type ValidationFailureValue struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_ppc64le.s

    	MOVWZ	(R10)(R17),R21	// tab[0][p[7]]
    	ADD	$1024,R10,R10	// tab[1]
    	RLDICL	$56,R9,$56,R19	// p[5]
    	SLD	$2,R19,R19	// p[5]*4:1
    	MOVWZ	(R10)(R18),R22	// tab[1][p[6]]
    	ADD	$1024,R10,R10	// tab[2]
    	XOR	R21,R22,R21	// xor done R22
    	CLRLSLDI $56,R9,$2,R20
    	MOVWZ	(R10)(R19),R23	// tab[2][p[5]]
    	ADD	$1024,R10,R10	// &tab[3]
    	XOR	R21,R23,R21	// xor done R23
    	MOVWZ	(R10)(R20),R24	// tab[3][p[4]]
    	ADD 	$1024,R10,R10   // &tab[4]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/io/io_test.go

    }
    
    func BenchmarkCopyNLarge(b *testing.B) {
    	bs := bytes.Repeat([]byte{0}, (32*1024)+1)
    	rd := bytes.NewReader(bs)
    	buf := new(Buffer)
    	b.ResetTimer()
    
    	for i := 0; i < b.N; i++ {
    		CopyN(buf, rd, 32*1024)
    		rd.Reset(bs)
    	}
    }
    
    type noReadFrom struct {
    	w Writer
    }
    
    func (w *noReadFrom) Write(p []byte) (n int, err error) {
    	return w.w.Write(p)
    }
    
    type wantedAndErrReader struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self._create_matmul_model(
            input_shape=(1, 1024),
            weight_shape=(1024, 3),
            saved_model_path=self._input_saved_model_path,
        )
    
        rng = np.random.default_rng(seed=1234)
        representative_dataset: repr_dataset.RepresentativeDataset = [
            {'input_tensor': rng.uniform(size=(1, 1024)).astype(np.float32)}
            for _ in range(4)
        ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

            // We use a simple heuristic to avoid converting the string to bytes
            // if all code points were in UTF32, 16K code points would require 64K bytes
            secondStageScriptText.length >= 16 * 1024
    
        private
        fun storeStringToResource(secondStageScriptText: String): String {
            val hash = Hashing.hashString(secondStageScriptText)
            val resourcePath = "scripts/$hash.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/net/textproto/reader_test.go

    	want := MIMEHeader{}
    	if !reflect.DeepEqual(m, want) || err == nil {
    		t.Fatalf("ReadMIMEHeader: %v, %v; want %v", m, err, want)
    	}
    }
    
    func TestLargeReadMIMEHeader(t *testing.T) {
    	data := make([]byte, 16*1024)
    	for i := 0; i < len(data); i++ {
    		data[i] = 'x'
    	}
    	sdata := string(data)
    	r := reader("Cookie: " + sdata + "\r\n\n")
    	m, err := r.ReadMIMEHeader()
    	if err != nil {
    		t.Fatalf("ReadMIMEHeader: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. src/syscall/types_windows.go

    	ReparseDataLength uint16
    	Reserved          uint16
    
    	// GenericReparseBuffer
    	reparseBuffer byte
    }
    
    const (
    	FSCTL_GET_REPARSE_POINT          = 0x900A8
    	MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16 * 1024
    	_IO_REPARSE_TAG_MOUNT_POINT      = 0xA0000003
    	IO_REPARSE_TAG_SYMLINK           = 0xA000000C
    	SYMBOLIC_LINK_FLAG_DIRECTORY     = 0x1
    	_SYMLINK_FLAG_RELATIVE           = 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)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    			error: "max depth",
    			data:  []byte(strings.Repeat(`- `, 3*1024*1024)),
    		},
    		{
    			name:      "3MB of 1000-indent lines",
    			data:      []byte(strings.Repeat(strings.Repeat(`- `, 1000)+"\n", 3*1024/2)),
    			benchmark: true,
    		},
    		{
    			name:      "3MB of empty slices",
    			data:      []byte(`[` + strings.Repeat(`[],`, 3*1024*1024/3-2) + `[]]`),
    			benchmark: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy.go

    // of bytes written.
    func (p *ReverseProxy) copyBuffer(dst io.Writer, src io.Reader, buf []byte) (int64, error) {
    	if len(buf) == 0 {
    		buf = make([]byte, 32*1024)
    	}
    	var written int64
    	for {
    		nr, rerr := src.Read(buf)
    		if rerr != nil && rerr != io.EOF && rerr != context.Canceled {
    			p.logf("httputil: ReverseProxy read error during body copy: %v", rerr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/io/io.go

    		return wt.WriteTo(dst)
    	}
    	// Similarly, if the writer has a ReadFrom method, use it to do the copy.
    	if rf, ok := dst.(ReaderFrom); ok {
    		return rf.ReadFrom(src)
    	}
    	if buf == nil {
    		size := 32 * 1024
    		if l, ok := src.(*LimitedReader); ok && int64(size) > l.N {
    			if l.N < 1 {
    				size = 1
    			} else {
    				size = int(l.N)
    			}
    		}
    		buf = make([]byte, size)
    	}
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top