Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for removed (0.21 sec)

  1. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesJsonFileManagerTest.groovy

                            "changes": ["Method has been removed"],
                            "acceptation": "use ObjectFactory instead"
                        },
                        {
                            "type": "org.gradle.api.plugins.quality.CodeNarc",
                            "member": "Method org.gradle.api.plugins.quality.CodeNarc.getInstantiator()",
                            "changes": ["Method has been removed"],
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Aug 17 08:32:56 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                task.setDestinationDir(generatedJavadocDirectory.get().getAsFile());
    
                if (BuildEnvironment.INSTANCE.getJavaVersion().isJava11Compatible()) {
                    // TODO html4 output was removed in Java 13, see https://bugs.openjdk.org/browse/JDK-8215578
                    options.addBooleanOption("html4", true);
                    options.addBooleanOption("-no-module-directories", true);
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Oct 16 13:03:20 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                    "$thing ${describe(thing, desc)}: Is not annotated with @since 2.0."
                )
    
            fun removed(thing: String, desc: String): Pair<String, List<String>> =
                "$thing ${describe(thing, desc)}: Is not binary compatible." to listOf("$thing has been removed")
    
            private
            fun describe(thing: String, desc: String) =
                if (thing == "Field") desc else "com.example.$desc"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

            get() = "TEAMCITY_PARALLEL_TESTS_ENABLED" in System.getenv()
        val isCodeQl: Boolean by lazy {
            // This logic is kept here instead of `codeql-analysis.init.gradle` because that file will hopefully be removed in the future.
            // Removing that file is waiting on the GitHub team fixing an issue in Autobuilder logic.
            CODEQL_ENVIRONMENT_VARIABLES.any { it in System.getenv() }
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 22:52:01 GMT 2024
    - 5.7K bytes
    - Viewed (2)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft);
            }
    
            // Find accessors that were removed but shouldn't be
            Map<AccessorKey, ReplacedAccessor> removedAccessors = new HashMap<>(oldAccessorsOfUpgradedProperties);
            removedAccessors.entrySet().removeIf(e -> {
                if (!seenUpgradedAccessorsChanges.contains(e.getKey())) {
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesTest.groovy

                            "changes": ["Interface has been removed"],
                            "acceptation": "@Incubating interface has been removed"
                        },
                        {
                            "type": "other.Type",
                            "member": "Method other.Type.someMethod",
                            "changes": ["Method has been removed"],
                            "acceptation": "I really want to do this"
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt

            }
        }
    
        @Test
        fun `existing public members made internal appear as removed`() {
    
            checkNotBinaryCompatibleKotlin(
                v1 = publicSource,
                v2 = internalSource
            ).apply {
                assertHasErrors(
                    *reportedMembers.map {
                        removed(it.first, it.second)
                    }.toTypedArray()
                )
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jul 11 06:57:51 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/common/extensions.kt

        params {
            param("env.BOT_TEAMCITY_GITHUB_TOKEN", "%github.bot-teamcity.token%")
            param("env.GRADLE_CACHE_REMOTE_SERVER", "%gradle.cache.remote.server%")
    
            param("env.JAVA_HOME", javaHome(buildJvm, os, arch))
            param("env.GRADLE_OPTS", "-Xmx1536m")
            param("env.ANDROID_HOME", os.androidHome)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                                    "binaryCompatibility": "ACCESSORS_REMOVED",
                                    "descriptor": "()Ljava/lang/String;",
                                    "name": "getSourceCompatibility"
                                }, {
                                    "binaryCompatibility": "ACCESSORS_REMOVED",
                                    "descriptor": "(Ljava/lang/String;)V",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/KotlinModifiersBreakingChangeRule.groovy

            }
    
            return null
        }
    
        private static String modifierChangeDetail(String modifier, boolean added) {
            return "$modifier modifier was ${added ? "added" : "removed"}"
        }
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 2.4K bytes
    - Viewed (0)
Back to top