Home
last modified time | relevance | path

Searched refs:new_comment (Results 1 – 25 of 175) sorted by relevance

1234567

/dports/net-mgmt/nagios/nagios-3.5.1/common/
H A Dcomments.c418 if(!new_comment) in add_comment_to_hashlist()
470 comment *new_comment = NULL; in add_comment() local
497 new_comment->source = source; in add_comment()
513 my_free(new_comment->author); in add_comment()
515 my_free(new_comment->host_name); in add_comment()
516 my_free(new_comment); in add_comment()
522 comment_list = new_comment; in add_comment()
537 comment_list = new_comment; in add_comment()
546 new_comment->next = NULL; in add_comment()
547 comment_list = new_comment; in add_comment()
[all …]
/dports/net-mgmt/nagios4/nagios-4.4.6/common/
H A Dcomments.c361 if(!new_comment) in add_comment_to_hashlist()
440 new_comment->source = source; in add_comment()
456 my_free(new_comment->author); in add_comment()
458 my_free(new_comment->host_name); in add_comment()
459 my_free(new_comment); in add_comment()
464 new_comment->next = comment_list; in add_comment()
465 comment_list = new_comment; in add_comment()
474 comment_list = new_comment; in add_comment()
483 new_comment->next = NULL; in add_comment()
484 comment_list = new_comment; in add_comment()
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/system/
H A Dpam_limits.py173 new_comment = module.params['comment']
228 if not new_comment:
229 new_comment = old_comment
275 if new_comment:
276 new_comment = "\t#" + new_comment
277 … new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
288 if new_comment:
289 new_comment = "\t#" + new_comment
290 … new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
/dports/www/libdom/libdom-0.4.1/src/core/
H A Dcomment.c101 dom_comment *new_comment; in _dom_comment_copy() local
104 new_comment = malloc(sizeof(dom_comment)); in _dom_comment_copy()
105 if (new_comment == NULL) in _dom_comment_copy()
108 err = dom_characterdata_copy_internal(old, new_comment); in _dom_comment_copy()
110 free(new_comment); in _dom_comment_copy()
114 *copy = (dom_node_internal *) new_comment; in _dom_comment_copy()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/
H A Dpam_limits.py191 new_comment = module.params['comment']
245 if not new_comment:
246 new_comment = old_comment
297 if new_comment:
298 new_comment = "\t#" + new_comment
299 … new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
310 if new_comment:
311 new_comment = "\t#" + new_comment
312 … new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/system/
H A Dpam_limits.py191 new_comment = module.params['comment']
245 if not new_comment:
246 new_comment = old_comment
297 if new_comment:
298 new_comment = "\t#" + new_comment
299 … new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
310 if new_comment:
311 new_comment = "\t#" + new_comment
312 … new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/support/shared_examples/features/
H A Ddiscussion_comments_shared_example.rb24 new_comment = all(comments_selector).last
26 expect(new_comment).not_to have_selector '.discussion'
122 new_comment = all(comments_selector).last
124 expect(new_comment).to have_selector('.discussion')
198 new_comment = all(comments_selector).last
200 expect(new_comment).not_to have_selector '.discussion'
214 new_comment = all(comments_selector).last
216 expect(new_comment).not_to have_selector '.discussion'
279 new_comment = all(comments_selector).last
281 expect(new_comment).to have_selector('.discussion')
[all …]
/dports/devel/py-isort/isort-5.10.1/isort/
H A Dparse.py282 line, new_comment = parse_comments(in_lines[index])
284 if new_comment:
285 comments.append(new_comment)
291 and new_comment
301 if new_comment:
302 comments.append(new_comment)
315 and new_comment
324 if new_comment:
325 comments.append(new_comment)
331 and new_comment
[all …]
/dports/sysutils/py-salt/salt-3004.1/salt/states/
H A Djboss7.py419 new_comment=get_artifact_comment, current_comment=comment
443 new_comment="The artifact {} was already deployed".format(
458 new_comment="Deployment completed.", current_comment=comment
463new_comment="""Deployment failed\nreturn code={retcode}\nstdout='{stdout}'\nstderr='{stderr}""".fo…
684 def __append_comment(new_comment, current_comment=""): argument
685 if current_comment is None and new_comment is None:
688 return new_comment
689 if new_comment is None:
691 return current_comment + "\n" + new_comment
/dports/dns/dns-ui/dns-ui-0.2.7/views/
H A Dzoneimport.php69 $new_comment = $new_rrset->merge_comment_text();
100 if($old_comment == $new_comment) {
106 if($new_comment != '') {
107 $rrset_modifications[] = 'New comment: '.$new_comment;
109 $comment->content = $new_comment;
/dports/sysutils/thefish/thefish-0.6.7/
H A Dqt_ui.C551 char *new_name, *new_value, *new_comment; in DoAdd() local
600 new_comment = (char *) my_comment.ascii(); in DoAdd()
667 if (new_comment != NULL) { in DoAdd()
669 if (strlen(new_comment) > 1) { in DoAdd()
671 strncpy((my_rc_knobs+my_num_knobs)->comment, new_comment, 255); in DoAdd()
698 if (new_comment != NULL) { in DoAdd()
700 if (strlen(new_comment) > 1) { in DoAdd()
702 strncpy((my_rc_knobs+my_num_knobs)->comment, new_comment, 255); in DoAdd()
728 if (new_comment != NULL) { in DoAdd()
730 if (strlen(new_comment) > 1) { in DoAdd()
[all …]
H A Dncurses_ui.c635 char new_comment[4096]; in add_entry() local
639 memset(new_comment, 0, 4096); in add_entry()
699 "", 8, 64, new_comment); in add_entry()
715 if (strlen(new_comment) > 0) { in add_entry()
717 strncpy(rc_local.knobs_ptr[rc_local.knobs_size].comment, new_comment, 255); in add_entry()
732 if (strlen(new_comment) > 0) { in add_entry()
734 strncpy(rc_local.knobs_ptr[rc_local.knobs_size].comment, new_comment, 255); in add_entry()
753 if (strlen(new_comment) > 0) { in add_entry()
755 strncpy(rc_local.string_ptr[rc_local.string_size].comment, new_comment, 255); in add_entry()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/crypto/tests/unit/plugins/module_utils/openssh/
H A Dtest_cryptography.py214 new_comment = "comment"
216 pair.comment = new_comment
221 assert pair.comment == new_comment and pair.public_key.split(b' ', 2)[2].decode() == new_comment
229 new_comment = [1, 2, 3]
231 pair.comment = new_comment
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/features/projects/commit/comments/
H A Duser_adds_comment_spec.rb132 new_comment = "New comment"
151 fill_in("note[note]", with: new_comment)
157 …(all(".diff-file:nth-of-type(1) .notes-content.parallel.new")[1].text).to have_content(new_comment)
/dports/devel/libgdata/libgdata-0.17.13/gdata/
H A Dgdata-commentable.c318 GDataComment *new_comment; in gdata_commentable_insert_comment() local
348new_comment = GDATA_COMMENT (gdata_service_insert_entry (service, domain, uri, GDATA_ENTRY (commen… in gdata_commentable_insert_comment()
352 return new_comment; in gdata_commentable_insert_comment()
359 g_autoptr(GDataEntry) new_comment = NULL; in insert_comment_async_cb()
362 new_comment = gdata_service_insert_entry_finish (service, service_result, &error); in insert_comment_async_cb()
367 g_task_return_pointer (commentable_task, g_steal_pointer (&new_comment), g_object_unref); in insert_comment_async_cb()
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/core/tests/
H A Dtest_comments.py30 self.new_comment = self.create_comment(self.revision_3)
43 self.new_comment.refresh_from_db()
/dports/www/py-html5-parser/html5-parser-0.4.10/src/
H A Das-python-tree.c157 convert_node(GumboNode* node, GumboElement **elem, PyObject *new_tag, PyObject *new_comment, PyObje… in convert_node() argument
179 STRING_LIKE(new_comment); in convert_node()
191 as_python_tree(GumboOutput *gumbo_output, Options *opts, PyObject *new_tag, PyObject *new_comment, … in as_python_tree() argument
203 child = convert_node(gumbo, &elem, new_tag, new_comment, new_string); in as_python_tree()
/dports/biology/gatk/gatk-4.2.0.0/scripts/travis/
H A DReporter.py56 def new_comment(pull): function
73 new_comment(pull)
/dports/net/py-amqp/amqp-2.6.1/extra/
H A Dupdate_comments_from_spec.py51 def replace_comment_per_def(source, result_file, def_name, new_comment): argument
56 result = re.sub(regex, '\g<methodsig>' + new_comment, source, 0,
/dports/www/trac-devel/Trac-1.5.3/trac/wiki/
H A Dmodel.py233 def edit_comment(self, new_comment): argument
242 (new_comment, self.name, self.version))
244 self.comment = new_comment
246 self.name, self.version, new_comment)
/dports/ports-mgmt/ports-tools/ports-tools-1.8/
H A Dpcheck80 new_comment=$(echo "$comment" | awk '{
84 sed_expr="s|^COMMENT=.*|COMMENT= $new_comment|"
/dports/biology/py-biopython/biopython-1.79/Tests/
H A Dseq_tests_common.py246 new_comment = " ".join(new.annotations[key])
248 new_comment = new.annotations[key]
250 new_comment = new_comment.replace("\n", " ").replace(" ", " ")
253 new_comment,
/dports/games/colobot/colobot-colobot-gold-0.2.0-alpha/data/i18n-tools/scripts/
H A Dcommon.py87 new_comment = previous_comment
93 new_comment += ', ' + type_comment
95 return new_comment
/dports/security/py-certbot-apache/certbot-apache-1.22.0/certbot_apache/_internal/
H A Dapacheparser.py127 new_comment = ApacheCommentNode(comment=assertions.PASS,
131 self.children += (new_comment,)
132 return new_comment
/dports/math/gnumeric/gnumeric-1.12.50/src/
H A Dsheet-object-cell-comment.c352 GnmComment *new_comment = GNM_CELL_COMMENT (dst); in cell_comment_copy() local
353 new_comment->author = g_strdup (comment->author); in cell_comment_copy()
354 new_comment->text = g_strdup (comment->text); in cell_comment_copy()
355 new_comment->markup = comment->markup; in cell_comment_copy()
356 pango_attr_list_ref (new_comment->markup); in cell_comment_copy()

1234567