Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 459 for T_nested (0.14 sec)

  1. 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)
  2. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            !type.wildcard
    
            type.toString() == String.name
            type.displayName == String.simpleName
    
            def nested = ModelType.of(Nested)
            nested.toString() == org.gradle.model.ModelTypeTesting.fullyQualifiedNameOf(Nested)
            nested.displayName == "ModelTypeTest.Nested"
        }
    
        def "class is equal to itself"() {
            expect:
            def type = ModelType.of(String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            when:
            container.configure {
                element {
                    nested
                }
            }
    
            then:
            missingProp = thrown()
            missingProp.property == 'nested'
    
            when:
            container.configure {
                element {
                    prop = nested
                }
            }
    
            then:
            missingProp = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K 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. staging/src/k8s.io/apiserver/pkg/cel/openapi/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: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top