Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 3,100 for Implementation (0.21 sec)

  1. platforms/core-runtime/gradle-cli-main/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
        id("gradlebuild.start-scripts")
    }
    
    description = "Java 6-compatible entry point of the `gradle` command. Boostraps the Gradle client implementation in :launcher."
    
    gradlebuildJava.usedForStartup()
    
    app {
        mainClassName = "org.gradle.launcher.GradleMain"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/build.gradle.kts

        api(project(":core-api"))
        api(project(":dependency-management"))
    
        api(libs.guava)
        api(libs.inject)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":logging-api"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkAction.java

     */
    
    package org.gradle.workers;
    
    import javax.inject.Inject;
    
    /**
     * Represents the implementation of a unit of work to be used when submitting work to the
     * {@link WorkerExecutor}.
     *
     * <p>
     *     A work action implementation is an abstract class implementing the {@link #execute()} method.
     *     A minimal implementation may look like this:
     * </p>
     *
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/tooling/build.gradle

    repositories {
        ivy { url '../plugin/build/repo' }
        maven { url 'https://repo.gradle.org/gradle/libs-releases' }
    }
    
    dependencies {
        implementation 'org.gradle.sample:plugin:1.0'
        implementation "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 494 bytes
    - Viewed (0)
  5. platforms/core-runtime/distributions-core/build.gradle.kts

        }
        pluginsRuntimeOnly(project(":composite-builds")) {
            because("We always need a BuildStateRegistry service implementation for certain code in ':core' to work.")
        }
        pluginsRuntimeOnly(project(":tooling-api-builders")) {
            because("We always need a BuildEventListenerFactory service implementation for ':launcher' to create global services.")
        }
        pluginsRuntimeOnly(project(":version-control")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/ivy/build.gradle.kts

        api(project(":publish"))
        api(project(":resources"))
    
        api(libs.jsr305)
        api(libs.inject)
    
        implementation(project(":functional"))
        implementation(project(":logging-api"))
    
        implementation(libs.guava)
        implementation(libs.commonsLang)
        implementation(libs.ivy)
    
        testImplementation(project(":native"))
        testImplementation(project(":process-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java

        return delegate().descendingMultiset();
      }
    
      /**
       * A skeleton implementation of a descending multiset view. Normally, {@link
       * #descendingMultiset()} will not reflect any changes you make to the behavior of methods such as
       * {@link #add(Object)} or {@link #pollFirstEntry}. This skeleton implementation correctly
       * delegates each of its operations to the appropriate methods of this {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeProductionComponentDependenciesIntegrationTest.groovy

        def "can define different implementation dependencies on each binary"() {
            given:
            createDirs("lib")
            settingsFile << 'include "lib"'
            makeComponentWithLibrary()
            buildFile << """
                ${componentUnderTestDsl} {
                    binaries.getByName('mainDebug').configure {
                        dependencies {
                            implementation project(':lib')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/spring-boot-application/build.gradle.kts

    plugins {
        `kotlin-dsl` // <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
    - 274 bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-local/build.gradle.kts

    }
    
    description = "Local build cache implementation"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":build-cache"))
        api(project(":build-cache-spi"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":persistent-cache"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 849 bytes
    - Viewed (0)
Back to top