Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 4,693 for Implementation (4.71 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/kotlin/application/build.gradle.kts

    plugins {
        id("myproject.java-conventions")
        application
    }
    
    dependencies {
        implementation(project(":list"))
        implementation(project(":utilities"))
    }
    
    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
    - 220 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform()
            buildFile << """
                project(':a') {
                    dependencies {
                        implementation project(':b')
                        implementation project(':c')
                    }
                }
                project(':b') {
                    tasks.producer.doLast { throw new RuntimeException('broken') }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            implementation project(':common')
        }
    }
    
    project(':app') {
        dependencies {
            implementation 'junit:junit:4.11'
            implementation project(':lib')
        }
    }
    
    """
        }
    
        void setupTransformerTypes() {
            buildFile << """
                abstract class TestTransform implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. samples/crawler/build.gradle.kts

    plugins {
      kotlin("jvm")
      application
    }
    
    application {
      mainClass.set("okhttp3.sample.Crawler")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(libs.jsoup)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 15 23:38:32 UTC 2022
    - 234 bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainInput.java

        private final String vendor;
        private final String implementation;
    
        public JavaToolchainInput(JavaToolchainSpec spec) {
            this.javaLanguageVersion = spec.getLanguageVersion().getOrNull();
            this.vendor = spec.getVendor().get().toString();
            this.implementation = spec.getImplementation().get().toString();
        }
    
        @Optional
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

                    }
    
                    artifacts {
                        implementation p.flatMap { it.output }
                        broken b.flatMap { it.output }
                        broken b.flatMap { throw new RuntimeException("broken artifact") }
                    }
                }
    
                project(':a') {
                    dependencies {
                        implementation project(':b')
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/scala/scala3/groovy/build.gradle

    plugins {
        id 'scala'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'org.scala-lang:scala3-library_3:3.0.1'
        implementation 'commons-collections:commons-collections:3.2.2'
        testImplementation 'org.scalatest:scalatest_3:3.2.9'
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 308 bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-main/build.gradle.kts

     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
    }
    
    description = "Entry point for the Gradle daemon process. Bootstraps the daemon server implementation in :daemon-server."
    
    app {
        mainClassName = "org.gradle.launcher.daemon.bootstrap.GradleDaemon"
    }
    
    dependencies {
        implementation(project(":build-process-services"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

     * should override {@code equals} as well, either providing your own implementation, or delegating
     * to the provided {@code standardEquals} method.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

                      }
                    }
                """
            }
            file("a/build.gradle") << """
                dependencies {
                  implementation(project(":b"))
                  implementation(project(":c"))
                  implementation(project(":d"))
                }
            """
    
            expect:
            succeeds("build", "--parallel", "--max-workers", "4")
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top