Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 4,706 for Implementation (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            uncheckedModule("org2", "tada", "1.1")
            buildFile << """
                dependencies {
                    implementation "org:foo:1.0"
                    implementation "org:bar:1.0"
                    implementation "org:baz:1.0"
                    implementation "org2:tada:1.1"
                }
            """
    
            expect:
            succeeds ":compileJava"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         * A shared or exclusive file lock is held while fetching the value, depending on implementation.
         *
         * @return The value, or null if no value associated with the key.
         */
        @Override
        @Nullable
        V getIfPresent(K key);
    
        /**
         * Returns the value mapped to the given key, producing the value if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. okhttp-brotli/README.md

    OkHttp Brotli Implementation
    ============================
    
    This module is an implementation of [Brotli][1] compression.
    It enables Brotli support in addition to tranparent Gzip support,
    provided Accept-Encoding is not set previously.  Modern web servers
    must choose to return Brotli responses.  n.b. It is not used for
    sending requests.
    
    ```java
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(BrotliInterceptor.INSTANCE)
      .build();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 572 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/workerApi/noIsolation/groovy/build.gradle

    // tag::unit-of-work[]
    // The parameters for a single unit of work
    interface ReverseParameters extends WorkParameters {
        RegularFileProperty getFileToReverse()
        DirectoryProperty getDestinationDir()
    }
    
    // The implementation of a single unit of work.
    abstract class ReverseFile implements WorkAction<ReverseParameters> {
        private final FileSystemOperations fileSystemOperations
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/swift-application-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> mainVariantImplementation [style=invis, weight=1000]
        mainVariantImplementation -> implementation [headport=s, tailport=n]
    
        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultComponentDependenciesTest.groovy

                }
            }
        }
    
        def "can add implementation dependency"() {
            def dep = Stub(Dependency)
    
            when:
            dependencies.implementation("a:b:c")
    
            then:
            1 * dependencyFactory.create("a:b:c") >> dep
            1 * deps.add(dep)
        }
    
        def "can add and configure implementation dependency"() {
            def dep = Stub(ExternalModuleDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. android-test/build.gradle.kts

        "META-INF/LICENSE.md",
        "META-INF/LICENSE-notice.md",
        "README.txt",
        "org/bouncycastle/LICENSE"
      )
    }
    
    dependencies {
      implementation(libs.kotlin.reflect)
      implementation(libs.playservices.safetynet)
      implementation(projects.okhttp)
      implementation(projects.okhttpAndroid)
    
      androidTestImplementation(projects.okhttpTestingSupport) {
        exclude("org.openjsse", "openjsse")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/java-library/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    dependencies {
        implementation(platform("com.example.platform:plugins-platform"))
    
        implementation(project(":commons"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 158 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/groovy/buildSrc/build.gradle

    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'commons-io:commons-io:2.5'
        implementation 'commons-codec:commons-codec:1.9' // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 161 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

                include 'a', 'b'
            """
    
            setupBuildWithColorTransformImplementation(true)
    
            buildFile << """
                dependencies {
                    implementation project(':a')
                    implementation project(':b')
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top