Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for chr (0.01 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)
Back to top