Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Towers (1.21 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_20)) {
                // Kotlin 1.8.20 that is a dependency of kotlin-dsl plugin 4.0.2 doesn't work
                // with Java20+ without setting jvmTarget that is lower than JvmTarget.JVM_20
                buildScript.appendText(
                    """
                        tasks.named<JavaCompile>("compileJava") {
                            options.release = 8
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. LICENSE

          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

         * <p>
         * It is not safe to call {@link #close()} multiple times.
         * The instances of the class may not be unique for different owners being added.
         * <p>
         * Contexts must be closed in the order they are obtained.
         * This context must be closed by the same thread that obtained it.
         */
        public interface ScopeContext extends AutoCloseable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. .github/CODEOWNERS

    ##
    ## CODEOWNERS style rules:
    ## 1. Prefer team ownership over individual user ownership.
    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def projectModels = projectScopedModels.groupBy { it.buildTreePath }
            def projectModelsShortNames = remapValues(projectModels) { it.shortModelName }
    
            // Do not extract left side into a variable to get power assert insights
            assert remapValues(projectModelsShortNames) { it.size() } == expectedProjectModelsCounts
    
            for (def modelExpectation in modelExpectations) {
                def buildTreePath = modelExpectation.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

         * Also known as "extends-bound" or "upper bound".
         * e.g. `<? extends T>`
         */
        COVARIANT,
    
        /**
         * Represent a contravariant type argument.
         * Also known as "super-bound" or "lower bound".
         * e.g. `<? super T>`
         */
        CONTRAVARIANT
    }
    
    
    data class ApiFunctionParameter internal constructor(
        internal val index: Int,
        internal val isVarargs: Boolean,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top