Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for has_func (0.18 sec)

  1. src/crypto/x509/x509.go

    	signed := tbs
    	hashFunc := sigAlg.hashFunc()
    	if hashFunc != 0 {
    		h := hashFunc.New()
    		h.Write(signed)
    		signed = h.Sum(nil)
    	}
    
    	var signerOpts crypto.SignerOpts = hashFunc
    	if sigAlg.isRSAPSS() {
    		signerOpts = &rsa.PSSOptions{
    			SaltLength: rsa.PSSSaltLengthEqualsHash,
    			Hash:       hashFunc,
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        ForwardStoreToLoad(&region.front());
      }
    
      llvm::SetVector<Value> all_resources;
      bool is_func = false;
      // For functions, the resources to analyze are the function arguments.
      // Otherwise, its the region captures.
      if (func::FuncOp func = dyn_cast<func::FuncOp>(op_)) {
        is_func = true;
        Region& body = func.getBody();
        for (BlockArgument arg : body.getArguments()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    type brokenSigner struct{ crypto.Signer }
    
    func (s brokenSigner) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) {
    	// Replace opts with opts.HashFunc(), so rsa.PSSOptions are discarded.
    	return s.Signer.Sign(rand, digest, opts.HashFunc())
    }
    
    // TestPKCS1OnlyCert uses a client certificate with a broken crypto.Signer that
    // always makes PKCS #1 v1.5 signatures, so can't be used with RSA-PSS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern int TF_GraphNumFunctions(TF_Graph* g);
    
    // Fills in `funcs` with the TF_Function* registered in `g`.
    // `funcs` must point to an array of TF_Function* of length at least
    // `max_func`. In usual usage, max_func should be set to the result of
    // TF_GraphNumFunctions(g). In this case, all the functions registered in
    // `g` will be returned. Else, an unspecified subset.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    using mlir::Value;
    using mlir::ValueRange;
    using mlir::WalkResult;
    using mlir::func::FuncOp;
    using mlir::func::ReturnOp;
    
    constexpr char kDeviceAttr[] = "device";
    constexpr char kHostFunctionAttr[] = "host_func";
    constexpr char kXlaMapOutsideCompilationAttr[] = "_xla_map_outside_compilation";
    constexpr char kXlaOutsideCompilationAttr[] = "_xla_outside_compilation";
    
    #define GEN_PASS_DEF_EXTRACTOUTSIDECOMPILATIONPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top