Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,104 for Implementation (0.36 sec)

  1. platforms/software/platform-base/build.gradle.kts

        api(project(":files"))
        api(project(":logging"))
        api(project(":model-core"))
    
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(project(":dependency-management"))
        implementation(project(":execution"))
    
        implementation(libs.commonsLang)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":core-api")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        return ValuesIn(array);
      }
    
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ValueArray$i& other);
    
    $for j [[
    
      const T$j v$(j)_;
    ]]
    
    };
    
    ]]
    
    # if GTEST_HAS_COMBINE
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Generates values from the Cartesian product of values produced
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

     */
    public interface CallInterceptor {
    
        /**
         * Called when the method/constructor/property read is intercepted.
         * The return value of this method becomes the result of the intercepted call.
         * The implementation may throw, and the exception will be propagated to the caller.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Build operations are our way to inspect the process of executing a build"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(libs.jsr305)
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.slf4jApi)
    
        testFixturesImplementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 394 bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

            given:
            buildFile << """
                plugins {
                    id 'application'
                }
    
                dependencies {
                    runtimeOnly "com.h2database:h2:2.1.214"
                    implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
                    compileOnly "org.apache.commons:commons-lang3:3.12.0"
                }
            """
            writeBaseBuildFile()
            writeNonApiAccessibilityTest()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-api/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Annotation classes used by the Declarative DSL"
    
    dependencies {
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 246 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

                project(':a') {
                    dependencies {
                        implementation project(':b')
                    }
                }
                project(':b') {
                    dependencies {
                        implementation project(':c')
                        api 'org.apache.commons:commons-lang3:3.9'
                        implementation 'commons-io:commons-io:1.4'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/build.gradle

    plugins {
        id 'org.gradle.playframework' version 'PLUGIN_VERSION'
    }
    
    // repositories added in PlayApp class
    dependencies {
        implementation "com.typesafe.play:play-guice_2.13:2.7.9"
        implementation "ch.qos.logback:logback-classic:1.2.3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 247 bytes
    - Viewed (0)
  9. build-logic/cleanup/build.gradle.kts

            "DefaultCharset", // 3 occurrences
            "JavaTimeDefaultTimeZone", // 1 occurrences
            "StringCaseLocaleUsage", // 2 occurrences
        )
    }
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 557 bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/build.gradle.kts

        api(project(":analysis:analysis-api-impl-barebone"))
        api(project(":analysis:kt-references"))
        api(project(":compiler:resolution.common.jvm"))
        implementation(project(":compiler:backend-common"))
        implementation(kotlinxCollectionsImmutable())
        api(intellijCore())
        implementation(project(":analysis:analysis-internal-utils"))
    
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top