Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for WhiteSpace (0.57 sec)

  1. src/go/printer/printer.go

    	debug       = false // enable for debugging
    	infinity    = 1 << 30
    )
    
    type whiteSpace byte
    
    const (
    	ignore   = whiteSpace(0)
    	blank    = whiteSpace(' ')
    	vtab     = whiteSpace('\v')
    	newline  = whiteSpace('\n')
    	formfeed = whiteSpace('\f')
    	indent   = whiteSpace('>')
    	unindent = whiteSpace('<')
    )
    
    // A pmode value represents the current printer mode.
    type pmode int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

            this.quotablePattern = quotablePattern;
        }
    
        /**
         * Double quotes around args containing whitespace, backslash chars are escaped using double backslash, platform line separators.
         */
        public static ArgWriter unixStyle(PrintWriter writer) {
            return new ArgWriter(writer, true, WHITESPACE);
        }
    
        public static InternalTransformer<ArgWriter, PrintWriter> unixStyleFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/test.cc

    // Macros that expand to tokens based on the entry point name.
    // clang-format off
    #define CPP_CLASS {{TFCOMPILE_CPP_CLASS}}  // NOLINT(whitespace/braces)
    #define TEST_NAME {{TFCOMPILE_NAME}}Test   // NOLINT(whitespace/braces)
    #define BM_NAME   BM_{{TFCOMPILE_NAME}}    // NOLINT(whitespace/braces)
    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/test_google.cc

    // Macros that expand to tokens based on the entry point name.
    // clang-format off
    #define CPP_CLASS {{TFCOMPILE_CPP_CLASS}}  // NOLINT(whitespace/braces)
    #define TEST_NAME {{TFCOMPILE_NAME}}Test   // NOLINT(whitespace/braces)
    #define BM_NAME   BM_{{TFCOMPILE_NAME}}    // NOLINT(whitespace/braces)
    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

        val headers =
          Headers.Builder()
            .add("foo: bar")
            .add(" foo: baz") // Name leading whitespace is trimmed.
            .add("foo : bak") // Name trailing whitespace is trimmed.
            .add("\tkey\t:\tvalue\t") // '\t' also counts as whitespace
            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

          var whitespace = false
          afterBoundaryLoop@while (true) {
            when (source.select(afterBoundaryOptions)) {
              0 -> {
                // "\r\n": We've found a new part.
                partCount++
                break@afterBoundaryLoop
              }
    
              1 -> {
                // "--": No more parts.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/aot/benchmark_main.template

    // clang-format off
    #include "{{TFCOMPILE_HEADER}}"  // NOLINT(whitespace/braces)
    // clang-format on
    
    #include "tensorflow/compiler/aot/benchmark.h"
    #include "unsupported/Eigen/CXX11/Tensor"
    
    // Macros that expand to tokens based on the entry point name.
    // clang-format off
    #define CPP_CLASS {{TFCOMPILE_CPP_CLASS}}  // NOLINT(whitespace/braces)
    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    // If start==end, the 1-char interval following start is used instead.
    //
    // The 'exact' result is true if the interval contains only path[0]
    // and perhaps some adjacent whitespace.  It is false if the interval
    // overlaps multiple children of path[0], or if it contains only
    // interior whitespace of path[0].
    // In this example:
    //
    //	z := x + y // add them
    //	  <--C-->     <---E-->
    //	    ^
    //	    D
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammarTest.kt

            assertParserConsumes(kotlinGrammar.fileAnnotation, input)
        }
    
        private
        fun assertParserConsumes(parser: Parser<Any>, input: String) {
            val whitespace = "   "
            assertThat(
                parser.consumeFrom(input + whitespace + "something more"),
                equalTo(input)
            )
    
            assertThat(
                parser.consumeFrom(input + "\nsomething"),
                equalTo(input)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top