Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,144 for Implementation (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/daemon-protocol/build.gradle.kts

        api(project(":core-api"))
        api(project(":core"))
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
        implementation(project(":io"))
        implementation(project(":enterprise-logging"))
    
        testImplementation(testFixtures(project(":serialization")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/build.gradle.kts

    dependencies {
        api(project(":base-services"))
        api(project(":model-core"))
        api(project(":base-services-groovy"))
    
        api(libs.jsr305)
        api(libs.groovy)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":core-api"))
    
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":model-core")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 841 bytes
    - Viewed (0)
  8. platforms/ide/ide-native/build.gradle.kts

        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":service-provider"))
    
        implementation(project(":model-core"))
        implementation(project(":testing-native"))
        implementation(project(":logging-api"))
        implementation(libs.commonsLang)
    
        runtimeOnly(project(":dependency-management"))
        runtimeOnly(project(":testing-base"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/PatternCompiler.java

       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
      /**
       * Returns {@code true} if the regex implementation behaves like Perl -- notably, by supporting
       * possessive quantifiers but also being susceptible to catastrophic backtracking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/PatternCompiler.java

       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
      /**
       * Returns {@code true} if the regex implementation behaves like Perl -- notably, by supporting
       * possessive quantifiers but also being susceptible to catastrophic backtracking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top