Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dataRead (0.3 sec)

  1. cmd/xl-storage_test.go

    		// TestXLStorage case with invalid volume name.
    		{
    			volume: "ab",
    			path:   "as-file",
    			err:    errVolumeNotFound,
    		},
    	}
    
    	var dataRead []byte
    	// Run through all the test cases and validate for ReadAll.
    	for i, testCase := range testCases {
    		dataRead, err = xlStorage.ReadAll(context.Background(), testCase.volume, testCase.path)
    		if err != testCase.err {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    	for endPos > sw.pos && err == nil {
    		var nf int // Bytes written in fragment
    		dataStart, dataEnd := sw.sp[0].Offset, sw.sp[0].endOffset()
    		if sw.pos < dataStart { // In a hole fragment
    			bf := b[:min(int64(len(b)), dataStart-sw.pos)]
    			nf, err = zeroWriter{}.Write(bf)
    		} else { // In a data fragment
    			bf := b[:min(int64(len(b)), dataEnd-sw.pos)]
    			nf, err = sw.fw.Write(bf)
    		}
    		b = b[nf:]
    		sw.pos += int64(nf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    func writeMemorySec(ctxt *ld.Link, ldr *loader.Loader) {
    	sizeOffset := writeSecHeader(ctxt, sectionMemory)
    
    	dataSection := ldr.SymSect(ldr.Lookup("runtime.data", 0))
    	dataEnd := dataSection.Vaddr + dataSection.Length
    	var initialSize = dataEnd + 16<<20 // 16MB, enough for runtime init without growing
    
    	const wasmPageSize = 64 << 10 // 64KB
    
    	writeUleb128(ctxt.Out, 1)                        // number of memories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_amd64.s

    		reduceRound(ACC0)
    		PXOR ACC1, ACC0
    	JMP dataOctaLoop
    
    startSinglesLoop:
    	MOVOU (16*14)(pTbl), T1
    	MOVOU (16*15)(pTbl), T2
    
    dataSinglesLoop:
    
    		CMPQ autLen, $16
    		JB dataEnd
    		SUBQ $16, autLen
    
    		MOVOU (aut), B0
    dataMul:
    		PSHUFB BSWAP, B0
    		PXOR ACC0, B0
    
    		MOVOU T1, ACC0
    		MOVOU T2, ACCM
    		MOVOU T1, ACC1
    
    		PSHUFD $78, B0, T0
    		PXOR B0, T0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_arm64.s

    		mulRound(B7)
    
    		MOVD	pTblSave, pTbl
    		reduce()
    	B	octetsLoop
    
    startSinglesLoop:
    
    	ADD	$14*16, pTbl
    	VLD1.P	(pTbl), [T1.B16, T2.B16]
    
    singlesLoop:
    
    		CMP	$16, autLen
    		BLT	dataEnd
    		SUB	$16, autLen
    
    		VLD1.P	16(aut), [B0.B16]
    dataMul:
    		VREV64	B0.B16, B0.B16
    		VEOR	ACC0.B16, B0.B16, B0.B16
    
    		VEXT	$8, B0.B16, B0.B16, T0.B16
    		VEOR	B0.B16, T0.B16, T0.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Time_mult      uint32
    	Time_offset    uint64
    	Time_zero      uint64
    	Size           uint32
    	_              uint32
    	Time_cycles    uint64
    	Time_mask      uint64
    	_              [928]uint8
    	Data_head      uint64
    	Data_tail      uint64
    	Data_offset    uint64
    	Data_size      uint64
    	Aux_head       uint64
    	Aux_tail       uint64
    	Aux_offset     uint64
    	Aux_size       uint64
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top