Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for Hdrlen (0.31 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/cmd/link/internal/loader/loader.go

    }
    
    // growBitmap insures that the specified bitmap has enough capacity,
    // reallocating (doubling the size) if needed.
    func growBitmap(reqLen int, b Bitmap) Bitmap {
    	curLen := b.Len()
    	if reqLen > curLen {
    		b = append(b, MakeBitmap(reqLen+1-curLen)...)
    	}
    	return b
    }
    
    type symAndSize struct {
    	sym  Sym
    	size uint32
    }
    
    // A Loader loads new object files and resolves indexed symbol references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. 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)
  5. src/crypto/aes/aes_gcm.go

    //go:noescape
    func gcmAesDec(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32)
    
    //go:noescape
    func gcmAesFinish(productTable *[256]byte, tagMask, T *[16]byte, pLen, dLen uint64)
    
    const (
    	gcmBlockSize         = 16
    	gcmTagSize           = 16
    	gcmMinimumTagSize    = 12 // NIST SP 800-38D recommends tags with 12 or more bytes.
    	gcmStandardNonceSize = 12
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys	accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) = SYS___ACCEPT_A
    //sys	accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) = SYS___ACCEPT4_A
    //sys	bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) = SYS___BIND_A
    //sys	connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) = SYS___CONNECT_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)
  8. src/strings/strings_test.go

    		}
    	}
    	return -1
    }
    
    func TestIndexRandom(t *testing.T) {
    	const chars = "abcdefghijklmnopqrstuvwxyz0123456789"
    	for times := 0; times < 10; times++ {
    		for strLen := 5 + rand.Intn(5); strLen < 140; strLen += 10 { // Arbitrary
    			s1 := make([]byte, strLen)
    			for i := range s1 {
    				s1[i] = chars[rand.Intn(len(chars))]
    			}
    			s := string(s1)
    			for i := 0; i < 50; i++ {
    				begin := rand.Intn(len(s) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    	return result, true
    }
    
    func (c *Cacher) processEvent(event *watchCacheEvent) {
    	if curLen := int64(len(c.incoming)); c.incomingHWM.Update(curLen) {
    		// Monitor if this gets backed up, and how much.
    		klog.V(1).Infof("cacher (%v): %v objects queued in incoming channel.", c.groupResource.String(), curLen)
    	}
    	c.incoming <- *event
    }
    
    func (c *Cacher) dispatchEvents() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top