Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 432 for bland (0.13 sec)

  1. src/go/printer/nodes.go

    			depth++
    		}
    		p.exprList(s.Pos(), s.Lhs, depth, 0, s.TokPos, false)
    		p.print(blank)
    		p.setPos(s.TokPos)
    		p.print(s.Tok, blank)
    		p.exprList(s.TokPos, s.Rhs, depth, 0, token.NoPos, false)
    
    	case *ast.GoStmt:
    		p.print(token.GO, blank)
    		p.expr(s.Call)
    
    	case *ast.DeferStmt:
    		p.print(token.DEFER, blank)
    		p.expr(s.Call)
    
    	case *ast.ReturnStmt:
    		p.print(token.RETURN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments.input

     */
    
    /*
    aligned in middle
    here
            not here
    */
    
    /*
    blank line in middle:
    
    with no leading spaces on blank line.
    */
    
    /*
       aligned in middle
       here
               not here
    */
    
    /*
    	blank line in middle:
    
    	with no leading spaces on blank line.
    */
    
    func _() {
    	/*
    	 * line
    	 * of
    	 * stars
    	 */
    
    	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/templates/modules/header.html

    {{ define "header" }}
    <header>
        <nav class="navbar navbar-expand-xs navbar-dark fixed-top bg-dark justify-content-between">
            <a class="navbar-brand" href="/">
                <span class="logo">
                    <svg viewBox="0 0 300 300">
                        <circle cx="150" cy="150" r="150" stroke-width="2" />
                        <polygon points="65,240 225,240 125,270"/>
                        <polygon points="65,230 125,220 125,110"/>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 682 bytes
    - Viewed (0)
  4. src/cmd/go/internal/imports/build.go

    			// When we find the first non-blank, non-// line,
    			// this "end" position marks the latest file position
    			// where a // +build line can appear.
    			// (It must appear _before_ a blank line before the non-blank, non-// line.
    			// Yes, that's confusing, which is part of why we moved to //go:build lines.)
    			// Note that ended==false here means that inSlashStar==false,
    			// since seeing a /* would have set ended==true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/decls0.go

    func (S0) m4 () (x *S0.m4 /* ERROR "S0.m4 is not a type" */ ) { return }
    
    // interfaces may not have any blank methods
    type BlankI interface {
    	_ /* ERROR "methods must have a unique non-blank name" */ ()
    	_ /* ERROR "methods must have a unique non-blank name" */ (float32) int
    	m()
    }
    
    // non-interface types may have multiple blank methods
    type BlankT struct{}
    
    func (BlankT) _() {}
    func (BlankT) _(int) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/comments.golden

     */
    
    /*
    aligned in middle
    here
            not here
    */
    
    /*
    blank line in middle:
    
    with no leading spaces on blank line.
    */
    
    /*
       aligned in middle
       here
               not here
    */
    
    /*
    	blank line in middle:
    
    	with no leading spaces on blank line.
    */
    
    func _() {
    	/*
    	 * line
    	 * of
    	 * stars
    	 */
    
    	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

        public static String key(String groupId, String artifactId, String version) {
            notBlank(groupId, "groupId can neither be null, empty nor blank");
            notBlank(artifactId, "artifactId can neither be null, empty nor blank");
            notBlank(version, "version can neither be null, empty nor blank");
    
            return groupId + ":" + artifactId + ":" + version;
        }
    
        private static void notBlank(String str, String message) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 06 08:51:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/list9.txt

      because of the indented text.
    5. More wrapped
      items.
    6. And unwrapped.
    
    7. The blank line stops the heuristic.
    -- gofmt --
    Text.
    
    1. Not a list
    2. because it is
    3. unindented.
    
     4. This one
        is a list
        because of the indented text.
     5. More wrapped
        items.
     6. And unwrapped.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 419 bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/list10.txt

    -- input --
    
    	1. This list
    	2. Starts the comment
    	3. And also has a blank line before it.
    
    All of which is a little weird.
    -- gofmt --
     1. This list
     2. Starts the comment
     3. And also has a blank line before it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 247 bytes
    - Viewed (0)
  10. src/go/doc/comment/parse.go

    	// overriding the usual conditions. See the BlankBetween method.
    	//
    	// The comment parser sets ForceBlankBetween for any list
    	// that has a blank line between any two of its items, to make sure
    	// the blank lines are preserved when printing.
    	ForceBlankBetween bool
    }
    
    func (*List) block() {}
    
    // BlankBefore reports whether a reformatting of the comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top