Home
last modified time | relevance | path

Searched refs:new_note (Results 1 – 25 of 151) sorted by relevance

1234567

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/services/notes/
H A Dbuild_service_spec.rb25 expect(new_note).to be_valid
38 expect(new_note).to be_valid
46 expect(new_note).to be_valid
84 new_note = reply(note)
86 expect(new_note).to be_valid
98 expect(new_note).to be_valid
103 new_note = reply(note)
121 new_note = reply(note)
141 expect(new_note).to be_valid
150 expect(new_note).to be_valid
[all …]
H A Dcopy_service_spec.rb51 new_note = to_noteable.notes.first
53 expect(new_note).to have_attributes(
74 new_note = to_noteable.notes.last
77 expect(new_note.system_note_metadata.action).to eq(system_note_metadata.action)
78 expect(new_note.system_note_metadata.id).not_to eq(system_note_metadata.id)
113 new_note = to_noteable.notes.first
118 expect(new_note.note).to eq(expected_text)
119 expect(new_note.author).to eq(note.author)
131 new_note = to_noteable.notes.first
136 expect(note.note).not_to eq(new_note.note)
[all …]
/dports/audio/gbsplay/gbsplay-0.0.94/
H A Dplugout_midi.c212 event[1] = new_note; in note_on()
218 note[channel] = new_note; in note_on()
262 int new_note; in midi_io() local
284 if (new_note < 0 || new_note >= 0x80) in midi_io()
304 if (new_note != note[chan]) { in midi_io()
309 if (new_note < 0 || new_note >= 0x80) in midi_io()
324 new_note = NOTE(2048 - div[chan]) + 21; in midi_io()
331 if (new_note < 0 || new_note >= 0x80) in midi_io()
341 if (new_note != note[chan]) { in midi_io()
346 if (new_note < 0 || new_note >= 0x80) in midi_io()
[all …]
H A Dplugout_altmidi.c213 static int note_on(long cycles, int channel, int new_note) in note_on() argument
218 event[1] = new_note; in note_on()
224 note[channel] = new_note; in note_on()
266 int new_note; in midi_step() local
275 new_note = NOTE(ch->div_tc) + 21; in midi_step()
276 if (new_note != note[c]) { in midi_step()
279 if (new_note < 0 || new_note >= 0x80) in midi_step()
281 if (note_on(cycles, c, new_note)) in midi_step()
291 new_note = NOTE(ch->div_tc) + 21; in midi_step()
292 if (new_note < 0 || new_note >= 0x80) in midi_step()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/extensions/common/manifest_handlers/
H A Daction_handlers_handler_unittest.cc85 scoped_refptr<Extension> new_note = in TEST_F() local
89 GetActionHandlers(new_note.get())); in TEST_F()
139 LoadAndExpectError(CreateManifest(R"(["new_note", {"action": "new_note"}])"), in TEST_F()
142 R"(["new_note", { in TEST_F()
143 "action": "new_note", in TEST_F()
148 R"(["new_note", { in TEST_F()
149 "action": "new_note", in TEST_F()
155 "action": "new_note" in TEST_F()
157 "action": "new_note", in TEST_F()
163 "action": "new_note", in TEST_F()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/extensions/common/manifest_handlers/
H A Daction_handlers_handler_unittest.cc85 scoped_refptr<Extension> new_note = in TEST_F() local
89 GetActionHandlers(new_note.get())); in TEST_F()
139 LoadAndExpectError(CreateManifest(R"(["new_note", {"action": "new_note"}])"), in TEST_F()
142 R"(["new_note", { in TEST_F()
143 "action": "new_note", in TEST_F()
148 R"(["new_note", { in TEST_F()
149 "action": "new_note", in TEST_F()
155 "action": "new_note" in TEST_F()
157 "action": "new_note", in TEST_F()
163 "action": "new_note", in TEST_F()
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/email/handler/
H A Dcreate_note_handler_spec.rb64 new_note = noteable.notes.last
66 expect(new_note.author).to eq(sent_notification.recipient)
67 expect(new_note.position).to eq(note.position)
68 expect(new_note.note).to include('I could not disagree more.')
69 expect(new_note.in_reply_to?(note)).to be_truthy
71 expect(new_note.discussion_id).to eq(note.discussion_id)
91 new_note = noteable.notes.last
93 expect(new_note.author).to eq(sent_notification.recipient)
94 expect(new_note.position).to eq(note.position)
142 new_note = noteable.notes.last
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/models/
H A Dsent_notification_spec.rb216 new_note = subject.create_reply('Test')
217 expect(new_note.in_reply_to?(note)).to be_truthy
228 new_note = subject.create_reply('Test')
229 expect(new_note.in_reply_to?(note)).to be_truthy
251 new_note = subject.create_reply('Test')
252 expect(new_note.in_reply_to?(note)).to be_truthy
263 new_note = subject.create_reply('Test')
275 new_note = subject.create_reply('Test')
299 new_note = subject.create_reply('Test')
311 new_note = subject.create_reply('Test')
[all …]
/dports/audio/aubio/aubio-0.4.9/python/demos/
H A Ddemo_wav2midi.py59 new_note = notes_o(samples) variable
60 if (new_note[0] != 0):
61 note_str = ' '.join(["%.2f" % i for i in new_note])
62 print("%.6f" % (total_frames/float(samplerate)), new_note)
64 if new_note[2] > 0:
65 track.append(Message('note_off', note=int(new_note[2]),
69 note=int(new_note[0]),
70 velocity=int(new_note[1]),
H A Ddemo_notes.py32 new_note = notes_o(samples) variable
33 if (new_note[0] != 0):
34 note_str = ' '.join(["%.2f" % i for i in new_note])
35 print("%.6f" % (total_frames/float(samplerate)), new_note)
/dports/audio/py-aubio/aubio-0.4.9/python/demos/
H A Ddemo_wav2midi.py59 new_note = notes_o(samples) variable
60 if (new_note[0] != 0):
61 note_str = ' '.join(["%.2f" % i for i in new_note])
62 print("%.6f" % (total_frames/float(samplerate)), new_note)
64 if new_note[2] > 0:
65 track.append(Message('note_off', note=int(new_note[2]),
69 note=int(new_note[0]),
70 velocity=int(new_note[1]),
H A Ddemo_notes.py32 new_note = notes_o(samples) variable
33 if (new_note[0] != 0):
34 note_str = ' '.join(["%.2f" % i for i in new_note])
35 print("%.6f" % (total_frames/float(samplerate)), new_note)
/dports/devel/bugzilla50/bugzilla-5.0.4/contrib/
H A Djb2bz.py75 new_note = {}
79 new_note['text'] = notes.read()
80 new_note['timestamp'] = time.gmtime(s[stat.ST_MTIME])
84 current['notes'].append(new_note)
90 new_note = {}
98 new_note = {}
102 new_note['text'] = "%s\n%s" % (msg['From'], part.get_payload())
103 current["notes"].append(new_note)
107 new_note['text'] = "%s\n%s" % (msg['From'], msg.get_payload())
108new_note['timestamp'] = time.gmtime(email.utils.mktime_tz(email.utils.parsedate_tz(msg['Date'])))
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/notes/
H A Dcopy_service.rb32 new_note = note.dup
33 new_params = params_from_note(note, new_note)
34 new_note.update!(new_params)
36 copy_award_emoji(note, new_note)
39 def params_from_note(note, new_note) argument
40 new_discussion_ids[note.discussion_id] ||= Discussion.discussion_id(new_note)
/dports/deskutils/gnote/gnote-41.1/src/
H A Dnotemanager.cpp261 auto new_note = NoteManagerBase::create_note(std::move(title), std::move(body), guid); in create_note() local
264 std::static_pointer_cast<Note>(new_note)->get_buffer()->select_note_body(); in create_note()
266 return new_note; in create_note()
273 NoteBase::Ptr new_note = NoteManagerBase::create_new_note(title, xml_content, guid); in create_new_note() local
276 m_addin_mgr->load_addins_for_note(std::static_pointer_cast<Note>(new_note)); in create_new_note()
278 return new_note; in create_new_note()
304 if(new_note == 0) { in create_note_from_template()
305 return new_note; in create_note_from_template()
311 new_note->data().height() = template_note->data().height(); in create_note_from_template()
312 new_note->data().width() = template_note->data().width(); in create_note_from_template()
[all …]
H A Dnotemanagerbase.cpp274 NoteBase::Ptr new_note = create_new_note(new_title, xml_content, guid); in create_note_from_template() local
279 new_note->data().height() = template_note->data().height(); in create_note_from_template()
280 new_note->data().width() = template_note->data().width(); in create_note_from_template()
283 return new_note; in create_note_from_template()
341 NoteBase::Ptr new_note = note_create_new(title, filename); in create_new_note() local
342 if(new_note == 0) { in create_new_note()
345 new_note->set_xml_content(xml_content); in create_new_note()
347 new_note->signal_saved.connect(sigc::mem_fun(*this, &NoteManagerBase::on_note_save)); in create_new_note()
349 m_notes.push_back(new_note); in create_new_note()
351 signal_note_added(new_note); in create_new_note()
[all …]
/dports/devel/bugzilla44/bugzilla-4.4.13/contrib/
H A Djb2bz.py75 new_note = {}
79 new_note['text'] = notes.read()
80 new_note['timestamp'] = time.gmtime(s[stat.ST_MTIME])
84 current['notes'].append(new_note)
90 new_note = {}
93 new_note['text'] = "%s\n%s" % (msg['From'], msg.fp.read())
94 new_note['timestamp'] = email.utils.parsedate_tz(msg['Date'])
95 current["notes"].append(new_note)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/
H A Dseeder_spec.rb24 notification_service.new_note(note)
27 expect(notification_service.new_note(note)).to eq(nil)
30 notification_service.new_note(note)
/dports/audio/aubio/aubio-0.4.9/python/tests/
H A Dtest_notes.py75 new_note = notes_o(samples)
76 if (new_note[0] != 0):
77 note_str = ' '.join(["%.2f" % i for i in new_note])
78 results.append( [total_frames, np.copy(new_note)] )
/dports/audio/py-aubio/aubio-0.4.9/python/tests/
H A Dtest_notes.py75 new_note = notes_o(samples)
76 if (new_note[0] != 0):
77 note_str = ' '.join(["%.2f" % i for i in new_note])
78 results.append( [total_frames, np.copy(new_note)] )
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imap/
H A Djmap_notes.c585 *new_note = json_object(); in _note_create()
591 json_object_set_new(*new_note, "id", json_string(uid)); in _note_create()
632 json_object_set_new(*new_note, "body", json_string(body)); in _note_create()
637 else json_object_set_new(*new_note, "isHTML", json_false()); in _note_create()
641 else json_object_set_new(*new_note, "isFlagged", json_false()); in _note_create()
717 json_decref(*new_note); in _note_create()
718 *new_note = NULL; in _note_create()
757 if (new_note) { in _notes_update_cb()
759 json_decref(new_note); in _notes_update_cb()
889 json_t *new_note = NULL; in jmap_notes_set() local
[all …]
/dports/science/gramps/gramps-5.1.4/gramps/plugins/importer/
H A Dimportcsv.py491 new_note = Note()
492 new_note.handle = create_id()
494 new_note.set(note)
567 new_note = Note()
568 new_note.handle = create_id()
570 new_note.set(note)
574 child.add_note(new_note.handle)
672 new_note = Note()
673 new_note.handle = create_id()
675 new_note.set(note)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/extensions/action_handlers/
H A Daction_handlers_apitest.cc29 ExtensionTestMessageListener new_note("hasNewNote = true", false); in IN_PROC_BROWSER_TEST_F() local
34 EXPECT_TRUE(new_note.WaitUntilSatisfied()); in IN_PROC_BROWSER_TEST_F()
/dports/devel/grpc/grpc-1.42.0/examples/python/route_guide/
H A Droute_guide_server.py105 for new_note in request_iterator:
107 if prev_note.location == new_note.location:
109 prev_notes.append(new_note)
/dports/devel/grpc134/grpc-1.34.1/examples/python/route_guide/
H A Droute_guide_server.py106 for new_note in request_iterator:
108 if prev_note.location == new_note.location:
110 prev_notes.append(new_note)

1234567