Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for Hdrlen (1.32 sec)

  1. src/internal/syscall/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetProfilesDirectory(dir *uint16, dirLen *uint32) (err error) {
    	r1, _, e1 := syscall.Syscall(procGetProfilesDirectoryW.Addr(), 2, uintptr(unsafe.Pointer(dir)), uintptr(unsafe.Pointer(dirLen)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_arm64.s

    	MOVD	tagMask+8(FP), tMsk
    	MOVD	T+16(FP), tPtr
    	MOVD	pLen+24(FP), plen
    	MOVD	dLen+32(FP), dlen
    
    	VLD1	(tPtr), [ACC0.B16]
    	VLD1	(tMsk), [B1.B16]
    
    	LSL	$3, plen
    	LSL	$3, dlen
    
    	VMOV	dlen, B0.D[0]
    	VMOV	plen, B0.D[1]
    
    	ADD	$14*16, pTbl
    	VLD1.P	(pTbl), [T1.B16, T2.B16]
    
    	VEOR	ACC0.B16, B0.B16, B0.B16
    
    	VEXT	$8, B0.B16, B0.B16, T0.B16
    	VEOR	B0.B16, T0.B16, T0.B16
    	VPMULL	B0.D1, T1.D1, ACC1.Q1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/encoding/base64/base64.go

    	// Decode quantum using the base64 alphabet
    	var dbuf [4]byte
    	dlen := 4
    
    	// Lift the nil check outside of the loop.
    	_ = enc.decodeMap
    
    	for j := 0; j < len(dbuf); j++ {
    		if len(src) == si {
    			switch {
    			case j == 0:
    				return si, 0, nil
    			case j == 1, enc.padChar != NoPadding:
    				return si, 0, CorruptInputError(si - j)
    			}
    			dlen = j
    			break
    		}
    		in := src[si]
    		si++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. src/syscall/security_windows.go

    //sys	GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation
    //sys	GetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err error) = userenv.GetUserProfileDirectoryW
    
    // An access token contains the security information for a logon session.
    // The system creates an access token when a user logs on, and every
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_386.s

    	MOVL	mode+4(FP), CX
    	INVOKE_SYSCALL
    	MOVL	AX, ret+8(FP)
    	RET
    
    // int connect(int fd, const struct sockaddr *addr, socklen_t addrlen)
    TEXT runtime·connect(SB),NOSPLIT,$0-16
    	// connect is implemented as socketcall(NR_socket, 3, *(rest of args))
    	// stack already should have fd, addr, addrlen.
    	MOVL	$SYS_socketcall, AX
    	MOVL	$3, BX  // connect
    	LEAL	fd+0(FP), CX
    	INVOKE_SYSCALL
    	MOVL	AX, ret+12(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. docs/tr/docs/alternatives.md

    * Session ve çerez desteği.
    * Kodun %100'ü test kapsamında.
    * Kodun %100'ü tip belirteçleriyle desteklenmiştir.
    * Yalnızca bir kaç zorunlu bağımlılığa sahip.
    
    Starlette şu anda test edilen en hızlı Python framework'ü. Yalnızca bir sunucu olan Uvicorn'a yeniliyor, o da zaten bir framework değil.
    
    Starlette bütün temel web mikro framework işlevselliğini sağlıyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

          TF_SetStatus(status, TF_OK, "");
        }
      }
    
      close(fd);
    }
    
    static void CreateDir(const TF_Filesystem* filesystem, const char* path,
                          TF_Status* status) {
      if (strlen(path) == 0)
        TF_SetStatus(status, TF_ALREADY_EXISTS, "already exists");
      else if (mkdir(path, /*mode=*/0755) != 0)
        TF_SetStatusFromIOError(status, errno, path);
      else
        TF_SetStatus(status, TF_OK, "");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/debug/pe/file.go

    			return nil, err
    		}
    
    		if 0 < s.VirtualSize && s.VirtualSize < s.Size {
    			b = b[:s.VirtualSize]
    		}
    
    		if len(b) >= 12 && string(b[:4]) == "ZLIB" {
    			dlen := binary.BigEndian.Uint64(b[4:12])
    			dbuf := make([]byte, dlen)
    			r, err := zlib.NewReader(bytes.NewBuffer(b[12:]))
    			if err != nil {
    				return nil, err
    			}
    			if _, err := io.ReadFull(r, dbuf); err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
    //sys	munmap(addr uintptr, length uintptr) (err error)
    //sys	accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/crypto/rsa/pss.go

    )
    
    // Per RFC 8017, Section 9.1
    //
    //     EM = MGF1 xor DB || H( 8*0x00 || mHash || salt ) || 0xbc
    //
    // where
    //
    //     DB = PS || 0x01 || salt
    //
    // and PS can be empty so
    //
    //     emLen = dbLen + hLen + 1 = psLen + sLen + hLen + 2
    //
    
    func emsaPSSEncode(mHash []byte, emBits int, salt []byte, hash hash.Hash) ([]byte, error) {
    	// See RFC 8017, Section 9.1.1.
    
    	hLen := hash.Size()
    	sLen := len(salt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top