Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for readOnlyString (0.15 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedImplStructStrategyTest.groovy

            schema instanceof CompositeSchema
            schema instanceof StructSchema
            schema.propertyNames == ['readOnlyString', 'strings'] as SortedSet
            schema.properties*.name == ['readOnlyString', 'strings']
            schema.getProperty('readOnlyString').type == ModelType.of(String)
            schema.getProperty('readOnlyString').schema == store.getSchema(ModelType.of(String))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/UnmanagedImplStructStrategyTest.groovy

            !(schema instanceof CompositeSchema)
            schema instanceof StructSchema
            !schema.annotated
            schema.propertyNames == ['readOnlyString', 'strings'] as SortedSet
            schema.properties*.name == ['readOnlyString', 'strings']
            schema.getProperty('readOnlyString').schema == store.getSchema(ModelType.of(String))
            schema.getProperty('strings').schema == store.getSchema(ModelTypes.list(ModelType.of(String)))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/RuleSourceSchemaExtractionStrategyTest.groovy

            !(schema instanceof CompositeSchema)
            schema instanceof StructSchema
            schema.propertyNames == ['readOnlyString', 'strings'] as SortedSet
            schema.properties*.name == ['readOnlyString', 'strings']
            schema.getProperty('readOnlyString').schema == store.getSchema(ModelType.of(String))
            schema.getProperty('strings').schema == store.getSchema(ModelTypes.list(ModelType.of(String)))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top