Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 178 for WhiteSpace (0.14 sec)

  1. src/cmd/compile/internal/syntax/printer.go

    	linebreaks bool // print linebreaks instead of semis
    
    	indent  int // current indentation level
    	nlcount int // number of consecutive newlines
    
    	pending []whitespace // pending whitespace
    	lastTok token        // last token (after any pending semi) processed by print
    }
    
    // write is a thin wrapper around p.output.Write
    // that takes care of accounting and error handling.
    func (p *printer) write(data []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                // if we haven't added this arg to the buffer, and we ARE building an argument
                // buffer, then append it with a preceding space...again, not sure what else to
                // do other than collapse whitespace.
                // NOTE: The case of a trailing quote is handled by nullifying the arg buffer.
                if (!addedToBuffer) {
                    if (currentArg != null) {
                        currentArg.append(' ').append(arg);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/work/build_test.go

    		{[]byte(`-lextra\ fun\ arg\\`), []string{`-lextra fun arg\`}},
    		{[]byte("\textra     whitespace\r\n"), []string{"extra", "whitespace\r"}},
    		{[]byte("     \r\n      "), []string{"\r"}},
    		{[]byte(`"-r:foo" "-L/usr/white space/lib" "-lfoo bar" "-lbar baz"`), []string{"-r:foo", "-L/usr/white space/lib", "-lfoo bar", "-lbar baz"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/encoding/pem/pem.go

    }
    
    // getLine results the first \r\n or \n delineated line from the given byte
    // array. The line does not include trailing whitespace or the trailing new
    // line bytes. The remainder of the byte array (also not including the new line
    // bytes) is also returned and this will always be smaller than the original
    // argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/mime/quotedprintable/reader_test.go

    		{in: "foo bar\xff", want: "foo bar\xff"},
    
    		// Equal sign.
    		{in: "=3D30\n", want: "=30\n"},
    		{in: "=00=FF0=\n", want: "\x00\xff0"},
    
    		// Trailing whitespace
    		{in: "foo  \n", want: "foo\n"},
    		{in: "foo  \n\nfoo =\n\nfoo=20\n\n", want: "foo\n\nfoo \nfoo \n\n"},
    
    		// Tests that we allow bare \n and \r through, despite it being strictly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // week.
    //
    // # Counter Naming
    //
    // Counter names passed to [New] and [NewStack] should follow these
    // conventions:
    //
    //   - Names cannot contain whitespace or newlines.
    //
    //   - Names must be valid unicode, with no unprintable characters.
    //
    //   - Names may contain at most one ':'. In the counter "foo:bar", we refer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/tokenizer.go

    }
    
    func NewTokenizer(name string, r io.Reader, file *os.File) *Tokenizer {
    	var s scanner.Scanner
    	s.Init(r)
    	// Newline is like a semicolon; other space characters are fine.
    	s.Whitespace = 1<<'\t' | 1<<'\r' | 1<<' '
    	// Don't skip comments: we need to count newlines.
    	s.Mode = scanner.ScanChars |
    		scanner.ScanFloats |
    		scanner.ScanIdents |
    		scanner.ScanInts |
    		scanner.ScanStrings |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 20:35:21 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

         */
        private void parseDefineDirectiveBody(Buffer buffer, Collection<Macro> macros, Collection<MacroFunction> macroFunctions) {
            if (!buffer.consumeWhitespace()) {
                // No separating whitespace between the #define and the name
                return;
            }
            String name = buffer.readIdentifier();
            if (name == null) {
                // No macro name
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

        return CodeLine(absl::Substitute(text, args...));
      }
    
      // Append a multiline string of source code, left-justified (not indented).
      // Note: Trims leading/trailing whitespace including newlines, making this
      //       method convenient for multiline raw strings.
      // Newlines ('\n') are allowed/expected.
      Renderer &CodeLines(const string &text);
      template <typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top