Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 154 for Newlines (0.68 sec)

  1. src/internal/txtar/archive.go

    // and end with the three-byte sequence " --", but the enclosed
    // file name can be surrounding by additional white space,
    // all of which is stripped.
    //
    // If the txtar file is missing a trailing newline on the final line,
    // parsers should consider a final newline to be present anyway.
    //
    // There are no possible syntax errors in a txtar archive.
    package txtar
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/LinksOfflineJavadocOptionFileOption.java

            writerContext.writeValue(offlineLink.getExtDocUrl());
            writerContext.write(" ");
            writerContext.writeValue(offlineLink.getPackagelistLoc());
            writerContext.newLine();
        }
    
        @Override
        public LinksOfflineJavadocOptionFileOption duplicate() {
            List<JavadocOfflineLink> duplicateValue = Lists.newArrayList(value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/MultilineMultiValueJavadocOptionFileOption.java

                for (String value : occurrence) {
                    writerContext.writeValue(value);
                    writerContext.write(joinBy);
                }
                writerContext.newLine();
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/go/doc/comment/markdown.go

    		case '\n':
    			// Turn all \n into spaces, for a few reasons:
    			//   - Avoid introducing paragraph breaks accidentally.
    			//   - Avoid the need to reindent after the newline.
    			//   - Avoid problems with Markdown renderers treating
    			//     every mid-paragraph newline as a <br>.
    			out.WriteString(s[start:i])
    			out.WriteByte(' ')
    			start = i + 1
    			continue
    		case '`', '_', '*', '[', '<', '\\':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/SimpleIdnaMappingTable.kt

      while (!exhausted()) {
        if (buffer[0] != ' '.code.toByte()) return
        skip(1L)
      }
    }
    
    private fun BufferedSource.skipRestOfLine() {
      when (val newline = indexOf('\n'.code.toByte())) {
        -1L -> skip(buffer.size) // Exhaust this source.
        else -> skip(newline + 1)
      }
    }
    
    /**
     * Reads lines from `IdnaMappingTable.txt`.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ExpandDetails.java

         * files ({@code \n}, {@code \t}, {@code \\}, etc) are converted to the symbols that they represent, so, for example {@code \n} becomes newline. If set to {@code true} then escape sequences are
         * left as is.
         * <p>
         * Default value is {@code false}.
         *
         * @see groovy.text.SimpleTemplateEngine#setEscapeBackslash(boolean)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:00:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/GroupsJavadocOptionFileOption.java

                        .write("\"" + group + "\"")
                        .write(" ")
                        .write("\"" + CollectionUtils.join(":", groupPackages) + "\"")
                        .newLine();
                }
            }
        }
    
        @Override
        public GroupsJavadocOptionFileOption duplicate() {
            Map<String, List<String>> duplicateValue = new LinkedHashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/debug/mod_test.go

    // license that can be found in the LICENSE file.
    
    package debug_test
    
    import (
    	"reflect"
    	"runtime/debug"
    	"strings"
    	"testing"
    )
    
    // strip removes two leading tabs after each newline of s.
    func strip(s string) string {
    	replaced := strings.ReplaceAll(s, "\n\t\t", "\n")
    	if len(replaced) > 0 && replaced[0] == '\n' {
    		replaced = replaced[1:]
    	}
    	return replaced
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. src/errors/join.go

    // Any nil error values are discarded.
    // Join returns nil if every value in errs is nil.
    // The error formats as the concatenation of the strings obtained
    // by calling the Error method of each element of errs, with a newline
    // between each string.
    //
    // A non-nil error returned by Join implements the Unwrap() []error method.
    func Join(errs ...error) error {
    	n := 0
    	for _, err := range errs {
    		if err != nil {
    			n++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 18:37:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * <p>
         * Note that all escape sequences ({@code \n}, {@code \t}, {@code \\}, etc) are converted to the symbols
         * they represent, so, for example, {@code \n} becomes newline. If this is undesirable then {@link #expand(Map, Action)}
         * should be used to disable this behavior.
         *
         * @param properties reference-to-value map for substitution
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top