Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for containers (0.48 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    dependencies {
        baseline("gradle:gradle:${compatibilityBaselineVersion}@zip")
    
        // This transform takes the Gradle zip distribution,
        // and unzips the Gradle jar files that it contains in a directory
        registerTransform(ExplodeZipAndFindJars) {
            from.attribute(ARTIFACT_TYPE, 'zip')
            to.attribute(ARTIFACT_TYPE, 'gradle-libs-dir')
        }
        registerTransform(FindGradleClasspath) {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 11 12:20:44 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            configuration.groups
                .filter { group ->
                    performanceTestTypes.any { type ->
                        group.performanceTestTypes[type]?.contains(performanceTestSpec.os) == true
                    }
                }
                .map { PerformanceScenario(Scenario.fromTestId(configuration.testId), it.testProject) }
        }
    }
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

                        @file:Incubating
                        package com.example
    
                        import org.gradle.api.Incubating
    
                        ${annotatedKotlinMembers.lineSequence().filter { !it.contains("Incubating") }.joinToString("\n")}
    
                        /** @since 2.0 */
                        const val cathedral = "cathedral"
                        """
                    )
                }
            ) {
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jul 11 06:57:51 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

     * The corresponding extension function gets automatically de-incubated during source generation.
     * But the same applies to the implicit file class, and it has to be de-incubated when any
     * extension function it contains is de-incubated.
     */
    private
    fun isIncubatingFileClass(targetType: ApiType, extensions: List<KotlinExtensionFunction>): Boolean {
        return targetType.isIncubating || extensions.all { it.isIncubating }
    }
    
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  5. LICENSE

          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  6. .cm/plugins/filters/byCodeowner/ignore/index.js

            }
    
            const parent = this._t(
                slices.join(SLASH) + SLASH,
                cache,
                checkUnignored,
                slices
            )
    
            // If the path contains a parent directory, check the parent first
            return cache[path] = parent.ignored
                // > It is not possible to re-include a file if a parent directory of
                // >   that file is excluded.
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top