Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,200 for nestLev (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/NestedBeanGroovyInterOpIntegrationTest.groovy

            """
            pluginDir.file("src/main/groovy/SomeTask.groovy") << """
                import ${DefaultTask.name}
                import ${TaskAction.name}
                import ${Nested.name}
    
                public abstract class SomeTask extends DefaultTask {
                    @Nested
                    abstract Params getParams()
    
                    @TaskAction
                    void run() {
                        System.out.println("flag = " + params.flag.get())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/sampleJavaProject/kotlin/build.gradle.kts

    tasks.register<Zip>("packageClasses") {
        archiveAppendix = "classes"
        destinationDirectory = archivesDirPath
    
        from(tasks.compileJava)
    }
    // end::link-task-properties[]
    
    // tag::nested-specs[]
    tasks.register<Copy>("nestedSpecs") {
        into(layout.buildDirectory.dir("explodedWar"))
        exclude("**/*staging*")
        from("src/dist") {
            include("**/*.html", "**/*.png", "**/*.jpg")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 892 bytes
    - Viewed (0)
Back to top