Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,188 for T_nested (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            '''
    
            expect:
            succeeds 'assertActionExecutionOrder'
        }
    
        def "can execute #description during task creation action execution"() {
            createDirs("nested")
            settingsFile << "include 'nested'"
            buildFile << """
                tasks.create("foo") {
                    ${code}
                }
            """
    
            expect:
            succeeds "foo"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ManagedFilePropertyJavaInterOpIntegrationTest.groovy

                import ${DefaultTask.name};
                import ${TaskAction.name};
                import ${Nested.name};
                import ${Files.name};
                import ${IOException.name};
    
                public abstract class ProducerTask extends DefaultTask {
                    @Nested
                    public abstract Params getParams();
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                                valueMatchers:
                                - stringMatch:
                                    exact: nested
                                - stringMatch:
                                    prefix: nested-prefix-
                                - stringMatch:
                                    suffix: -suffix-nested
                                - stringMatch:
                                    safeRegex:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         */
        IncludedBuildState addIncludedBuild(BuildDefinition buildDefinition);
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformFilteringIntegrationTest.groovy

        }
    
        def 'can use nested class as test pattern'() {
            given:
            file('src/test/java/EnclosingClass.java') << '''
                import org.junit.jupiter.api.Test;
                import org.junit.jupiter.api.Nested;
                import static org.junit.jupiter.api.Assertions.assertEquals;
    
                class EnclosingClass {
                    @Nested
                    class NestedClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.platform;
    
    import org.gradle.api.Describable;
    import org.gradle.api.tasks.Nested;
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.platform.base.Platform;
    
    /**
     * A target platform for building native binaries. Each target platform is given a name, and may optionally be given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                    import org.gradle.api.DefaultTask
                    import org.gradle.api.tasks.Nested
                    import org.gradle.api.tasks.OutputFile
                    import org.gradle.api.tasks.TaskAction
                    import java.io.File
    
                    open class TaskWithNestedAction : DefaultTask() {
                        @get: Nested
                        lateinit var action: ${actionType}
    
                        @get: OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Current:  `{"thing":null}`,
    			Modified: `{"nested":{"value":5},"thing":null}`,
    
    			ExpectedTwoWay:         `{"nested":{"value":5}}`,
    			ExpectedTwoWayResult:   `{"nested":{"value":5},"thing":null}`,
    			ExpectedThreeWay:       `{"nested":{"value":5}}`,
    			ExpectedThreeWayResult: `{"nested":{"value":5},"thing":null}`,
    		},
    		"nested null values in original are preserved": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  10. 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)
Back to top