Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 579 for COMMENT (0.34 sec)

  1. src/net/mail/message_test.go

    				Name:    "Joe Q. Public",
    				Address: "******@****.***",
    			}},
    		},
    		// Comment in display name
    		{
    			`John (middle) Doe <******@****.***e>`,
    			[]*Address{{
    				Name:    "John Doe",
    				Address: "******@****.***e",
    			}},
    		},
    		// Display name is quoted string, so comment is not a comment
    		{
    			`"John (middle) Doe" <******@****.***e>`,
    			[]*Address{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. 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()));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  3. src/text/template/parse/parse_test.go

    	textFormat = "%q"
    	defer func() { textFormat = "%s" }()
    	tests := [...]parseTest{
    		{"comment", "{{/*\n\n\n*/}}", noError, "{{/*\n\n\n*/}}"},
    		{"comment trim left", "x \r\n\t{{- /* hi */}}", noError, `"x"{{/* hi */}}`},
    		{"comment trim right", "{{/* hi */ -}}\n\n\ty", noError, `{{/* hi */}}"y"`},
    		{"comment trim left and right", "x \r\n\t{{- /* */ -}}\n\n\ty", noError, `"x"{{/* */}}"y"`},
    	}
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

        }
    
        public String getComment() {
            return comment;
        }
    
        /**
         * A comment used for the eclipse project. By default it will be configured to <b>project.description</b>
         * <p>
         * For example see docs for {@link EclipseProject}
         */
        public void setComment(String comment) {
            this.comment = comment;
        }
    
    
        public Set<String> getReferencedProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/xml/SimpleXmlWriterSpec.groovy

        }
    
        def "surrogates in comment"() {
            when:
            writer.startElement("root")
            writer.comment("丈, 😃, and नि, and > or &")
            writer.endElement()
    
            then:
            xml == "<?xml version=\"1.0\" encoding=\"UTF-8\"?><root><!-- 丈, &#x1f603;, and नि, and > or & --></root>"
        }
    
        def 'detects invalid comment'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 14.1K bytes
    - Viewed (0)
  6. src/html/template/js.go

    		// the error into the template, as part of a comment, we attempt to
    		// prevent the error from either terminating the comment, or the script
    		// block itself.
    		//
    		// In particular we:
    		//   * replace "*/" comment end tokens with "* /", which does not
    		//     terminate the comment
    		//   * replace "</script" with "\x3C/script", and "<!--" with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    Basic formatting rules:
    
    - The first line contains the begin-comment delimiter ( `/**`).
    - The first sentence is a summary.
    - Notice the inline tag `{@link URL}`, which converts to an HTML hyperlink pointing to the documentation for the URL class.
    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/kubelet/network/dns/dns_test.go

    		{"\t\n\t", []string{}, []string{}, []string{}, false},
    		{"#comment\n", []string{}, []string{}, []string{}, false},
    		{" #comment\n", []string{}, []string{}, []string{}, false},
    		{"#comment\n#comment", []string{}, []string{}, []string{}, false},
    		{"#comment\nnameserver", []string{}, []string{}, []string{}, true},                           // nameserver empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. src/config/eclipse/formatter/javascript.xml

    <setting id="org.eclipse.wst.jsdt.core.formatter.comment.format_header" value="true"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" value="do not insert"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>
    <setting id="org.eclipse.wst.jsdt.core.formatter.comment.format_block_comments" value="true"/>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Mar 23 21:27:06 UTC 2015
    - 29.2K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    		// Pass nil for the type. ptr does not point to value of type typ,
    		// but rather points into one so it's not safe to apply the optimization.
    		// See the comment on this function in the reflect package and the
    		// comment on bulkBarrierPreWrite.
    		bulkBarrierPreWrite(uintptr(ptr), 0, size, nil)
    	}
    	memclrNoHeapPointers(ptr, size)
    }
    
    //go:linkname reflect_typedarrayclear reflect.typedarrayclear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top