Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,733 for Implementation (0.15 sec)

  1. platforms/core-runtime/base-services/build.gradle.kts

        api(project(":build-operations"))
        api(libs.inject)
        api(libs.jsr305)
        api(libs.guava)
    
        implementation(projects.io)
        implementation(projects.time)
    
        implementation(libs.asm)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.slf4jApi)
    
        integTestImplementation(project(":logging"))
    
        testFixturesApi(project(":hashing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

       "compileOnly" -> "compileOnlyApi"
       "compileClasspath" -> "implementation"
       "implementation" [shape="box", label=<<B>implementation</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
       "implementation" -> "api"
    
       "runtimeClasspath" [shape="box", label=<<B>runtimeClasspath</B>(R)>, color="lightblue", bgcolor="lightblue", style="filled"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/native/tooling-native/build.gradle.kts

            api(project(":tooling-api"))
        }
    
        implementation(projects.baseServices)
        implementation(project(":file-collections"))
        implementation(project(":language-native"))
        implementation(project(":platform-native"))
        implementation(project(":testing-native"))
    
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":platform-native")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  4. build-logic-commons/basics/build.gradle.kts

        api(platform(project(":build-platform")))
    
        implementation("com.google.guava:guava") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm-commons") {
            because("Used by class analysis")
        }
    
        implementation(kotlin("compiler-embeddable") as String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  5. testing/performance/src/templates/project-with-source/build.gradle

            mavenBom 'io.spring.platform:platform-bom:2.0.5.RELEASE'
        }
    }
    <% } %>
    
    dependencies {
        implementation 'commons-lang:commons-lang:2.5'
        implementation "org.apache.httpcomponents:httpclient:4.0"
        implementation "commons-codec:commons-codec:1.2"
        implementation "org.slf4j:jcl-over-slf4j:1.7.10"
        implementation "org.codehaus.groovy:groovy:2.4.15"
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/resources-sftp/build.gradle.kts

        implementation(project(":core"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
        implementation(libs.jsr305)
        implementation(libs.slf4jApi)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":dependency-management")))
        testImplementation(testFixtures(project(":ivy")))
        testImplementation(testFixtures(project(":maven")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. build-logic/packaging/build.gradle.kts

    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":documentation")) {
            // TODO turn this around: move corresponding code to this project and let docs depend on it
            because("API metadata generation is part of the DSL guide")
        }
        implementation(project(":jvm"))
        implementation(project(":kotlin-dsl"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 704 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/services/BuildService.java

     * some state that tasks use to do their work. A service implementation might hold, for example, an in-memory cache that tasks use
     * to improve performance. Or, as another example, a service implementation might represent a web service that the build starts and
     * uses.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 21 20:09:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            mavenRepo.module("org.test", "buildC", "1.0").publish()
    
            buildA.buildFile << """
                dependencies {
                    implementation "org.different:buildB:1.0"
                    implementation "org.test:buildC:1.0"
                }
            """
    
            when:
            checkDependencies()
    
            then:
            checkGraph {
                module("org.different:buildB:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/PATENTS

    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    order or agree to the institution of patent litigation against any
    entity (including a cross-claim or counterclaim in a lawsuit) alleging
    that this implementation of Go or any code incorporated within this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top