Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for partlen (0.14 sec)

  1. cmd/test-utils_test.go

    		var cp []CompletePart
    		cumulativeSum := int64(0)
    		for i, partLen := range partSizes {
    			partID := i + 1
    			partSrc := NewDummyDataGen(partLen, cumulativeSum)
    			cumulativeSum += partLen
    			req, errP := newTestSignedRequestV4(http.MethodPut,
    				getPutObjectPartURL("", bucketName, objectName, upID, fmt.Sprintf("%d", partID)),
    				partLen, partSrc, creds.AccessKey, creds.SecretKey, metadata)
    			if errP != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    		if len(d) < 4 {
    			return false
    		}
    		certLen := uint32(d[0])<<16 | uint32(d[1])<<8 | uint32(d[2])
    		if uint32(len(d)) < 3+certLen {
    			return false
    		}
    		d = d[3+certLen:]
    		certsLen -= 3 + certLen
    		numCerts++
    	}
    
    	m.certificates = make([][]byte, numCerts)
    	d = data[7:]
    	for i := 0; i < numCerts; i++ {
    		certLen := uint32(d[0])<<16 | uint32(d[1])<<8 | uint32(d[2])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    		}
    	}
    }
    
    func assignID_8_64(text []byte, sa []int64, numLMS int) int {
    	id := 0
    	lastLen := int64(-1) // impossible
    	lastPos := int64(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint64(n) >= uint64(len(text)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/time/time.go

    	if version != timeBinaryVersionV1 && version != timeBinaryVersionV2 {
    		return errors.New("Time.UnmarshalBinary: unsupported version")
    	}
    
    	wantLen := /*version*/ 1 + /*sec*/ 8 + /*nsec*/ 4 + /*zone offset*/ 2
    	if version == timeBinaryVersionV2 {
    		wantLen++
    	}
    	if len(buf) != wantLen {
    		return errors.New("Time.UnmarshalBinary: invalid length")
    	}
    
    	buf = buf[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mount_LE(path string, filesystem string, fstype string, mtm uint32, parmlen int32, parm string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(filesystem)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   W_Getmntent_A(buff *byte, size int) (lastsys int, err error) = SYS___W_GETMNTENT_A
    
    //sys   mount_LE(path string, filesystem string, fstype string, mtm uint32, parmlen int32, parm string) (err error) = SYS___MOUNT_A
    //sys   unmount_LE(filesystem string, mtm int) (err error) = SYS___UMOUNT_A
    //sys   Chroot(path string) (err error) = SYS___CHROOT_A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top