Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,831 for managed (0.24 sec)

  1. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationComponent.groovy

    package sample.documentation
    
    import org.gradle.model.Managed
    import org.gradle.platform.base.GeneralComponentSpec
    
    // tag::component-declaration[]
    @Managed
    interface DocumentationComponent extends GeneralComponentSpec {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationBinary.groovy

    package sample.documentation
    
    import org.gradle.model.Managed
    import org.gradle.platform.base.BinarySpec
    
    // tag::binary-declaration[]
    @Managed
    interface DocumentationBinary extends BinarySpec {
        File getOutputDir()
        void setOutputDir(File outputDir)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 288 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

            }
    
            @Override
            public Isolatable<?> managedImmutableValue(Managed managed) {
                return new IsolatedImmutableManagedValue(managed, managedFactoryRegistry);
            }
    
            @Override
            public Isolatable<?> managedValue(Managed value, Isolatable<?> state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeWithUnmanagedPropertiesIntegrationTest.groovy

            then:
            succeeds "echo"
    
            and:
            output.contains('value: foo')
        }
    
        def "unmanaged property of managed type can be targeted by rules"() {
            when:
            buildScript '''
                @Managed
                interface Platform {
                    @Unmanaged
                    OperatingSystem getOperatingSystem()
                    void setOperatingSystem(OperatingSystem os)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    )
    
    // ExtractInto extracts the applied configuration state from object for fieldManager
    // into applyConfiguration. If no managed fields are found for the given fieldManager,
    // no error is returned, but applyConfiguration is left unpopulated. It is possible
    // that no managed fields were found for the fieldManager because other field managers
    // have taken ownership of all the fields previously owned by the fieldManager. It is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/SetModelProjectionTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.projection
    import org.gradle.model.Managed
    
    class SetModelProjectionTest extends AbstractCollectionModelProjectionTest<String, Set<String>> {
    
        @Managed
        static interface Internal {
            Set<String> getItems()
        }
    
        @Override
        Class<?> holderType() {
            Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/UnmanagedCollectionPropertyIntegrationTest.groovy

            class Widget {
                String name
            }
    
            @Managed
            interface Container {
                @Unmanaged
                List<Widget> getWidgets()
                void setWidgets(List<Widget> l)
    
                @Unmanaged
                Set<Widget> getItems()
                void setItems(Set<Widget> s)
    
                @Unmanaged
                List getRawWidgets()
                void setRawWidgets(List l)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/TextSourceSet.groovy

    package sample.documentation
    
    import org.gradle.language.base.LanguageSourceSet
    import org.gradle.model.Managed
    
    // tag::text-lang-declaration[]
    @Managed
    interface TextSourceSet extends LanguageSourceSet {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 239 bytes
    - Viewed (0)
  9. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/AttributeContainerCodecs.kt

    import org.gradle.internal.serialize.graph.readCollection
    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.serialize.graph.writeCollection
    import org.gradle.internal.state.Managed
    import org.gradle.internal.state.ManagedFactoryRegistry
    
    
    class AttributeContainerCodec(
        private val attributesFactory: ImmutableAttributesFactory,
        private val managedFactories: ManagedFactoryRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeImplementationClassCachingSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.model.managed
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class ManagedTypeImplementationClassCachingSpec extends AbstractIntegrationSpec {
    
        def "managed type implementation class is generated once for each type and reused"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top