Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fungus (0.16 sec)

  1. tensorflow/c/c_api_function_test.cc

      EXPECT_EQ(TF_GraphGetFunctions(host_graph_, funcs, 2, s_), 2);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      if (GetName(funcs[0]) == GetName(func0)) {
        AssertEqual(func0, funcs[0]);
        AssertEqual(func1, funcs[1]);
      } else {
        AssertEqual(func0, funcs[1]);
        AssertEqual(func1, funcs[0]);
      }
    
      TF_DeleteFunction(funcs[0]);
      TF_DeleteFunction(funcs[1]);
    
      TF_DeleteFunction(func0);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  2. src/main/java/jcifs/smb/SmbFile.java

     * <tr>
     * <td width="20%"><b>URL</b></td>
     * <td><b>Description</b></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>smb://users-nyc;miallen:mypass@angus/tmp/</code></td>
     * <td>
     * This URL references a share called <code>tmp</code> on the server
     * <code>angus</code> as user <code>miallen</code> who's password is
     * <code>mypass</code>.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // `funcs` and sets status to OK. The caller takes ownership of
    // all the returned TF_Functions. They must be deleted with TF_DeleteFunction.
    // On error, returns 0, sets status to the encountered error, and the contents
    // of funcs will be undefined.
    TF_CAPI_EXPORT extern int TF_GraphGetFunctions(TF_Graph* g, TF_Function** funcs,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top