Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for wholesale (0.18 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/CompilationCache.kt

            stage1 = CachedScript.CompilationStage(Settings, ScriptPlugin, "stage1", Descriptions.script, file),
            stage2 = CachedScript.CompilationStage(Settings, ScriptPlugin, "stage2", Descriptions.script, file, hasBuildscriptBlock && hasBody)
        )
    
    
    fun cachedBuildFile(file: File, hasBody: Boolean = false) =
        CachedScript.WholeFile(
            stage1 = CachedScript.CompilationStage(Project, TopLevel, "stage1", Descriptions.buildFile, file),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. hack/verify-gofmt.sh

    kube::golang::setup_env
    
    find_files() {
      find . -not \( \
          \( \
            -wholename './.git' \
            -o -wholename './_output' \
            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename '*/testdata/*' \
            -o -wholename '*/bindata.go' \
          \) -prune \
        \) -name '*.go'
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. hack/verify-readonly-packages.sh

    readonly branch=${1:-${KUBE_VERIFY_GIT_BRANCH:-master}}
    
    find_files() {
      find . -not \( \
          \( \
            -wholename './_output' \
            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename './staging/src/k8s.io/client-go/pkg/*' \
          \) -prune \
        \) -name '.readonly'
    }
    
    conflicts=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. hack/verify-netparse-cve.sh

    cd "${KUBE_ROOT}"
    
    rc=0
    
    find_files() {
      find . -not \( \
          \( \
            -wholename './.git' \
            -o -wholename './_output' \
            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
          \) -prune \
        \) -name '*.go'
    }
    
    # find files using net.ParseIP()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

        }
    
    
    private
    data class MultiProjectCachedScripts(
        val settingsFile: CachedScript.WholeFile,
        val rootBuildFile: CachedScript.WholeFile,
        val leftBuildFile: CachedScript.WholeFile,
        val rightBuildFile: CachedScript.WholeFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/ClassLoadingCache.kt

            cachedScripts.forEach { assertClassLoads(it, 0) }
    
        private
        fun assertClassLoads(cachedScript: CachedScript, count: Int) =
            when (cachedScript) {
                is CachedScript.WholeFile -> cachedScript.stages.forEach { assertClassLoads(it, count) }
                is CachedScript.CompilationStage -> assertClassLoads(cachedScript, count)
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/KotlinDslCacheFixtures.kt

    
    internal
    interface KotlinDslCacheFixture {
        fun misses(vararg cachedScripts: CachedScript)
        fun hits(vararg cachedScripts: CachedScript)
    }
    
    
    sealed class CachedScript {
    
        class WholeFile(
            val stage1: CompilationStage,
            val stage2: CompilationStage
        ) : CachedScript() {
    
            val stages = listOf(stage1, stage2)
        }
    
        class CompilationStage(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top