Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Towers (0.4 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

        }
    
        def "suggests model paths with Levenshtein distance lower than 4"() {
            when:
            availablePaths = ["task.afoobar", "tasks.boofar", "tasks.foobar", "tasks.f", "fooba"]
    
            then:
            suggestionsFor("tasks.fooba") == ["tasks.foobar", "task.afoobar", "tasks.boofar"]
        }
    
        def "suggests model paths with Levenshtein distance lower than half it's length for strings shorter than 6 characters"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

         */
        protected
        fun setupPluginRequirements() {
            projectDir.resolve("version.txt").writeText("9999999.0") // All released versions should be lower than this
            projectDir.resolve("released-versions.json").writeText(
                """
                    {
                      "latestReleaseSnapshot": {
                        "version": "7.6-20220831090819+0000",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            when:
            buildFile << CLASSES
            buildFile << '''
                model {
                    props {
                        theBigDecimal = "${new BigDecimal('123.4').power(10)}"
                        theBigInteger = "${(Long.MAX_VALUE as BigInteger) * 10}"
                        bool1 = "${1 > 2}"
                        bool2 = "${2 > 1}"
                        theBoolean = "${3 > 2}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            // Exercise setters
            bean.url = 'lower-case'
            bean.URL = 'upper-case'
            bean.cCompiler = 'lower-case first char'
            bean.CCompiler = 'upper-case first char'
            bean.cppCompiler = 'cppCompiler'
            bean.CPPCompiler = 'CPPCompiler'
            bean.a = 'some a'
            bean.b = 'some b'
    
            then:
            // Exercise getters
            bean.url == 'lower-case' && bean.getUrl() == bean.url
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedDeprecation.java

         */
        String withUpgradeGuideSection() default "";
    
        /**
         * Corresponds to .withDslReference() in the DeprecationLogger
         *
         * WithDslReference has lower priority than withUpgradeGuideSection
         */
        boolean withDslReference() default false;
    
        enum RemovedIn {
            GRADLE9,
            UNSPECIFIED
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseInsensitiveVfsRelativePathTest.groovy

            compareCharsIgnoringCase(char2, char1) == 0
    
            where:
            left     | right
            '\u1e9e' | 'ß'
            '\u03a3' | '\u03c2'
            '\u03a3' | '\u03c3'
        }
    
        def "can compare lower and upper case correctly (#left - #right = #result)"() {
            def char1 = left as char
            def char2 = right as char
            def caseInsensitiveResult = left.toUpperCase() == right.toUpperCase() ? 0 : result
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Model.java

         * <p>
         * If the value is the empty string, the exact name of the annotated method will be used.
         * <p>
         * The value must:
         * <ul>
         * <li>Start with a lower case letter</li>
         * <li>Contain only ASCII letters, numbers and the '_' character</li>
         * </ul>
         * <p>
         * This restriction also applies when the name is being derived from the method name.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top