Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 154 for Newlines (0.12 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultAnsiExecutorTest.groovy

            int startRow = writePos.row
            String text = "A" * TERMINAL_WIDTH + "B" * 3
    
            when:
            ansiExecutor.writeAt(writePos) {
                it.a(text)
                it.newLine()
            }
    
            then:
            writeCursor == Cursor.newBottomLeft()
            writePos == writeCursor
            interaction { expectLineWrapCallback(startRow, text.length()) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue18393.go

    
    /* //line not at start of line: ignored */ //line issue18393.go:30
    var x     // error on line 24, not 30
    
    
    // ERROR "import path must be a string"
    
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:26:06 UTC 2020
    - 565 bytes
    - Viewed (0)
  3. src/internal/fuzz/encoding_test.go

    byte('aa)`,
    			reject: true,
    		},
    		{
    			desc: "byte out of range",
    			in: `go test fuzz v1
    byte('☃')`,
    			reject: true,
    		},
    		{
    			desc: "extra newline",
    			in: `go test fuzz v1
    string("has extra newline")
    `,
    			want: `go test fuzz v1
    string("has extra newline")`,
    		},
    		{
    			desc: "trailing spaces",
    			in: `go test fuzz v1
    string("extra")
    []byte("spacing")  
        `,
    			want: `go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/heading.go

    	}
    	buf.WriteByte(' ')
    	// The prefix has already been printed for this line of text.
    	s.prefix = ""
    	b.Text.printMarkdown(buf, s)
    	if b.ID != "" {
    		// A heading text is a block, so it ends in a newline. Move the newline
    		// after the ID.
    		buf.Truncate(buf.Len() - 1)
    		fmt.Fprintf(buf, " {#%s}\n", b.ID)
    	}
    }
    
    func newATXHeading(p *parseState, s line) (line, bool) {
    	peek := s
    	var n int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/UserInputResumeEvent.java

        }
    
        @Override
        public LogLevel getLogLevel() {
            return LogLevel.QUIET;
        }
    
        @Override
        public void render(StyledTextOutput output) {
            // Add a newline after a batch of questions
            output.println();
        }
    
        @Override
        public RenderableOutputEvent withBuildOperationId(OperationIdentifier buildOperationId) {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/util/documentation.go

    				// (if the paragraph and the line are empty, then this is non-first empty line in between paragraphs and needs to be ignored)
    				// In that case we join all of the paragraph lines with a single space,
    				// add a trailing newline character (to ensure an empty line after the paragraph),
    				// append the paragraph text to the output and clear everything in the current paragraph slice.
    				output = append(output, strings.Join(paragraph, " ")+"\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/internal/pgo/serialize_test.go

    		if !ok {
    			break
    		}
    		if strings.ContainsAny(caller, " \r\n") {
    			t.Skip("caller contains space or newline")
    		}
    
    		callee, ok := consumeString()
    		if !ok {
    			break
    		}
    		if strings.ContainsAny(callee, " \r\n") {
    			t.Skip("callee contains space or newline")
    		}
    
    		line, ok := consumeInt64()
    		if !ok {
    			break
    		}
    		weight, ok := consumeInt64()
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/OptionLessStringsJavadocOptionFileOption.java

            if (value != null && !value.isEmpty()) {
                for (String singleValue : value) {
                    writerContext.writeValue(singleValue);
                    writerContext.newLine();
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/GroupsJavadocOptionFileOptionTest.groovy

            1 * writerContextMock.write(' ') >> writerContextMock
            1 * writerContextMock.write('"java.lang:java.util*"') >> writerContextMock
            1 * writerContextMock.newLine() >> writerContextMock
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/LinksOfflineJavadocOptionFileOptionTest.groovy

            1 * writerContextMock.write(' ') >> writerContextMock
            1 * writerContextMock.writeValue(packageListLoc) >> writerContextMock
            1 * writerContextMock.newLine()
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top