Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for grad_b (0.27 sec)

  1. testing/internal-performance-testing/src/templates/root-project/build.gradle

    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            mavenLocal()
            mavenCentral()
    <% } %>
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            maven {
                url 'https://repo.gradle.org/gradle/enterprise-libs-snapshots-local/'
            }
    <% } %>
        }
    
        dependencies {
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            classpath "com.gradle:build-scan-plugin:${buildScanPluginVersion}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  2. testing/performance/src/templates/gradle-properties/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 349 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build.gradle

    tasks.register('checkFeatures') {
        group = 'verification'
        description = 'Run all feature tests'
        dependsOn(gradle.includedBuild('admin-feature').task(':config:check'))
        dependsOn(gradle.includedBuild('user-feature').task(':data:check'))
        dependsOn(gradle.includedBuild('user-feature').task(':table:check'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 428 bytes
    - Viewed (0)
  4. gradle.properties

    org.gradle.caching=true
    org.gradle.jvmargs='-Dfile.encoding=UTF-8'
    org.gradle.parallel=true
    android.enableJetifier=true
    android.useAndroidX=true
    kotlin.mpp.stability.nowarn=true
    kotlin.js.compiler=ir
    kotlin.incremental.js.ir=true
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 09:58:21 UTC 2024
    - 343 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/buildServiceUsingServiceReference/groovy/buildSrc/build.gradle

    plugins {
        id('java-gradle-plugin')
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            download {
                id = 'org.gradle.sample.download'
                implementationClass = 'DownloadPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 242 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/buildSrc/build.gradle

    plugins {
        id('java-gradle-plugin')
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            download {
                id = 'org.gradle.sample.download'
                implementationClass = 'DownloadPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 242 bytes
    - Viewed (0)
  7. build-logic/gradle.properties

    org.gradle.jvmargs=-Xmx2500m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 173 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/stableFeatureFlag/common/gradle.properties

    # This is a workaround for https://github.com/gradle/gradle/issues/22481.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  9. testing/performance/src/templates/root-project/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/build.gradle

    plugins {
        id('groovy-gradle-plugin') // <1>
    }
    
    dependencies {
        implementation(platform('com.example.platform:plugins-platform')) // <2>
    
        implementation(project(':commons')) // <3>
    
        implementation('org.springframework.boot:org.springframework.boot.gradle.plugin')  // <4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 288 bytes
    - Viewed (0)
Back to top