Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for skipWhiteSpaces (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    		return ErrorToken, fmt.Sprintf("error expected: keyword found '%s'", buffer)
    	}
    	return lastScannedItem.tok, lastScannedItem.literal
    }
    
    // skipWhiteSpaces consumes all blank characters
    // returning the first non blank character
    func (l *Lexer) skipWhiteSpaces(ch byte) byte {
    	for {
    		if !isWhitespace(ch) {
    			return ch
    		}
    		ch = l.read()
    	}
    }
    
    // Lex returns a pair of Token and the literal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
Back to top