Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 459 for T_nested (0.11 sec)

  1. 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)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

        }
    
        def "can define task with abstract read-only @Nested property"() {
            given:
            buildFile << """
                interface Params {
                    @Input
                    Property<Integer> getCount()
                }
                abstract class MyTask extends DefaultTask {
                    @Nested
                    abstract Params getParams()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                'nested.outputDirectory': annotationInvalidInContext { annotation('OutputDirectory').includeLink() },
                'nested.inputFile': missingNormalizationStrategy { annotatedWith('InputFile').includeLink().noIntro() },
                'nested.stringProperty': missingAnnotationMessage { property('nested.stringProperty').missingInput().includeLink().noIntro() },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K 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. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

        ExtractSubgraphToFunc(old_subgraph, builder, module, ops_added);
        AddAttrs(ops_added, builder, func_count);
        // Ops in "CPU" subgraphs may nested regions with other device subgraphs.
        // We recur into these nested blocks to raise those as well. We don't raise
        // "CPU" ops who are themselves nested within a "CPU" op, so set
        // `skip_cpu` to true.
        if (device_is(device, kCpuDeviceName)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top