- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 495 for _comment (0.24 seconds)
-
src/cmd/asm/internal/lex/tokenizer.go
return t.line } func (t *Tokenizer) Col() int { return t.s.Pos().Column } func (t *Tokenizer) Next() ScanToken { s := t.s for { t.tok = ScanToken(s.Scan()) if t.tok != scanner.Comment { break } text := s.TokenText() t.line += strings.Count(text, "\n") if constraint.IsGoBuild(text) { t.tok = BuildComment break } } switch t.tok { case '\n':
Created: 2026-04-07 11:13 - Last Modified: 2022-08-04 20:35 - 3K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/translated_doc_expected.md
# Тестовый инструмент исправления переводов { #test-translation-fixer } ## Блоки кода с комментариями и без комментариев { #code-blocks-with-and-without-comments } Это тестовая страница для инструмента исправления переводов. ### Блоки кода с комментариями { #code-blocks-with-comments } Следующие блоки кода содержат комментарии в разных стилях. Инструмент исправления должен исправлять содержимое, но корректно сохранять комментарии. ```pythonCreated: 2026-04-05 07:19 - Last Modified: 2026-02-17 08:08 - 10.9K bytes - Click Count (0) -
src/archive/zip/writer.go
return w.cw.w.(*bufio.Writer).Flush() } // SetComment sets the end-of-central-directory comment field. // It can only be called before [Writer.Close]. func (w *Writer) SetComment(comment string) error { if len(comment) > uint16max { return errors.New("zip: Writer.Comment too long") } w.comment = comment return nil } // Close finishes writing the zip file by writing the central directory.
Created: 2026-04-07 11:13 - Last Modified: 2025-01-28 04:20 - 19.4K bytes - Click Count (0) -
okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/SimpleIdnaMappingTable.kt
// Exhaust this source. else -> skip(newline + 1) } } /** * Reads lines from `IdnaMappingTable.txt`. * * Comment lines are either blank or start with a `#` character. Lines may also end with a comment. * All comments are ignored. * * Regular lines contain fields separated by semicolons. *Created: 2026-04-03 11:42 - Last Modified: 2026-01-27 09:00 - 6.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
@Test public void test_reload_withEmptyLines() throws Exception { // Create content with empty lines and comments String content = "# Comment line\n" + "\n" + // empty line "word1\n" + " \n" + // whitespace line (may be treated as content) "# Another comment\n" + "word2\n"; // Write content to test file writeTestFile(content); // Reload and verifyCreated: 2026-03-31 13:07 - Last Modified: 2026-01-14 14:29 - 21.2K bytes - Click Count (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:
Created: 2026-04-07 11:13 - Last Modified: 2026-03-20 17:02 - 12.6K bytes - Click Count (0) -
api/go1.19.txt
pkg go/doc/comment, type DocLink struct, Recv string #51082 pkg go/doc/comment, type DocLink struct, Text []Text #51082 pkg go/doc/comment, type Heading struct #51082 pkg go/doc/comment, type Heading struct, Text []Text #51082 pkg go/doc/comment, type Italic string #51082 pkg go/doc/comment, type Link struct #51082 pkg go/doc/comment, type Link struct, Auto bool #51082 pkg go/doc/comment, type Link struct, Text []Text #51082
Created: 2026-04-07 11:13 - Last Modified: 2022-12-02 16:29 - 17.9K bytes - Click Count (0) -
dbflute_fess/dfprop/classificationDefinitionMap.dfprop
# ; [group-name] = map:{ # ; groupComment=[comment] # ; elementList=list:{[the list of classification element's name]} # } # } # } # # classification elements for implicit classification # ; map:{ # ; code=[code]; name=[name]; alias=[alias]; comment=[comment] # ; sisterCode=[code or code-list]; subItemMap=map:{[free-map]}Created: 2026-03-31 13:07 - Last Modified: 2015-07-04 22:46 - 2.2K bytes - Click Count (0) -
internal/config/config_test.go
}, // Keys and input order of k=v is same. { input: `connection_string="host=localhost port=2832" comment="really long comment"`, keys: []string{"connection_string", "comment"}, expectedFields: map[string]struct{}{ `connection_string="host=localhost port=2832"`: {}, `comment="really long comment"`: {}, }, },Created: 2026-04-05 19:28 - Last Modified: 2025-08-29 02:39 - 4.2K bytes - Click Count (0) -
CONTRIBUTING.md
If your contribution is rejected we will close the pull request with a comment explaining why. This decision isn't always final: if you feel we have misunderstood your intended change or otherwise think that we should reconsider then please continue the conversation with a comment on the pull request and we'll do our best to address any further points you raise. Contributing as part of a class
Created: 2026-04-08 16:19 - Last Modified: 2021-09-01 07:32 - 36.5K bytes - Click Count (0)