Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 579 for COMMENT (0.13 sec)

  1. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

         * Set the value of hostname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        /**
         * A comment used for the eclipse project
         */
        public String getComment() {
            return comment;
        }
    
        public void setComment(String comment) {
            this.comment = comment;
        }
    
        /**
         * The referenced projects of this Eclipse project.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  3. src/go/parser/parser_test.go

    	// f3 lead comment
    	f3 int  // f3 line comment
    
    	f4 int   /* not a line comment */ ;
            f5 int ; // f5 line comment
    	f6 int ; /* f6 line comment */
    	f7 int ; /*f7a*/ /*f7b*/ //f7c
    }
    `, ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    	checkFieldComments(t, f, "T.F1", "/* F1 lead comment *///", "/* F1 */// line comment")
    	checkFieldComments(t, f, "T.F2", "// F2 lead// comment", "// F2 line comment")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. src/go/scanner/scanner_test.go

    	{"foo    /*  */ /* \n */ bar/**/\n", "IDENT COMMENT COMMENT ; IDENT COMMENT ;"},
    	{"foo    /*0*/ /*1*/ /*2*/\n", "IDENT COMMENT COMMENT COMMENT ;"},
    
    	{"foo    /*comment*/    \n", "IDENT COMMENT ;"},
    	{"foo    /*0*/ /*1*/ /*2*/    \n", "IDENT COMMENT COMMENT COMMENT ;"},
    	{"foo	/**/ /*-------------*/       /*----\n*/bar       /*  \n*/baa\n", "IDENT COMMENT COMMENT COMMENT ; IDENT COMMENT ; IDENT ;"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

        }
    
        /**
         * Writes an XML comment.
         * Characters are not XML encoded inside the comment.
         * The start comment delimiter will contain a space if the comment does not start with a blank character.
         * The end comment delimiter will contain a space if the comment does not end with a blank character.
         *
         * @param comment the comment to write
         * @return this writer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
  6. src/go/printer/printer.go

    	var last *ast.Comment
    	for p.commentBefore(next) {
    		list := p.comment.List
    		changed := false
    		if p.lastTok != token.IMPORT && // do not rewrite cgo's import "C" comments
    			p.posFor(p.comment.Pos()).Column == 1 &&
    			p.posFor(p.comment.End()+1) == next {
    			// Unindented comment abutting next token position:
    			// a top-level doc comment.
    			list = formatDocComment(list)
    			changed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	// excluding leading or trailing comments.
    	Span() (start, end Position)
    
    	// Comment returns the comments attached to the expression.
    	// This method would normally be named 'Comments' but that
    	// would interfere with embedding a type of the same name.
    	Comment() *Comments
    }
    
    // A Comment represents a single // comment.
    type Comment struct {
    	Start  Position
    	Token  string // without trailing newline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner_test.go

    		{"//\n//\n\t// want this one\r\n", comment{2, 1, "// want this one\r"}},
    		{"\n\n//\n", comment{2, 0, "//"}},
    		{"//", comment{0, 0, "//"}},
    
    		/*-style comments */
    		{"123/* regular comment */", comment{0, 3, "/* regular comment */"}},
    		{"package p /* regular comment", comment{0, 0, ""}},
    		{"\n\n\n/*\n*//* want this one */", comment{4, 2, "/* want this one */"}},
    		{"\n\n/**/", comment{2, 0, "/**/"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  9. src/text/scanner/scanner_test.go

    var tokenList = []token{
    	{Comment, "// line comments"},
    	{Comment, "//"},
    	{Comment, "////"},
    	{Comment, "// comment"},
    	{Comment, "// /* comment */"},
    	{Comment, "// // comment //"},
    	{Comment, "//" + f100},
    
    	{Comment, "// general comments"},
    	{Comment, "/**/"},
    	{Comment, "/***/"},
    	{Comment, "/* comment */"},
    	{Comment, "/* // comment */"},
    	{Comment, "/* /* comment */"},
    	{Comment, "/*\n comment\n*/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  10. hack/golangci.yaml

            - revive
            - stylecheck
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top