Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Capt (0.04 sec)

  1. maven-settings/src/site/apt/index.apt

    Hervé Boutemy <******@****.***> 1706543644 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/site/apt/index.apt

    Hervé Boutemy <******@****.***> 1711986351 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/site/apt/index.apt

    Guillaume Nodet <******@****.***> 1712844394 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 11 14:06:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/groovy/build.gradle

    plugins {
        id("org.jetbrains.kotlin.jvm") version "1.9.23"
        id("org.jetbrains.kotlin.kapt") version "1.9.23"
    }
    
    // tag::cacheKapt[]
    plugins.withId("kotlin-kapt") {
        kapt.useBuildCache = true
    }
    // end::cacheKapt[]
    
    // tag::fabricGroovy[]
    plugins.withId("com.android.application") { // or "com.android.library"
        android.buildTypes.debug.ext.enableCrashlytics = false
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 402 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  6. maven-plugin-api/src/site/apt/index.apt

    Hervé Boutemy <******@****.***> 1711904300 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. docker/Dockerfile.base

    ENV DEBIAN_FRONTEND=noninteractive
    
    # Do not add more stuff to this list that isn't small or critically useful.
    # If you occasionally need something on the container do
    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
      apt-get install --no-install-recommends -y \
      ca-certificates \
      curl \
      iptables \
      iproute2 \
      iputils-ping \
      knot-dnsutils \
      netcat-openbsd \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  8. pkg/test/echo/docker/Dockerfile.app_sidecar_base

    ENV DEBIAN_FRONTEND=noninteractive
    
    # Do not add more stuff to this list that isn't small or critically useful.
    # If you occasionally need something on the container do
    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
        apt-get install --no-install-recommends -y \
        ca-certificates \
        curl \
        iptables \
        iproute2 \
        iputils-ping \
        knot-dnsutils \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/kotlin/build.gradle.kts

    import org.jetbrains.kotlin.gradle.plugin.KaptExtension
    
    plugins {
        kotlin("jvm") version "1.9.23"
        kotlin("kapt") version "1.9.23"
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::cacheKapt[]
    pluginManager.withPlugin("kotlin-kapt") {
        configure<KaptExtension> { useBuildCache = true }
    }
    // end::cacheKapt[]
    
    // tag::fabricKotlin[]
    apply(from = "fabric.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 393 bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginSmokeTest.groovy

                        ]) { registerValidationFailure(delegate) }
                    }
                    if (testedPluginId == 'org.jetbrains.kotlin.kapt') {
                        onPlugin('kotlin-kapt') { registerValidationFailure(delegate) }
                    }
                } else {
                    alwaysPasses()
                }
    
                settingsFile << """
                    pluginManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top