- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 289 for _comment (0.06 seconds)
-
.github/workflows/issue-comment-triage.yml
name: Comment on a closed issue on: issue_comment: types: [created] jobs: reconsider_closed_issue: runs-on: ubuntu-latest permissions: issues: write steps:Created: 2026-04-01 11:36 - Last Modified: 2026-03-18 13:38 - 253 bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
return; } Text comment = (Text) firstNode.getFirstChild(); Matcher matcher = ACCESSOR_COMMENT_PATTERN.matcher(comment.getData()); if (matcher.lookingAt()) { String theOrWhether = matcher.group(1).toLowerCase(Locale.US); comment.setData(StringUtils.capitalize(theOrWhether) + " " + comment.getData().substring(matcher.end())); } }Created: 2026-04-01 11:36 - Last Modified: 2025-05-21 06:20 - 29.3K bytes - Click Count (0) -
scripts/notify_translations.py
) for comment in comments: if new_translation_message in comment.body: already_notified_comment = comment elif done_translation_message in comment.body: already_done_comment = comment logging.info( f"Already notified comment: {already_notified_comment}, already done comment: {already_done_comment}" )Created: 2026-04-05 07:19 - Last Modified: 2026-02-17 09:59 - 12.6K bytes - Click Count (0) -
internal/config/config.go
currKVS.Set(kv.Key, kv.Value) } } } for _, kv := range kvs { if kv.Key == Comment { // Skip comment and add it later. continue } currKVS.Set(kv.Key, kv.Value) } v, ok := kvs.Lookup(Comment) if ok { currKVS.Set(Comment, v) } hkvs := HelpSubSysMap[subSys] for _, hkv := range hkvs { var enabled bool if enableRequired {
Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 37.7K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md
``` ### Code blocks with comments that don't follow pattern { #code-blocks-with-comments-without-pattern } Fixer tool expects comments that follow specific pattern: - For hash-style comments: comment starts with `# ` (hash following by whitespace) in the beginning of the string or after a whitespace.
Created: 2026-04-05 07:19 - Last Modified: 2026-02-17 08:08 - 7.6K bytes - Click Count (0) -
scripts/deploy_docs_status.py
message += "\n" print(message) issue = use_pr.as_issue() comments = list(issue.get_comments()) for comment in comments: if ( comment.body.startswith(header) and comment.user.login == "github-actions[bot]" ): comment.edit(message) break else: issue.create_comment(message)Created: 2026-04-05 07:19 - Last Modified: 2025-09-30 05:56 - 4.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
} /** * Checks if parts of the passed in comment can be used as header comment. * This method checks whether a header comment can be defined (i.e. whether * this is the first comment in the loaded file). If this is the case, it is * searched for the lates blank line. This line will mark the end of the * header comment. The return value is the index of the first line in theCreated: 2026-04-05 03:35 - Last Modified: 2025-07-23 17:27 - 38.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
} /** * Checks if parts of the passed in comment can be used as header comment. * This method checks whether a header comment can be defined (i.e. whether * this is the first comment in the loaded file). If this is the case, it is * searched for the lates blank line. This line will mark the end of the * header comment. The return value is the index of the first line in theCreated: 2026-04-05 03:35 - Last Modified: 2025-10-16 09:03 - 38.5K bytes - Click Count (0) -
scripts/doc_parsing_utils.py
code = match.group("code").rstrip() comment = match.group("comment") return code, comment return line.rstrip(), None def _split_slashes_comment(line: str) -> tuple[str, str | None]: match = SLASHES_COMMENT_RE.match(line) if match: code = match.group("code").rstrip() comment = match.group("comment") return code, comment return line, None
Created: 2026-04-05 07:19 - Last Modified: 2026-03-19 17:37 - 23.5K bytes - Click Count (0) -
scripts/people.py
Created: 2026-04-05 07:19 - Last Modified: 2026-03-23 13:51 - 15K bytes - Click Count (0)