Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertGet (0.49 sec)

  1. tensorflow/c/c_api_test.cc

      TF_Operation* a = Placeholder(graph, s, "A");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* b = Placeholder(graph, s, "B");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* two = ScalarConst(2, graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* plus2 = Add(a, two, graph, s, "plus2");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	// RFC 5280, 4.2.1.9:
    	// "If the basic constraints extension is not present in a version 3
    	// certificate, or the extension is present but the cA boolean is not
    	// asserted, then the certified public key MUST NOT be used to verify
    	// certificate signatures."
    	if parent.Version == 3 && !parent.BasicConstraintsValid ||
    		parent.BasicConstraintsValid && !parent.IsCA {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top