- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for CRLF (0.13 seconds)
-
.gitattributes
* text=auto eol=lf *.bat text eol=crlf
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Jul 28 09:21:57 GMT 2021 - 52 bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/.gitattributes
mvn eol=lf crlf=input mvnDebug eol=lf crlf=input
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat May 23 07:59:32 GMT 2020 - 111 bytes - Click Count (0) -
.gitattributes
# https://help.github.com/articles/dealing-with-line-endings/ # https://github.com/Danimoth/gitattributes # These are explicitly windows files and should use crlf *.bat text eol=crlf # These files are text and should be normalized (Convert crlf => lf) *.bash text eol=lf *.css text diff=css *.htm text diff=html *.html text diff=html *.java text diff=java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Sep 02 12:15:16 GMT 2020 - 1.1K bytes - Click Count (0) -
cmd/streaming-signature-v4_test.go
} } } // Test read CRLF characters on input reader. func TestReadCRLF(t *testing.T) { type testCase struct { reader io.Reader expectedErr error } tests := []testCase{ // Test - 1 valid buffer with CRLF. {bytes.NewReader([]byte("\r\n")), nil}, // Test - 2 invalid buffer with no CRLF. {bytes.NewReader([]byte("he")), errMalformedEncoding},
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.7K bytes - Click Count (0) -
okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt
"retry: ".encodeUtf8(), // 19 "retry:".encodeUtf8(), ) private val CRLF = "\r\n".encodeUtf8() @Throws(IOException::class) private fun BufferedSource.readData(data: Buffer) { data.writeByte('\n'.code) readFully(data, indexOfElement(CRLF)) select(options) // Skip the newline bytes. } @Throws(IOException::class)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 4.3K bytes - Click Count (0) -
dbflute_fess/dfprop/basicInfoMap.dfprop
# o sourceCodeLineSeparator: (NotRequired - Default no setting) # The line separator setting for source code of generated classes. # LF -> converted to LF # CRLF -> converted to CRLF # (no setting) -> no convert (template default is CRLF) # #; sourceCodeLineSeparator = LF # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.2K bytes - Click Count (0) -
docs/debugging/inspect/main.go
if len(privateKeys) == 0 && !*stdin { reader := bufio.NewReader(os.Stdin) fmt.Print("Enter Decryption Key: ") text, _ := reader.ReadString('\n') // convert CRLF to LF *keyHex = strings.ReplaceAll(text, "\n", "") *keyHex = strings.TrimSpace(*keyHex) } } var inputs []string // Parse parameters switch { case *stdin:
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Feb 17 17:09:42 GMT 2025 - 5.7K bytes - Click Count (0) -
.gitattributes
*.sh eol=lf *.bat eol=crlf
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Sep 15 12:38:11 GMT 2013 - 61 bytes - Click Count (0)