Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for trimLeading (0.84 sec)

  1. internal/s3select/sql/stringfuncs.go

    		}
    
    		if length > (endIdx - startIdx) {
    			length = endIdx - startIdx
    		}
    
    		endIdx = startIdx + length
    	}
    
    	return string(rs[startIdx:endIdx]), nil
    }
    
    const (
    	trimLeading  = "LEADING"
    	trimTrailing = "TRAILING"
    	trimBoth     = "BOTH"
    )
    
    func evalSQLTrim(where *string, trimChars, text string) (result string, err error) {
    	cutSet := " "
    	if trimChars != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/heading.go

    		// after the ID.
    		buf.Truncate(buf.Len() - 1)
    		fmt.Fprintf(buf, " {#%s}\n", b.ID)
    	}
    }
    
    func newATXHeading(p *parseState, s line) (line, bool) {
    	peek := s
    	var n int
    	if peek.trimHeading(&n) {
    		s := peek.string()
    		s = trimRightSpaceTab(s)
    		// Remove trailing '#'s.
    		if t := strings.TrimRight(s, "#"); t != trimRightSpaceTab(t) || t == "" {
    			s = t
    		}
    		var id string
    		if p.HeadingIDs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. test-site/activator-launch-1.3.2.jar

    xsbt.boot; public final synchronized class Pre$ { public static final Pre$ MODULE$; private final boolean isWindows; private final boolean isCygwin; public static void <clinit>(); public static scala.Option readLine(String); public static String trimLeading(String); public static boolean isEmpty(String); public static boolean isNonEmpty(String); public static void assert(boolean, scala.Function0); public static void assert(boolean); public static void require(boolean, scala.Function0); public static...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top