Home
last modified time | relevance | path

Searched refs:bad_parts (Results 1 – 14 of 14) sorted by relevance

/dports/textproc/p5-Data-FormValidator-Constraints-DateTime/Data-FormValidator-Constraints-DateTime-1.11/t/
H A Ddates.t179 my @bad_parts = split(/-/, $future_date);
186 bad_m => $bad_parts[0],
187 bad_d => $bad_parts[1],
188 bad_y => $bad_parts[2],
216 my @bad_parts = split(/-/, $past_date);
223 bad_m => $bad_parts[0],
224 bad_d => $bad_parts[1],
225 bad_y => $bad_parts[2],
H A D3x_dates.t196 my @bad_parts = split(/-/, $future_date);
203 bad_m => $bad_parts[0],
204 bad_d => $bad_parts[1],
205 bad_y => $bad_parts[2],
243 my @bad_parts = split(/-/, $past_date);
250 bad_m => $bad_parts[0],
251 bad_d => $bad_parts[1],
252 bad_y => $bad_parts[2],
/dports/astro/py-metpy/MetPy-1.1.0/tests/units/
H A Dtest_units.py94 def test_bad(func, args, kwargs, bad_parts): argument
101 for param in bad_parts:
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/files/
H A DFileUploader.h33 …const FileEncryptionKey &encryption_key, std::vector<int> bad_parts, unique_ptr<Callback> callback…
H A DFileLoadManager.cpp67 … const FileEncryptionKey &encryption_key, int8 priority, vector<int> bad_parts) { in upload() argument
78 std::move(bad_parts), std::move(callback)); in upload()
H A DFileUploader.cpp29 const FileEncryptionKey &encryption_key, std::vector<int> bad_parts, in FileUploader() argument
35 , bad_parts_(std::move(bad_parts)) in FileUploader()
H A DFileLoadManager.h52 …nt64 expected_size, const FileEncryptionKey &encryption_key, int8 priority, vector<int> bad_parts);
H A DFileManager.h447 …void resume_upload(FileId file_id, std::vector<int> bad_parts, std::shared_ptr<UploadCallback> cal…
636 void run_upload(FileNodePtr node, std::vector<int> bad_parts);
H A DFileManager.cpp2478 void FileManager::resume_upload(FileId file_id, std::vector<int> bad_parts, std::shared_ptr<UploadC… in resume_upload() argument
2489 if (bad_parts.size() == 1 && bad_parts[0] == -1) { in resume_upload()
2557 run_upload(node, std::move(bad_parts)); in resume_upload()
2715 void FileManager::run_upload(FileNodePtr node, std::vector<int> bad_parts) { in run_upload() argument
2815 auto new_priority = narrow_cast<int8>(bad_parts.empty() ? -priority : priority); in run_upload()
2816 td::remove_if(bad_parts, [](auto part_id) { return part_id < 0; }); in run_upload()
2826 expected_size, node->encryption_key_, new_priority, std::move(bad_parts)); in run_upload()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/align/prosplign/
H A DInfo.cpp760 list<TSeqRange> bad_parts; in InvertPartList() local
766 bad_parts.push_back(TSeqRange(tail_beg,i->beg-1)); in InvertPartList()
770 bad_parts.push_back(TSeqRange(tail_beg,tail_end)); in InvertPartList()
772 return bad_parts; in InvertPartList()
998 …list<TSeqRange> bad_parts = InvertPartList(good_parts, TSeqRange(chunks.front().m_ali_range.GetFro… in RefineAlignment() local
1002 ITERATE(list<TSeqRange>, bad_part, bad_parts) { in RefineAlignment()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DMessagesManager.h933 bool is_reupload, Promise<Unit> &&promise, vector<int> bad_parts = {});
1937 void do_send_message(DialogId dialog_id, const Message *m, vector<int> bad_parts = {});
3041 Promise<Unit> &&promise, vector<int> bad_parts = {});
3047 Promise<Unit> &&promise, vector<int> bad_parts = {});
H A DContactsManager.h1194 int reupload_count = 0, vector<int> bad_parts = {});
H A DMessagesManager.cpp24521 void MessagesManager::do_send_message(DialogId dialog_id, const Message *m, vector<int> bad_parts) { in do_send_message() argument
24526 if (m->media_album_id != 0 && bad_parts.empty() && !is_secret && !is_edit) { in do_send_message()
24558 …td_->file_manager_->resume_upload(file_id, std::move(bad_parts), upload_media_callback_, 1, m->mes… in do_send_message()
24564 …nput_media(content, td_, m->ttl, m->send_emoji, td_->auth_manager_->is_bot() && bad_parts.empty()); in do_send_message()
24573 LOG(INFO) << "Ask to upload file " << file_id << " with bad parts " << bad_parts; in do_send_message()
27645 … bool is_reupload, Promise<Unit> &&promise, vector<int> bad_parts) { in upload_imported_messages() argument
27653 …td_->file_manager_->resume_upload(file_id, std::move(bad_parts), upload_imported_messages_callback… in upload_imported_messages()
27691 vector<int> bad_parts) { in upload_imported_message_attachment() argument
27700 …td_->file_manager_->resume_upload(file_id, std::move(bad_parts), upload_imported_message_attachmen… in upload_imported_message_attachment()
32037 vector<int> bad_parts) { in upload_dialog_photo() argument
[all …]
H A DContactsManager.cpp6120 … Promise<Unit> &&promise, int reupload_count, vector<int> bad_parts) { in upload_profile_photo() argument
6126 << " with bad parts " << bad_parts; in upload_profile_photo()
6128 …td_->file_manager_->resume_upload(file_id, std::move(bad_parts), upload_profile_photo_callback_, 3… in upload_profile_photo()