Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 579 for COMMENT (0.12 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * The value is, e.g. warm <br>
         * comment: The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLastaDiSmartDeployMode();
    
        /**
         * Get the value for the key 'development.here'. <br>
         * The value is, e.g. true <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/go/printer/testdata/expressions.golden

    	`foo
    bar`
    
    	var _ =	// comment
    	``
    	var _ =	// comment
    	`foo`
    	var _ =	// comment
    	// the next line should remain indented
    	`foo
    bar`
    
    	var _ = /* comment */ ``
    	var _ = /* comment */ `foo`
    	var _ = /* comment */ `foo
    bar`
    
    	var _ =	/* comment */
    	``
    	var _ =	/* comment */
    	`foo`
    	var _ =	/* comment */
    	// the next line should remain indented
    	`foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  3. src/go/printer/testdata/expressions.raw

    	`foo
    bar`
    
    	var _ =	// comment
    	``
    	var _ =	// comment
    	`foo`
    	var _ =	// comment
    	// the next line should remain indented
    	`foo
    bar`
    
    	var _ = /* comment */ ``
    	var _ = /* comment */ `foo`
    	var _ = /* comment */ `foo
    bar`
    
    	var _ =	/* comment */
    	``
    	var _ =	/* comment */
    	`foo`
    	var _ =	/* comment */
    	// the next line should remain indented
    	`foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  4. src/go/doc/doc.go

    }
    
    // Parser returns a doc comment parser configured
    // for parsing doc comments from package p.
    // Each call returns a new parser, so that the caller may
    // customize it before use.
    func (p *Package) Parser() *comment.Parser {
    	return &comment.Parser{
    		LookupPackage: p.lookupPackage,
    		LookupSym:     p.lookupSym,
    	}
    }
    
    // Printer returns a doc comment printer configured
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/cc_op_gen_util.cc

      }
    
      strings::StrAppend(&comment, "\nReturns:\n");
      if (graph_op_def.output_arg_size() == 0) {  // No outputs.
        strings::StrAppend(&comment, "* the created `Operation`\n");
      } else if (graph_op_def.output_arg_size() == 1) {  // One output
        if (is_list_output[0]) {
          strings::StrAppend(&comment, "* `OutputList`: ");
        } else {
          strings::StrAppend(&comment, "* `Output`: ");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. src/go/scanner/scanner.go

    	if s.ch == '/' {
    		//-style comment
    		// (the final '\n' is not considered part of the comment)
    		s.next()
    		for s.ch != '\n' && s.ch >= 0 {
    			if s.ch == '\r' {
    				numCR++
    			}
    			s.next()
    		}
    		// if we are at '\n', the position following the comment is afterwards
    		next = s.offset
    		if s.ch == '\n' {
    			next++
    		}
    		goto exit
    	}
    
    	/*-style comment */
    	s.next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. .github/actions/people/app/main.py

            discussion_commentors: dict[str, datetime] = {}
            for comment in discussion.comments.nodes:
                if comment.author:
                    authors[comment.author.login] = comment.author
                    if comment.author.login != discussion_author_name:
                        author_time = discussion_commentors.get(
                            comment.author.login, comment.createdAt
                        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/expressions.input

    	`foo
    bar`
    
    
    	var _ = // comment
    		``
    	var _ = // comment
    		`foo`
    	var _ = // comment
    		// the next line should remain indented
    		`foo
    bar`
    
    
    var _ = /* comment */ ``
    var _ = /* comment */ `foo`
    var _ = /* comment */ `foo
    bar`
    
    
    	var _ = /* comment */
    		``
    	var _ = /* comment */
    		`foo`
    	var _ = /* comment */
    		// the next line should remain indented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  9. src/go/printer/printer_test.go

    	}
    
    	comment := f.Comments[0].List[0]
    	pos := comment.Pos()
    	if fset.PositionFor(pos, false /* absolute position */).Offset != 1 {
    		t.Error("expected offset 1") // error in test
    	}
    
    	testComment(t, f, len(src), &ast.Comment{Slash: pos, Text: "//-style comment"})
    	testComment(t, f, len(src), &ast.Comment{Slash: pos, Text: "/*-style comment */"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/encoding/csv/reader_test.go

    	Input:            "§a£§b,c£ \t§d,e\n€ comment\n",
    	Output:           [][]string{{"a", "b,c", "d,e"}},
    	TrimLeadingSpace: true,
    	Comma:            '£',
    	Comment:          '€',
    }, {
    	Name:    "NonASCIICommaAndCommentWithQuotes",
    	Input:   "§a€§\"  b,\"€§ c\nλ comment\n",
    	Output:  [][]string{{"a", "  b,", " c"}},
    	Comma:   '€',
    	Comment: 'λ',
    }, {
    	// λ and θ start with the same byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top