Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for placeholder (0.19 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    
      // Add a placeholder to the graph.
      auto* placeholder_op = TF_NewAbstractOp(graph_ctx);
      TF_AbstractOpSetOpType(placeholder_op, "Placeholder", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
      TF_AbstractOpSetOpName(placeholder_op, "my_ph", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 19 21:44:52 GMT 2023
    - 39.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Strings.java

       * Preconditions} class use this formatter, for both of the reasons just discussed.
       *
       * <p><b>Warning:</b> Only the exact two-character placeholder sequence {@code "%s"} is
       * recognized.
       *
       * @param template a string containing zero or more {@code "%s"} placeholder sequences. {@code
       *     null} is treated as the four-character string {@code "null"}.
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Sep 17 20:47:03 GMT 2021
    - 12.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_test.cc

      TF_OperationDescription* placeholder_desc =
          TF_NewOperation(body.get(), "Placeholder", "Placeholder");
      TF_SetAttrType(placeholder_desc, "dtype", TF_FLOAT);
      TF_Operation* placeholder_op = TF_FinishOperation(placeholder_desc, status);
      if (TF_GetCode(status) != TF_OK) return;
      TF_Output x{placeholder_op, 0};
    
      TF_OperationDescription* reduce_desc =
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 08 23:47:35 GMT 2021
    - 29.3K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/base/Strings.java

       * Preconditions} class use this formatter, for both of the reasons just discussed.
       *
       * <p><b>Warning:</b> Only the exact two-character placeholder sequence {@code "%s"} is
       * recognized.
       *
       * @param template a string containing zero or more {@code "%s"} placeholder sequences. {@code
       *     null} is treated as the four-character string {@code "null"}.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 09 00:49:18 GMT 2021
    - 12.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ja.properties

    labels.profile=パスワード変更
    labels.administration=管理
    labels.profile_button=設定
    labels.profile.title= 設定
    labels.profile.update= 更新
    labels.profile.back= 戻る
    labels.profile.placeholder_old_password= 現在のパスワード
    labels.profile.placeholder_new_password= 新しいパスワード
    labels.profile.placeholder_confirm_new_password= 新しいパスワードの確認
    labels.top.search=検索
    labels.index_title=Fess
    labels.index_form_search_btn=検索
    labels.index_osdd_title=検索
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  6. tensorflow/c/c_api_experimental.cc

        return;
      }
    
      TF_Operation* placeholder_op = TF_GraphOperationByName(
          session->graph,
          tensorflow::strings::StrCat("arg_tensor_enqueue_", tensor_id).c_str());
      if (placeholder_op == nullptr) {
        status->status = tensorflow::errors::Internal(
            "Unable to find the placeholder node as input to enqueue in the TF "
            "graph.");
        return;
      }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_label.properties

    labels.administration=Administration
    labels.profile_button=Profile
    labels.profile.title=Profile
    labels.profile.update=Update
    labels.profile.back=Back
    labels.profile.placeholder_old_password=Current Password
    labels.profile.placeholder_new_password=New Password
    labels.profile.placeholder_confirm_new_password=Confirm New Password
    labels.top.search=Search
    labels.index_title=Fess
    labels.index_form_search_btn=Search
    labels.index_osdd_title=Search
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  8. src/main/resources/fess_label_en.properties

    labels.administration=Administration
    labels.profile_button=Profile
    labels.profile.title=Profile
    labels.profile.update=Update
    labels.profile.back=Back
    labels.profile.placeholder_old_password=Current Password
    labels.profile.placeholder_new_password=New Password
    labels.profile.placeholder_confirm_new_password=Confirm New Password
    labels.top.search=Search
    labels.index_title=Fess
    labels.index_form_search_btn=Search
    labels.index_osdd_title=Search
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_fr.properties

    labels.profile_button	=	Profil
    labels.profile.title	=	Profil
    labels.profile.update	=	Mise à jour
    labels.profile.back	=	Retour
    labels.profile.placeholder_old_password	=	Mot de passe actuel
    labels.profile.placeholder_new_password	=	nouveau mot de passe
    labels.profile.placeholder_confirm_new_password=Confirmer le nouveau mot de passe
    labels.top.search=Recherche
    labels.index_title=Fess
    labels.index_form_search_btn	=	Recherche
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  10. tensorflow/c/c_test_util.cc

      TF_OperationDescription* desc = TF_NewOperation(graph, "Placeholder", name);
      TF_SetAttrType(desc, "dtype", dtype);
      if (!dims.empty()) {
        TF_SetAttrShape(desc, "shape", dims.data(), dims.size());
      }
      *op = TF_FinishOperation(desc, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_NE(*op, nullptr);
    }
    
    TF_Operation* Placeholder(TF_Graph* graph, TF_Status* s, const char* name,
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
Back to top