Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for T_nested (0.14 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            expect:
            rootsOf(from([
                "/tulry/nested-cli/nested-cli-nested/buildSrc",
                "/tulry/nested-cli/buildSrc/buildSrc",
                "/tulry/nested/buildSrc"
            ].collect({ new File(it) }))) == [
                "/tulry/nested-cli/nested-cli-nested/buildSrc",
                "/tulry/nested-cli/buildSrc/buildSrc",
                "/tulry/nested/buildSrc"
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            child2.identityPath == Path.path(":child1:child2")
    
            nestedRootProject.toString() == "project ':nested'"
            nestedRootProject.displayName == "project ':nested'"
            nestedRootProject.path == ":"
            nestedRootProject.buildTreePath == ":nested"
            nestedRootProject.identityPath == Path.path(":nested")
    
            nestedChild1.toString() == "project ':nested:child1'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                }
            }
        }
    
        @TargetGradleVersion(">=8.8")
        def "reports display names of nested test classes"() {
            file("src/test/java/org/example/TestingAStackDemo.java") << """package org.example;
    
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.util.EmptyStackException;
    import java.util.Stack;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    @Internal
                    Property<String> getUnused()
                }
    
                abstract class SomeTask extends DefaultTask {
                    @Nested
                    abstract Bean getBean()
    
                    @Nested
                    abstract Bean getUnusedBean()
    
                    @Internal
                    abstract Property<String> getValue()
    
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. tests/joins_test.go

    	users := []User{
    		{
    			Name: "nested-joins-1",
    			Manager: &User{
    				Name: "nested-joins-manager-1",
    				Company: Company{
    					Name: "nested-joins-manager-company-1",
    				},
    				NamedPet: &Pet{
    					Name: "nested-joins-manager-namepet-1",
    					Toy: Toy{
    						Name: "nested-joins-manager-namepet-toy-1",
    					},
    				},
    			},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "top-level property has convention, nested is set" | setId("convention")                | setFooBar("baz")      | """id = convention\nbar = baz"""
            "nested property has convention and is set"        | setFooBar("convention")            | setFooBar("baz")      | """id = <no id>\nbar = baz"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

        expectedWithoutNull:
          nonNilKey1: foo
          nonNilKey2: bar
      - description: nested map
        originalObj:
          mapKey:
            nilKey: null
            nonNilKey: foo
        expectedWithNull:
          mapKey:
            nilKey: null
        expectedWithoutNull:
          mapKey:
            nonNilKey: foo
      - description: nested map that all subkeys are nil
        originalObj:
          mapKey:
            nilKey1: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                import org.gradle.api.tasks.Nested;
    
                import javax.inject.Inject;
    
                @Restricted
                public abstract class AnotherSoftwareTypeExtension {
                    @Inject
                    public AnotherSoftwareTypeExtension() { }
    
                    @Restricted
                    public abstract Property<String> getFoo();
    
                    @Nested
                    public abstract Bar getBar();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            ]
            def addProjectListeners = { String source ->
                """
                project.afterEvaluate {
                    println "project.afterEvaluate(Closure) from $source"
                    project.afterEvaluate {
                        println "nested project.afterEvaluate(Closure) from $source"
                        project.afterEvaluate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

                    "java",
                    "groovy",
                    "kotlin"
                ),
                ImmutableSet.of(
                    // Used by a nested bean with action in a task, example:
                    // `NestedInputIntegrationTest.implementation of nested closure in decorated bean is tracked`
                    ConfigureUtil.WrappedConfigureAction.class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top