Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Park (0.34 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

            scanner.next();
            scanner.mark();
            scanner.find(';');
            String value = ENTITIES.get(scanner.region().toLowerCase());
            buffer.append(value);
            scanner.next();
        }
    
        private void parseHtmlEncodedChar(StringBuilder buffer) {
            scanner.next(2);
            scanner.mark();
            scanner.find(';');
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.1K bytes
    - Viewed (0)
  2. .mailmap

    Lóránt Pintér <******@****.***> <******@****.***>
    Marcin Erdmann <******@****.***> <******@****.***>
    Marco Vermeulen <******@****.***> <******@****.***>
    Mark Vieira <mark@gradle.com> <******@****.***>
    Michael Barnathan <******@****.***> <******@****.***>
    Paul King <******@****.***> <******@****.***>
    Paul Merlin <******@****.***> <******@****.***>
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Oct 03 06:34:28 GMT 2017
    - 3.3K bytes
    - Viewed (0)
  3. .gitignore

    /*/internal-android-performance-testing/build-android-libs
    test-splits/
    /gradle/verification-keyring.gpg
    
    # IDEA
    # ----
    !/.idea
    /.idea/*
    !/.idea/codeStyles
    !/.idea/inspectionProfiles
    !/.idea/icon.png
    !/.idea/icon_dark.png
    */**/.idea
    */**/.shelf
    .shelf
    /*.iml
    /*/*.iml
    /*/*/*.iml
    /*/*/*/*.iml
    /*/*/*/*/*.iml
    /out
    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 03 21:04:56 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  4. README.md

    <picture>
      <source media="(prefers-color-scheme: dark)" srcset="./gradle-white-primary.png" width="350px">
      <img alt="Gradle" src="./gradle-dark-green-primary.png" width="350px">
    </picture>
    
    [![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.gradle.org/scans)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Mar 24 20:49:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocScanner.java

        }
    
        @Override
        public String toString() {
            return input.substring(pos);
        }
    
        public boolean isEmpty() {
            return pos == input.length();
        }
    
        public void mark() {
            markPos = pos;
        }
    
        public void next() {
            next(1);
        }
    
        public void next(int n) {
            pos += n;
        }
    
        public boolean lookingAt(char c) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.3K bytes
    - Viewed (0)
  6. .idea/icon_dark.png

    icon_dark.png...
    PNG Image
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 06 19:03:14 GMT 2020
    - 2K bytes
    - Viewed (0)
  7. .cm/plugins/filters/byCodeowner/ignore/index.js

    // '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`'
    // -> ignore-rules will not deal with it, because it costs extra `fs.stat` call
    //      you could use option `mark: true` with `glob`
    
    // '`foo/`' should not continue with the '`..`'
    const REPLACERS = [
    
        // > Trailing spaces are ignored unless they are quoted with backslash ("\")
        [
            // (a\ ) -> (a )
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top