Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for url (0.23 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    repositories {
        maven {
            name = "Gradle public repository"
            url = uri("https://repo.gradle.org/gradle/public")
            content {
                includeGroup("net.rubygrapefruit")
                includeModule("flot", "flot")
                includeModule("org.gradle", "gradle-tooling-api")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

        "-Porg.gradle.java.installations.auto-download=false",
        os.javaInstallationLocations()
    ) + listOf(
        "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
        "-Porg.gradle.performance.db.url" to "%performance.db.url%",
        "-Porg.gradle.performance.db.username" to "%performance.db.username%"
    ).map { (key, value) -> os.escapeKeyValuePair(key, value) }
    
    const val individualPerformanceTestArtifactRules = """
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

    import jetbrains.buildServer.configs.kotlin.ui.add
    import java.util.Locale
    
    const val pluginPortalUrlOverride = "-Dorg.gradle.internal.plugins.portal.url.override=%gradle.plugins.portal.url%"
    
    fun BuildSteps.customGradle(init: GradleBuildStep.() -> Unit, custom: GradleBuildStep.() -> Unit): GradleBuildStep =
        GradleBuildStep(init)
            .apply(custom)
            .also {
                step(it)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  4. .github/workflows/gitstream.yml

            required: true
          base_ref:
            description: the base ref
            required: true
          installation_id:
            description: the installation id
            required: false
          resolver_url:
            description: the resolver url to pass results to
            required: true
          resolver_token:
            description: Optional resolver token for resolver service
            required: false
            default: ''
    
    jobs:
      gitStream:
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 19 12:22:37 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                "\"-Porg.gradle.performance.branchName=%teamcity.build.branch%\"",
                "\"-Porg.gradle.performance.db.url=%performance.db.url%\"",
                "\"-Porg.gradle.performance.db.username=%performance.db.username%\"",
                "-DenableTestDistribution=%enableTestDistribution%",
                "-Dorg.gradle.workers.max=%maxParallelForks%",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                    extraParameters = listOf(
                        "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
                        "-Porg.gradle.performance.db.url" to "%performance.db.url%",
                        "-Porg.gradle.performance.db.username" to "%performance.db.username%",
                        "-Porg.gradle.performance.dependencyBuildIds" to dependencyBuildIds,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    plugins {
        id("gradlebuild.module-identity")
    }
    
    repositories {
        ['distributions', 'distributions-snapshots'].each { distUrl ->
            ivy {
                name 'Gradle distributions'
                url 'https://services.gradle.org'
                patternLayout {
                    artifact "/${distUrl}/[module]-[revision]-bin(.[ext])"
                }
                metadataSources {
                    artifact()
                }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 12:20:44 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top