Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for berkes (0.19 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

    import org.gradle.process.internal.JavaExecHandleFactory;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.util.Arrays;
    
    /**
     * Serves the given directory with a simple HTTP server.
     */
    @DisableCachingByDefault(because = "This task starts a HTTP server and should not be cached.")
    public abstract class ServeDocs extends DefaultTask {
        @InputFiles
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 18 12:38:47 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val sshdScp = "org.apache.sshd:sshd-scp"
        val sshdSftp = "org.apache.sshd:sshd-sftp"
        val testcontainersSpock = "org.testcontainers:spock"
        val typesafeConfig = "com.typesafe:config"
        val xerces = "xerces:xercesImpl"
        val xmlunit = "xmlunit:xmlunit"
    
        val licenses = mapOf(
            ansiControlSequenceUtil to License.Apache2,
            ant to License.Apache2,
            antLauncher to License.Apache2,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

                        jvmArgs '-Xmx1024m'
                        classpath = xslClasspath
                        systemProperty 'xslthl.config', xslthlConfigFile
                        systemProperty 'org.apache.xerces.xni.parser.XMLParserConfiguration', 'org.apache.xerces.parsers.XIncludeParserConfiguration'
                    }
                }
            } as Runnable)
        }
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Oct 05 19:36:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

                "org/apache/tools/ant",
                "org/apache/commons/logging",
                "org/jetbrains/annotations",
                "org/slf4j",
                "org/apache/log4j",
                "org/apache/xerces",
                "org/w3c/dom",
                "org/xml/sax",
                "sun/misc"
            )
    
            @Throws(IOException::class)
            private
            fun openJarFile(file: Path): ZipInputStream {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  5. build-logic-commons/build-platform/build.gradle.kts

            api("org.openmbee.junit:junit-xml-parser:1.0.0")
            api("org.ow2.asm:asm:$asmVersion")
            api("org.ow2.asm:asm-commons:$asmVersion")
            api("org.ow2.asm:asm-tree:$asmVersion")
            api("xerces:xercesImpl:2.12.2") {
                because("Maven Central and JCenter disagree on version 2.9.1 metadata")
            }
            api("net.bytebuddy:byte-buddy") { version { strictly("1.10.21") } }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. .cm/plugins/filters/byCodeowner/ignore/index.js

    const checkPattern = pattern => pattern
        && isString(pattern)
        && !REGEX_TEST_BLANK_LINE.test(pattern)
        && !REGEX_INVALID_TRAILING_BACKSLASH.test(pattern)
    
        // > A line starting with # serves as a comment.
        && pattern.indexOf('#') !== 0
    
    const splitPattern = pattern => pattern.split(REGEX_SPLITALL_CRLF)
    
    class IgnoreRule {
        constructor (
            origin,
            pattern,
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

                "org/codehaus/groovy",
                "org/apache/tools/ant",
                "org/apache/commons/logging",
                "org/slf4j",
                "org/apache/log4j",
                "org/apache/xerces",
                "org/w3c/dom",
                "org/xml/sax",
                "sun/misc"
            )
        }
    
        @TempDir
        lateinit var projectDir: Path
    
        private
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    If you need to check on [CI](http://builds.gradle.org/) status as an external contributor, you can click "Log in as guest".
    
    ## Useful tips
    
    ### How Gradle Works
    
    We have [a series of blog](https://blog.gradle.org/how-gradle-works-1) that explains how Gradle works.
    This may help you better understand and contribute to Gradle.
    
    ### Debugging Gradle
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top