- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 221 for _comment (0.15 sec)
-
istio.deps
[ { "_comment": "", "name": "PROXY_REPO_SHA", "repoName": "proxy", "file": "", "lastStableSHA": "b641be303d8bf9080c3c36cb23070ea67c657eb5" }, { "_comment": "", "name": "ZTUNNEL_REPO_SHA", "repoName": "ztunnel", "file": "", "lastStableSHA": "57a0862200915531c8926e4ef8f802a006ba521d" }
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 16:12:55 UTC 2024 - 335 bytes - Viewed (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 {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 37.7K bytes - Viewed (0) -
src/archive/zip/testdata/comment-truncated.zip
Damien Neil <******@****.***> 1715722750 -0700
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Thu May 16 15:56:19 UTC 2024 - 216 bytes - Viewed (0) -
.github/actions/notify-translations/app/main.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}" )
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 12.4K bytes - Viewed (0) -
doc/README.md
your release note in the form `/issue/NUMBER`. A link to the issue in the text will have this form (see below). If you don't want to mention the issue in the text, add it as a comment: ``` <!-- go.dev/issue/12345 --> ``` If an accepted proposal is mentioned in a CL but not in the release notes, it will be flagged as a TODO by the automated tooling. That is true even for proposals that add API.
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Mon Jul 22 17:55:04 UTC 2024 - 3.1K bytes - Viewed (0) -
.github/actions/people/app/main.py
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:13:50 UTC 2024 - 19.2K bytes - Viewed (0) -
cni/pkg/ipset/nldeps_linux.go
func (m *realDeps) destroySet(name string) error { err := netlink.IpsetDestroy(name) return err } func (m *realDeps) addIP(name string, ip netip.Addr, ipProto uint8, comment string, replace bool) error { err := netlink.IpsetAdd(name, &netlink.IPSetEntry{ Comment: comment, IP: net.IP(ip.AsSlice()), Protocol: &ipProto, Replace: replace, }) if err != nil {
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Thu Jul 18 23:53:18 UTC 2024 - 4.1K bytes - Viewed (0) -
src/cmd/cgo/ast.go
pieces := make([]string, 0, len(g.List)) for _, com := range g.List { c := com.Text // Remove comment markers. // The parser has given us exactly the comment text. switch c[1] { case '/': //-style comment (no newline at the end) c = c[2:] + "\n" case '*': /*-style comment */ c = c[2 : len(c)-2] } pieces = append(pieces, c) } return strings.Join(pieces, "") }
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
String className = outerClass == null ? packageName + '.' + baseName : outerClass.getClassName() + '.' + baseName; String comment = getJavadocComment(typeDeclaration); ClassMetaData currentClass = new ClassMetaData(className, packageName, metaType, false, comment); if (outerClass != null) { outerClass.addInnerClassName(className);
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/endtoend_test.go
// // comment // INST args [// printed form] [// hex encoding] parts := strings.Split(line, "//") printed := strings.TrimSpace(parts[0]) if printed == "" || strings.HasSuffix(printed, ":") { // empty or label continue } seq++ var hexes string switch len(parts) { default: t.Errorf("%s:%d: unable to understand comments: %s", input, lineno, line) case 1:
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Thu Dec 07 18:42:59 UTC 2023 - 11.6K bytes - Viewed (0)