Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,166 for Managed (0.11 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. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

            buildFile << '''
                @Managed
                interface SomeThings {
                    Thing getThingA()
                    Thing getThingB()
                }
    
                @Managed
                interface Thing {
                    String getName()
                    void setName(String name)
                    Address getAddress()
                }
    
                @Managed
                interface Address {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/UnmanagedCollectionPropertyIntegrationTest.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 UnmanagedCollectionPropertyIntegrationTest extends AbstractIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/gateway_test.go

    apiVersion: v1
    kind: Service
    metadata:
      name: managed-owner-istio
    spec:
      ports:
      - appProtocol: http
        name: default
        port: 80
      selector:
        gateway.networking.k8s.io/gateway-name: managed-owner
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: managed-owner-istio
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: managed-owner
      replicas: 1
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top