Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsRead (0.19 sec)

  1. src/crypto/tls/cipher_suites.go

    	return false
    }
    
    func cipherRC4(key, iv []byte, isRead bool) any {
    	cipher, _ := rc4.NewCipher(key)
    	return cipher
    }
    
    func cipher3DES(key, iv []byte, isRead bool) any {
    	block, _ := des.NewTripleDESCipher(key)
    	if isRead {
    		return cipher.NewCBCDecrypter(block, iv)
    	}
    	return cipher.NewCBCEncrypter(block, iv)
    }
    
    func cipherAES(key, iv []byte, isRead bool) any {
    	block, _ := aes.NewCipher(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      bool IsAlloc() const { return effects_.test(kAlloc); }
      bool IsFree() const { return effects_.test(kFree); }
      bool IsRead() const { return effects_.test(kRead); }
      bool IsWrite() const { return effects_.test(kWrite); }
      bool IsAllocOnly() const { return IsAlloc() && effects_.count() == 1; }
      bool IsReadOnly() const { return IsRead() && effects_.count() == 1; }
      ResourceId GetResourceId() const { return resource_id_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top