Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for WhiteSpace (0.17 sec)

  1. samples/bookinfo/src/productpage/templates/productpage.html

                        <td class="whitespace-nowrap px-2 py-2 text-sm font-medium text-gray-900">{{ details.publisher }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-900">{{ details.pages }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-500">{{ details.type }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-500">{{ details.language }}</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    
            for (int i = 0; i < lines.length; i++) {
                String line = lines[i];
                if (!WHITESPACE.matcher(line).matches()) {
                    builder.append(indent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/text/scanner/scanner.go

    	// changed at any time.
    	Mode uint
    
    	// The Whitespace field controls which characters are recognized
    	// as white space. To recognize a character ch <= ' ' as white space,
    	// set the ch'th bit in Whitespace (the Scanner's behavior is undefined
    	// for values ch > ' '). The field may be changed at any time.
    	Whitespace uint64
    
    	// IsIdentRune is a predicate controlling the characters accepted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/parser.go

    		return
    	} else {
    		p.next()
    	}
    
    	p.expect(':')
    	want := p.parseInt()
    	p.expect('>')
    
    	defer func(w uint64) {
    		p.scanner.Whitespace = w
    	}(p.scanner.Whitespace)
    	p.scanner.Whitespace = 0
    
    	got := 0
    	for got < want {
    		r := p.scanner.Next()
    		if r == scanner.EOF {
    			p.error("unexpected EOF")
    		}
    		got += utf8.RuneLen(r)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

      val result = copyOf(size + 1)
      result[result.lastIndex] = value
      return result as Array<String>
    }
    
    /** Increments [startIndex] until this string is not ASCII whitespace. Stops at [endIndex]. */
    internal fun String.indexOfFirstNonAsciiWhitespace(
      startIndex: Int = 0,
      endIndex: Int = length,
    ): Int {
      for (i in startIndex until endIndex) {
        when (this[i]) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    	// (1) not followed by Unicode whitespace, and either
    	// (2a) not followed by a Unicode punctuation character, or
    	// (2b) followed by a Unicode punctuation character
    	// and preceded by Unicode whitespace or a Unicode punctuation character.
    	// For purposes of this definition, the beginning and the end
    	// of the line count as Unicode whitespace.”
    	leftFlank := !isUnicodeSpace(after) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

      // In the case of input tensor with 0 rank.
      // Whitespace tokenizer generates 1 output:
      // * String tensor for tokens.
      //
      // In the case of 1-D input tensor,
      // Whitespace tokenizer generates 2 outputs to make up a ragged tensor:
      // * 1st output is the value of ragged tensor;
      // * 2nd output is the offset.
      //
      // In the case of batched input tesnor,
      // Whitespace tokenizer has 3 outputs to make up a nested ragged tensor:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Splitter.java

      }
    
      /**
       * Returns a splitter that behaves equivalently to {@code this} splitter, but automatically
       * removes leading and trailing {@linkplain CharMatcher#whitespace whitespace} from each returned
       * substring; equivalent to {@code trimResults(CharMatcher.whitespace())}. For example, {@code
       * Splitter.on(',').trimResults().split(" a, b ,c ")} returns an iterable containing {@code ["a",
       * "b", "c"]}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  9. src/encoding/csv/reader.go

    	// or the Unicode replacement character (0xFFFD).
    	Comma rune
    
    	// Comment, if not 0, is the comment character. Lines beginning with the
    	// Comment character without preceding whitespace are ignored.
    	// With leading whitespace the Comment character becomes part of the
    	// field, even if TrimLeadingSpace is true.
    	// Comment must be a valid rune and must not be \r, \n,
    	// or the Unicode replacement character (0xFFFD).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //     \\D   matches any character that's not a decimal digit
    //     \\f   matches \f
    //     \\n   matches \n
    //     \\r   matches \r
    //     \\s   matches any ASCII whitespace, including \n
    //     \\S   matches any character that's not a whitespace
    //     \\t   matches \t
    //     \\v   matches \v
    //     \\w   matches any letter, _, or decimal digit
    //     \\W   matches any character that \\w doesn't match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top