Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 373 for T_nested (0.13 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

            OutputDirectories | '@OutputDirectories'                                       | Map            | "new HashMap<String, File>()"
            Nested            | '@Nested'                                                  | List           | "new ArrayList()"
        }
    
        def "detects optional primitive type #primitiveType"() {
            javaTaskSource << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

            builder.create(target).generate()
    
            then:
            assertOutputFile("""$COMMON_START
     */
    
    // Call method
    things.element1.thing(12, things.nested.element2)
    
    // Set property
    prop = things.nested.element2
    
    other = extendsFrom(things.nested.element2.outputDir)
    """)
        }
    
        def "can add further configuration"() {
            given:
            builder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

            result.testClass('org.gradle.StaticInnerTest').assertTestCount(1, 0, 0)
                .assertTestPassed('outside')
            result.testClass('org.gradle.StaticInnerTest$Nested').assertTestCount(1, 0, 0)
                .assertTestPassed('inside')
            result.testClass('org.gradle.StaticInnerTest$Nested$Nested2').assertTestCount(1, 0, 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    ### `createdBy` value
    
    This value must contain an object with the following values:
    
    - `gradle`: optional. Describes the Gradle instance that produced the contents of the module. 
    
    ### `gradle` value
    
    This value, nested in `createdBy`, must contain an object with the following values:
    
    - `version`: The version of Gradle. A string
    - `buildId`: optional. The buildId for the Gradle instance. A string
    
    ### `variants` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    // Call method
    things["element1"].thing(12, things.nested["element2"])
    
    // Set property
    prop = things.nested["element2"]
    
    other = extendsFrom(things.nested["element2"].outputDir)
    """)
        }
    
        def "can add further configuration"() {
            given:
            builder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	cust := SchemaDeclType(ts, true).MaybeAssignTypeName("CustomObject")
    	typeMap := apiservercel.FieldTypeMap("CustomObject", cust)
    	nested, _ := cust.FindField("nested")
    	metadata, _ := cust.FindField("metadata")
    	expectedObjTypeMap := map[string]*apiservercel.DeclType{
    		"CustomObject":          cust,
    		"CustomObject.nested":   nested.Type,
    		"CustomObject.metadata": metadata.Type,
    	}
    	objTypeMap := map[string]*apiservercel.DeclType{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

        }
    
        def "can fetch buildscript classpath for sub-project script of nested project outside nested project root"() {
    
            when:
            // This use-case was never supported and continues not to be supported
            assertCanFetchClassPathForSubProjectScriptOfNestedProjectOutsideProjectRoot("nested-project")
    
            then:
            thrown(AssertionError)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                    @Input
                    Property<URL> getNested()
                }
    
                abstract class TaskWithInput extends DefaultTask {
    
                    private final NestedBean nested = project.objects.newInstance(NestedBean.class)
    
                    @Input
                    URL getDirect() { null }
    
                    @Input
                    Provider<URL> getProviderInput() { propertyInput }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                        - key: nested2
                        value:
                          listMatch:
                            oneOf:
                              stringMatch:
                                exact: nested
                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.claims
                        - key: nested1
                        - key: nested2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this problem, change the type of the key to `Enum`, `Integer`, or `String`.
    
    [[unsupported_nested_type]]
    == Unsupported nested type
    
    This error indicates that an unsupported type is annotated as nested.
    Nested types are expected to either declare some annotated properties (which themselves are checked for annotations) or some conditional behaviour where capturing the type itself as input is important.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top