Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 104 for Semicolons (0.17 sec)

  1. src/cmd/go/internal/imports/read.go

    	// and this might be peekByte(true).
    	c := r.peek
    	if c == 0 {
    		c = r.readByte()
    	}
    	for r.err == nil && !r.eof {
    		if skipSpace {
    			// For the purposes of this reader, semicolons are never necessary to
    			// understand the input and are treated as spaces.
    			switch c {
    			case ' ', '\f', '\t', '\r', '\n', ';':
    				c = r.readByte()
    				continue
    
    			case '/':
    				c = r.readByte()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 15 18:42:11 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/dist/imports.go

    	// and this might be peekByte(true).
    	c := r.peek
    	if c == 0 {
    		c = r.readByte()
    	}
    	for r.err == nil && !r.eof {
    		if skipSpace {
    			// For the purposes of this reader, semicolons are never necessary to
    			// understand the input and are treated as spaces.
    			switch c {
    			case ' ', '\f', '\t', '\r', '\n', ';':
    				c = r.readByte()
    				continue
    
    			case '/':
    				c = r.readByte()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  3. src/mime/mediatype.go

    		v = strings.TrimLeftFunc(v, unicode.IsSpace)
    		if len(v) == 0 {
    			break
    		}
    		key, value, rest := consumeMediaParam(v)
    		if key == "" {
    			if strings.TrimSpace(rest) == ";" {
    				// Ignore trailing semicolons.
    				// Not an error.
    				break
    			}
    			// Parse error.
    			return mediatype, nil, ErrInvalidMediaParameter
    		}
    
    		pmap := params
    		if baseName, _, ok := strings.Cut(key, "*"); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/html/template/error.go

    	//   in which the first '/' is a mathematical division operator or it
    	//   could produce `/-2/i.test(s)` in which the first '/' starts a
    	//   regexp literal.
    	//   Look for missing semicolons inside branches, and maybe add
    	//   parentheses to make it clear which interpretation you intend.
    	ErrSlashAmbig
    
    	// ErrPredefinedEscaper: "predefined escaper ... disallowed in template"
    	// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * The bootclasspath is part of the search path the Javadoc tool will use to look up source and class files.
         * See How Classes Are Found. for more details. Separate directories in classpathlist with semicolons (;).
         */
        @Override
        public List<File> getBootClasspath() {
            return bootClasspath.getValue();
        }
    
        @Override
        public void setBootClasspath(List<File> bootClasspath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/build_read.go

    	// and this might be peekByte(true).
    	c := r.peek
    	if c == 0 {
    		c = r.readByte()
    	}
    	for r.err == nil && !r.eof {
    		if skipSpace {
    			// For the purposes of this reader, semicolons are never necessary to
    			// understand the input and are treated as spaces.
    			switch c {
    			case ' ', '\f', '\t', '\r', '\n', ';':
    				c = r.readByte()
    				continue
    
    			case '/':
    				c = r.readByte()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. src/go/build/read.go

    	// and this might be peekByte(true).
    	c := r.peek
    	if c == 0 {
    		c = r.readByte()
    	}
    	for r.err == nil && !r.eof {
    		if skipSpace {
    			// For the purposes of this reader, semicolons are never necessary to
    			// understand the input and are treated as spaces.
    			switch c {
    			case ' ', '\f', '\t', '\r', '\n', ';':
    				c = r.readByte()
    				continue
    
    			case '/':
    				c = r.readByte()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/go/printer/printer.go

    	// no more comments
    	p.commentOffset = infinity
    }
    
    // commentBefore reports whether the current comment group occurs
    // before the next position in the source code and printing it does
    // not introduce implicit semicolons.
    func (p *printer) commentBefore(next token.Position) bool {
    	return p.commentOffset < next.Offset && (!p.impliedSemi || !p.commentNewline)
    }
    
    // commentSizeBefore returns the estimated size of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    // has the corresponding value.
    //
    // If the returned token is a keyword, the literal string is the keyword.
    //
    // If the returned token is [token.SEMICOLON], the corresponding
    // literal string is ";" if the semicolon was present in the source,
    // and "\n" if the semicolon was inserted because of a newline or
    // at EOF.
    //
    // If the returned token is [token.ILLEGAL], the literal string is the
    // offending character.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    	needsBlank := false
    	if init == nil && post == nil {
    		// no semicolons required
    		if expr != nil {
    			p.expr(stripParens(expr))
    			needsBlank = true
    		}
    	} else {
    		// all semicolons required
    		// (they are not separators, print them explicitly)
    		if init != nil {
    			p.stmt(init, false)
    		}
    		p.print(token.SEMICOLON, blank)
    		if expr != nil {
    			p.expr(stripParens(expr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top