Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for eol (0.13 sec)

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

    mvn                eol=lf crlf=input
    mvnDebug           eol=lf crlf=input
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat May 23 07:59:32 GMT 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
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Sep 02 12:15:16 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  3. .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
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed May 03 10:46:21 GMT 2023
    - 263 bytes
    - Viewed (0)
  4. .gitattributes

    *.sh        eol=lf
    *.bat       eol=crlf
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Sep 15 12:38:11 GMT 2013
    - 61 bytes
    - Viewed (0)
  5. .gitattributes

    * text=auto eol=lf
    
    *.bat text eol=crlf
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Jul 28 09:21:57 GMT 2021
    - 52 bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

        private static final Pattern TAG = Pattern.compile("(?s)\\{@.+?\\}");
        private static final Pattern END_TAG_NAME = Pattern.compile("(?s)\\s|}");
        private static final Pattern WHITESPACE_WITH_EOL = Pattern.compile("(?s)\\s+");
        private static final String START_HTML_COMMENT = "<!--";
        private static final String END_HTML_COMMENT = "-->";
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            StringBuffer input = new StringBuffer();
            int c = -1;
            boolean eol = false;
    
            while (!eol) {
                switch( c = read() ) {
                    case -1:
                    case '\n':
                        eol = true;
                        break;
                    case '\r':
                        eol = true;
                        long cur = fp;
                        if( read() != '\n' ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            StringBuffer input = new StringBuffer();
            int c = -1;
            boolean eol = false;
    
            while ( !eol ) {
                switch ( c = read() ) {
                case -1:
                case '\n':
                    eol = true;
                    break;
                case '\r':
                    eol = true;
                    long cur = this.fp;
                    if ( read() != '\n' ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        val action = type.action
        val unixScript = """
    mkdir -p test-splits
    rm -rf test-splits/*-test-classes.properties
    cat > test-splits/$action-test-classes.properties << EOL
    ${testClasses.joinToString("\n")}
    EOL
    echo "Tests to be ${action}d in this build"
    cat test-splits/$action-test-classes.properties
    """
    
        val linesWithEcho = testClasses.joinToString("\n") { "echo $it" }
    
        val windowsScript = """
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 4.7K 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
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 22 11:36:07 GMT 2022
    - 459 bytes
    - Viewed (0)
Back to top