Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for Lf (0.07 sec)

  1. apache-maven/src/assembly/maven/bin/.gitattributes

    mvn                eol=lf crlf=input
    mvnDebug           eol=lf crlf=input
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 111 bytes
    - Viewed (0)
  2. .gitattributes

    * text eol=lf
    
    #
    # The above will handle all files NOT found below
    # 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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            buf.append("{\"text\":\"");
            buf.append(LF);
            buf.append(StringEscapeUtils.escapeJson(discloser.getSavedSubject().orElse(StringUtil.EMPTY).trim()));
            buf.append(LF).append("```");
            buf.append(LF).append(StringEscapeUtils.escapeJson(discloser.getSavedPlainText().orElse(StringUtil.EMPTY).trim()));
            buf.append(LF).append("```\"}");
            return buf.toString();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/crlf.golden

    /*
    Source containing CR/LF line endings.
    The gofmt'ed output must only have LF
    line endings.
    Test case for issue 3961.
    */
    package main
    
    func main() {
    	// line comment
    	println("hello, world!") // another line comment
    	println()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 230 bytes
    - Viewed (0)
  5. src/cmd/gofmt/testdata/crlf.input

    L1:/*
    L2:Source containing CR/LF line endings.
    L3:The gofmt'ed output must only have LF
    L4:line endings.
    L5:Test case for issue 3961.
    L6:*/
    L7:package main
    L8:
    L9:func main() {
    L10:	// line comment
    L11:	println("hello, world!") // another line comment
    L12:	println()
    L13:}
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 243 bytes
    - Viewed (0)
  6. .gitattributes

    **/testData/** linguist-vendored
    *Generated.java linguist-generated=true
    *.kt.txt linguist-language=Kotlin
    * text=auto
    * eol=lf
    *.png binary
    *.jar binary
    compiler/cli/bin/* eol=lf
    compiler/cli/bin/*.bat eol=crlf
    gradlew.bat eol=crlf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 03 10:46:21 UTC 2023
    - 263 bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasherTest.groovy

            expect:
            hasher.hashContent(unnormalized).get() == hasher.hashContent(normalized).get()
    
            where:
            eol     | description
            '\r'    | 'CR'
            '\r\n'  | 'CR-LF'
            '\n'    | 'LF'
        }
    
        def "can normalize line endings in input streams (eol = '#description')"() {
            def unnormalized = inputStream(content.textWithLineEndings(eol))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

                }
            }
    
            for (final String f : langFields) {
                final String lf = f + "_" + language;
                if (doc.containsKey(f) && !doc.containsKey(lf)) {
                    doc.put(lf, doc.get(f));
                    if (logger.isDebugEnabled()) {
                        logger.debug("add {} field", lf);
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/mime/quotedprintable/reader.go

    			// Does the line end in CRLF instead of just LF?
    			hasLF := bytes.HasSuffix(r.line, lf)
    			hasCR := bytes.HasSuffix(r.line, crlf)
    			wholeLine := r.line
    			r.line = bytes.TrimRightFunc(wholeLine, isQPDiscardWhitespace)
    			if bytes.HasSuffix(r.line, softSuffix) {
    				rightStripped := wholeLine[len(r.line):]
    				r.line = r.line[:len(r.line)-1]
    				if !bytes.HasPrefix(rightStripped, lf) && !bytes.HasPrefix(rightStripped, crlf) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  10. .gitattributes

    # Always check-out / check-in files with LF line endings.
    * text=auto eol=lf
    
    hack/verify-flags/known-flags.txt merge=union
    test/test_owners.csv merge=union
    
    **/zz_generated.*.go linguist-generated=true
    **/types.generated.go linguist-generated=true
    **/generated.pb.go linguist-generated=true
    **/generated.proto
    **/types_swagger_doc_generated.go linguist-generated=true
    api/openapi-spec/*.json linguist-generated=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 22 11:36:07 UTC 2022
    - 459 bytes
    - Viewed (0)
Back to top