Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for Capt (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-model/src/site/apt/index.apt

    Hervé Boutemy <******@****.***> 1672780115 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. maven-embedder/src/site/apt/logging.apt

    Hervé Boutemy <******@****.***> 1687158101 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. maven-toolchain-model/src/site/apt/index.apt

    Hervé Boutemy <******@****.***> 1672780115 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/setup.sources.sh

    # Usage: setup.python.sh <pyversion> <requirements.txt>
    
    # Sets up custom apt sources for our TF images.
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    # Set up shared custom sources
    apt-get update
    apt-get install -y gnupg ca-certificates
    
    # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/ReflectionDemo.kt

            val code = """
                plugins {
                    val kotlinVersion = "1.9.20"
    
                    id("org.jetbrains.kotlin.jvm") version kotlinVersion
                    id("org.jetbrains.kotlin.kapt") version kotlinVersion apply false
                    id("java") apply false
    
                    val app = id("application")
                    app.apply(false)
                }""".trimIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AptPluginSmokeTest.groovy

    class AptPluginSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'net.ltgt.apt': TestedVersions.apt,
                'net.ltgt.apt-eclipse': TestedVersions.apt,
                'net.ltgt.apt-idea': TestedVersions.apt,
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 967 bytes
    - Viewed (0)
Back to top