Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for chr (0.04 sec)

  1. pkg/config/validation/header_value_validator.go

    		// Parsing terminated mid-variable.
    		return fmt.Errorf("invalid header configuration. Un-terminated variable expression '%s'", headerValue)
    	}
    
    	return nil
    }
    
    func isSpace(chr byte) bool {
    	return chr == ' '
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 21:37:52 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/regexp/syntax/make_perl_groups.pl

    sub ComputeClass($) {
      my @ranges;
      my ($class) = @_;
      my $regexp = "[$class]";
      my $start = -1;
      for (my $i=0; $i<=129; $i++) {
        if ($i == 129) { $i = 256; }
        if ($i <= 128 && ($overrides{"$class:$i"} // chr($i) =~ $regexp)) {
          if ($start < 0) {
            $start = $i;
          }
        } else {
          if ($start >= 0) {
            push @ranges, [$start, $i-1];
          }
          $start = -1;
        }
      }
      return @ranges;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/StringUtil.java

            if (isEmpty(s)) {
                return false;
            }
    
            final int size = s.length();
            for (int i = 0; i < size; i++) {
                final char chr = s.charAt(i);
                if (chr < '0' || '9' < chr) {
                    return false;
                }
            }
    
            return true;
        }
    
        /**
         * 引数の文字列を返します。引数の文字列が<code>null</code>だったら空文字を返します。
         * <p>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    					i, vals, names[i], i)
    			} else {
    				// Normal SSA value
    				fmt.Fprintf(f, "\t\tnode%d [label=<%s <font point-size=\"6\">[%d]</font>>]\n", i, names[i], i)
    			}
    			chl, chr := po.children(i)
    			for _, ch := range []posetEdge{chl, chr} {
    				if ch != 0 {
    					if ch.Strict() {
    						fmt.Fprintf(f, "\t\tnode%d -> node%d [label=\" <\" color=\"red\"]\n", i, ch.Target())
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ss|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|nonlocal|pass|print|raise|return|try|while|with|yield)\b/,builtin:/\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|m...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top