Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 352 for Newlines (0.15 sec)

  1. src/encoding/csv/writer.go

    package csv
    
    import (
    	"bufio"
    	"io"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // A Writer writes records using CSV encoding.
    //
    // As returned by [NewWriter], a Writer writes records terminated by a
    // newline and uses ',' as the field delimiter. The exported fields can be
    // changed to customize the details before
    // the first call to [Writer.Write] or [Writer.WriteAll].
    //
    // [Writer.Comma] is the field delimiter.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/PromptOutputEvent.java

        public PromptOutputEvent(long timestamp) {
            super(timestamp, "prompt", LogLevel.QUIET, null);
        }
    
        @Override
        public void render(StyledTextOutput output) {
            // Add a newline at the start of each question
            output.println();
            output.text(getPrompt());
        }
    
        /**
         * Converts the given text into the response object, or returns a new prompt to display to the user.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. common/config/sass-lint.yml

      brace-style: 2
      class-name-format: 2
      clean-import-paths: 2
      declarations-before-nesting: 2
      empty-args: 2
      empty-line-between-blocks: 2
      extends-before-declarations: 2
      extends-before-mixins: 2
      final-newline: 2
      force-attribute-nesting: 0
      force-element-nesting: 0
      force-pseudo-nesting: 0
      function-name-format: 2
      hex-length: 0
      hex-notation: 2
      id-name-format: 2
      indentation:
        - 2
        -
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

            if (pos >= 0) {
                text = text.substring(0, pos);
            }
            return text;
        }
    
        public void validate(String output, String displayName) {
            List<String> lines = getLines(output);
            int i = 0;
            boolean insideVariantDescriptionBlock = false;
            boolean insideKotlinCompilerFlakyStacktrace = false;
            boolean sawVmPluginLoadFailure = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue22662b.go

    	{"//line foo.go:10:4\n", "foo.go:10:4:"},   // column means print a column
    	{"//line foo.go:10:4\n\n", "foo.go:11:1:"}, // relative columns start at 1 after newline
    
    	{"/*line :10*/", ":10:"},
    	{"/*line :10:4*/", "filename:10:4"},
    	{"/*line foo.go:10*/", "foo.go:10:"},
    	{"/*line foo.go:10:4*/", "foo.go:10:4:"},
    	{"/*line foo.go:10:4*/\n", "foo.go:11:1:"},
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

        @Nonnull
        default MessageBuilder a(Object value) {
            return append(String.valueOf(value));
        }
    
        /**
         * Append newline to the message buffer.
         *
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder newline() {
            return append(System.lineSeparator());
        }
    
        /**
         * Append formatted content to the buffer.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultTextArea.java

        private static final Action<AnsiContext> NEW_LINE_ACTION = new Action<AnsiContext>() {
            @Override
            public void execute(AnsiContext ansi) {
                ansi.newLine();
            }
        };
        private static final int CHARS_PER_TAB_STOP = 8;
        private final Cursor writePos = new Cursor();
        private final AnsiExecutor ansiExecutor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13273.go

    	<-<-chan int // ERROR "unexpected <-, expected chan|expecting {" (new parser: same error as for type decl)
    
    	type _ <-chan<-int // ERROR "unexpected int, expected chan|expected .*chan.*|expected chan|expected .*;.* or .*}.* or newline"
    	<-chan<-int // ERROR "unexpected int, expected chan|expecting {" (new parser: same error as for type decl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/pos.go

    	if b.Col() == 0 {
    		// base column is unknown => relative column is unknown
    		// (the current specification for line directives requires
    		// this to apply until the next PosBase/line directive,
    		// not just until the new newline)
    		return 0
    	}
    	if pos.Line() == b.Pos().Line() {
    		// pos on same line as pos base => column is relative to pos base
    		return b.Col() + (pos.Col() - b.Pos().Col())
    	}
    	return pos.Col()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner_test.go

    			nlsemi = true
    		}
    
    		if nlsemi {
    			got.next()
    			if got.tok != _Semi {
    				t.Errorf("%s: got tok %s; want ;", src, got.tok)
    				continue
    			}
    			if got.lit != "newline" {
    				t.Errorf("%s: got %s; want newline", src, got.lit)
    			}
    		}
    
    		got.next()
    	}
    
    	if got.tok != _EOF {
    		t.Errorf("got %q; want _EOF", got.tok)
    	}
    }
    
    var sampleTokens = [...]struct {
    	tok  token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
Back to top