Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for lib (0.14 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/model/GradleDistribution.kt

                exclude("lib/**")
                exclude("src/**")
                exclude("docs/**")
                exclude("README")
                exclude("getting-started.html")
            }
    
        @get:Classpath
        val coreJars: SortedSet<File>
            get() = filesIn("lib/*.jar")
    
        @get:Classpath
        val agentJars: SortedSet<File>
            get() = filesIn("lib/agents/*.jar")
    
        @get:Classpath
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 16 19:35:39 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

            generator.setExitEnvironmentVar("GRADLE_EXIT_CONSOLE")
            generator.setMainClassName("org.gradle.launcher.GradleMain")
            generator.setScriptRelPath("bin/gradle")
            generator.setClasspath(listOf("lib/$launcherJarName"))
            generator.setAppNameSystemProperty("org.gradle.appname")
            generator.setDefaultJvmOpts(listOf("-Xmx64m", "-Xms64m"))
    
            val unixScriptFile = startScriptsDir.file("gradle").get().asFile
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  3. .idea/scopes/Gradle_public_API.xml

        <!-- The source of truth for this pattern is `build-logic/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt` file, please keep them in sync -->
        <scope name="Gradle public API"
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 29 12:25:53 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  4. .gitattributes

    *.html          text diff=html
    *.java          text diff=java
    *.sh            text eol=lf
    
    
    # These files are binary and should be left untouched
    # (binary is a macro for -text -diff)
    *.a             binary
    *.lib           binary
    *.icns          binary
    *.png           binary
    *.jpg           binary
    *.jpeg          binary
    *.gif           binary
    *.ico           binary
    *.mov           binary
    *.mp4           binary
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Sep 02 12:15:16 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/UserGuideTransformTaskTest.groovy

    """            sources {
                    cpp {
                        lib library: "hello"
                    }
                }""")
            when:
            def actual = UserGuideTransformTask.normalise(content)
    
            then:
            actual ==
    """sources {
        cpp {
            lib library: "hello"
        }
    }"""
        }
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Jul 27 19:28:51 GMT 2021
    - 1.9K bytes
    - Viewed (0)
  6. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

            def projectDir = 'C:\\tcagent1\\work\\f63322e10dd6b396\\'...
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 28 07:00:39 GMT 2023
    - 14.4K bytes
    - Viewed (0)
Back to top