Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for grad_b (0.23 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/organizingGradleProjects/customGradleDistribution/groovy/build.gradle

    plugins {
        id 'base'
    }
    
    // This is defined in buildSrc
    import org.gradle.distribution.DownloadGradle
    
    version = '0.1'
    
    tasks.register('downloadGradle', DownloadGradle) {
        description = 'Downloads the Gradle distribution with a given version.'
        gradleVersion = '4.6'
    }
    
    tasks.register('createCustomGradleDistribution', Zip) {
        description = 'Builds custom Gradle distribution and bundles initialization scripts.'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 797 bytes
    - Viewed (0)
  3. 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)
  4. testing/performance/src/templates/project-with-source/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)
  5. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/build.gradle

    plugins {
        id("org.gradle.sample.download")
    }
    
    download {
        // Can use a block to configure the container contents
        resources {
            register('gradle') {
                uri = uri('https://gradle.org')
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

        }
    }
    
    tasks.register('myPropertyTask', MyPropertyTask) {
        messageProperty.set("Hello, Gradle!")
    }
    // end::prop-managed[]
    
    // Provider
    // tag::prov-managed[]
    abstract class MyProviderTask extends DefaultTask {
        final Provider<String> messageProvider = project.providers.provider { "Hello, Gradle!" }
    
        @TaskAction
        void printMessage() {
            println(messageProvider.get())
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dataflowActions/playSound/groovy/plugin/build.gradle

    plugins {
        id("java-gradle-plugin")
    }
    
    
    gradlePlugin {
        plugins {
            soundPlugin {
                id = "org.gradle.sample.sound-feedback-plugin"
                implementationClass = "org.gradle.sample.sound.SoundFeedbackPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 251 bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/multiThreaded/build.gradle

    import java.util.concurrent.Executors
    import java.util.concurrent.TimeUnit
    import org.gradle.internal.logging.text.StyledTextOutputFactory
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Normal
    
    task log {
        doLast {
            def executor = Executors.newCachedThreadPool()
            (1..10).each { thread ->
                executor.execute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/groovy/greeting-plugin/build.gradle

    // tag::plugin[]
    plugins {
        // Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
        id 'java-gradle-plugin'
    }
    
    repositories {
        // Use Maven Central for resolving dependencies.
        // You can declare any Maven/Ivy/file repository here.
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation 'junit:junit:4.13'
    }
    
    gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/groovy/project/build.gradle

    }
    
    // tag::consumer[]
    dependencies {
        // This project requires the main producer component
        implementation('org.gradle.demo:producer:1.0')
    
        // But we also want to use its MongoDB support
        runtimeOnly('org.gradle.demo:producer:1.0') {
            capabilities {
                requireCapability("org.gradle.demo:producer-mongodb-support")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 490 bytes
    - Viewed (0)
Back to top