Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for upgrades (0.22 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility.rules;
    
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.BinaryCompatibility;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.ReplacedAccessor;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.AccessorKey;
    import me.champeau.gradle.japicmp.report.PostProcessViolationsRule;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRuleSetup.java

     */
    
    package gradlebuild.binarycompatibility.rules;
    
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperties;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.ReplacedAccessor;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.AccessorKey;
    import me.champeau.gradle.japicmp.report.SetupRule;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. cluster/gce/upgrade.sh

      echo "!!! EXPERIMENTAL !!!"
      echo "!!! This upgrade script is not meant to be run in production !!!"
      echo ""
      echo "${0} [-M | -N | -P] [-o] (-l | <version number or publication>)"
      echo "  Upgrades master and nodes by default"
      echo "  -M:  Upgrade master only"
      echo "  -N:  Upgrade nodes only"
      echo "  -P:  Node upgrade prerequisites only (create a new instance template)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

        /**
         * Automatically accept changes that are valid property upgrades of a getter or setter.
         *
         * Here we automatically accept the following cases:
         * - A setter `setX` of an upgraded property is removed
         * - A boolean `isX` of an upgraded property is removed
         * - A new getter `getX` is added, where the old getter is a boolean getter `isX` of an upgraded property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    2. We will use `bytecode upgrades` when we talk about Property or API upgrades.
    3. We will use `bytecode interception` when we talk about both bytecode instrumentation or bytecode upgrades.
    4. We will use `transformation` when we talk about applying some interception to to jars or classes or classpath.
    
    It is possible that in the code we use all these terms interchangeably, but we will try to be consistent in this document.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-declarations/src/main/java/org/gradle/internal/instrumentation/property/upgrades/PropertyUpgradeInstrumentationRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.property.upgrades;
    
    import org.gradle.internal.instrumentation.api.annotations.VisitForInstrumentation;
    
    /**
     * Add classes to visit to this registry to enable property upgrade instrumentation.
     *
     * Classes that should be visited should be added to the @VisitForInstrumentation annotation, e.g.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

    import me.champeau.gradle.japicmp.report.Violation
    import org.gradle.api.Incubating
    
    import javax.inject.Inject
    
    import static gradlebuild.binarycompatibility.upgrades.UpgradedProperties.SEEN_OLD_ACCESSORS_OF_UPGRADED_PROPERTIES
    import static gradlebuild.binarycompatibility.upgrades.UpgradedProperty.AccessorKey
    
    @CompileStatic
    abstract class AbstractGradleViolationRule extends AbstractContextAwareViolationRule {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/distributions-core/build.gradle.kts

            because("We need a KotlinScriptBasePluginsApplicator service implementation to use Kotlin DSL scripts.")
        }
        pluginsRuntimeOnly(project(":instrumentation-declarations")) {
            because("Property upgrades for core plugins reference types on plugin classpath and that is why interceptors need to be loaded from plugins' classpath.")
        }
        pluginsRuntimeOnly(project(":unit-test-fixtures")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/BytecodeInterceptorType.java

            FilterableBytecodeInterceptorFactory.InstrumentationInterceptorFactory.class
        ),
    
        /**
         * An interceptor that is applied to the bytecode only for upgrades.
         */
        BYTECODE_UPGRADE(
            FilterableBytecodeInterceptor.BytecodeUpgradeInterceptor.class,
            FilterableBytecodeInterceptorFactory.BytecodeUpgradeInterceptorFactory.class
        );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains declarations for instrumentation of plugins. Adds interceptors, bytecode upgrades etc."
    
    dependencies {
        // All dependencies should be compileOnly, since this project is added also to worker classpath, so we don't pollute it.
        // If we need some dependency also at runtime we need to build a separate classpath and add it to :launcher project or :distributions-core project directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top