Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for putUserData (0.2 sec)

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

            context.putUserData(CURRENT_ACCESSORS_OF_UPGRADED_PROPERTIES, diff(
                mapCurrentAccessorsOfUpgradedProperties(currentUpgradedProperties),
                mapCurrentAccessorsOfUpgradedProperties(baselineUpgradedProperties)
            ));
            context.putUserData(OLD_ACCESSORS_OF_UPGRADED_PROPERTIES, diff(
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/AbstractContextAwareRuleSpecification.groovy

            String getClassName() { return null }
    
            Map<String, ?> getUserData() { return userData }
    
            Object getUserData(String key) {
                return userData[key]
            }
    
            void putUserData(String key, Object value) {
                userData[key] = value
            }
        }
    
        ClassPool instanceScopedPool = new ClassPool()
    
        JApiClass apiClass = Stub(JApiClass)
    
        def setup() {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 2K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

                    ]
                }
    
                @Override
                <T> T getUserData(String key) {
                    getUserData()[key]
                }
    
                @Override
                <T> void putUserData(String key, T value) {
                    getUserData().put(key, value)
                }
            }
            rule
        }
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 01 20:12:19 GMT 2023
    - 16K bytes
    - Viewed (0)
Back to top