- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for commenters (0.05 sec)
-
scripts/people.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 12.3K bytes - Viewed (0) -
scripts/notify_translations.py
class AddCommentResponse(BaseModel): data: AddCommentData class CommentsEdge(BaseModel): node: Comment cursor: str class Comments(BaseModel): edges: list[CommentsEdge] class CommentsDiscussion(BaseModel): comments: Comments class CommentsRepository(BaseModel): discussion: CommentsDiscussion class CommentsData(BaseModel):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 12.7K bytes - Viewed (0) -
fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_empty.txt
# This file contains only comments and whitespace
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 72 bytes - Viewed (0) -
fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt
Allow: /also-spaced/ # Case 5: Mixed case directives (should still work) UsEr-AgEnT: MixedCaseBot DiSaLlOw: /test1/ AlLoW: /test2/ CrAwL-dElAy: 2 SiTeMaP: http://example.com/sitemap.xml # Case 6: Comments in various positions User-agent: CommentBot # inline comment Disallow: /path1/ # another comment # Full line comment Allow: /path2/ # Case 7: Empty lines and whitespace-only lines User-agent: EmptyLineBot
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
return m.group(1); } return null; } /** * Strips comments from a line (everything after '#' character). * @param line the line to strip comments from * @return the line without comments */ protected String stripComment(final String line) { final int commentIndex = line.indexOf('#'); if (commentIndex != -1) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 11.4K bytes - Viewed (0) -
scripts/deploy_docs_status.py
if link.en_link: message += f" - ([English]({link.en_link}))" 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) breakRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 05:56:53 UTC 2025 - 4.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 09:03:48 UTC 2025 - 38.5K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/JvmConfigParser.java
} return result.toString(); } /** * Process a single line: remove comments, trim whitespace, and replace placeholders. */ private static String processLine(String line, String mavenProjectBasedir) { // Remove comments int commentIndex = line.indexOf('#'); if (commentIndex >= 0) { line = line.substring(0, commentIndex);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 10 16:40:06 UTC 2025 - 6.4K bytes - Viewed (0) -
.github/workflows/issue-manager.yml
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 19:36:25 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/header.jsp
<c:if test="${not empty forumLink}"> <li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.tooltip_forum" />"><a class="nav-link" href="${forumLink}" target="_forum"><i class="fas fa-comments" aria-hidden="true"></i></a></li> </c:if> <c:if test="${not empty helpLink}"> <li class="nav-item" data-toggle="tooltip" data-placement="left"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 2.4K bytes - Viewed (0)