Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for replacingPutWithProvider (0.32 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                    doLast {
                        verify.prop.put('key', 'newValue')
                        verify.expected = ['key': 'newValue']
                    }
                }
    
                task replacingPutWithProvider {
                    doLast {
                        verify.prop.put('key', provider { 'newValue' })
                        verify.expected = ['key': 'newValue']
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top