Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,655 for TestTd (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/CustomPluginObjectFactoryIntegrationTest.groovy

                apply plugin: CustomPlugin
    
                custom {
                    nested {
                        name = 'foo'
                    }
                }
    
                tasks.register('checkFoo') {
                    def nested = project.extensions.custom.nested
                    doLast {
                        assert nested.name == 'foo'
                        nested.checkRiker {
                            assert name == 'Riker'
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                task myTask(type: MyTask) {
                    inputString = "data"
    
                    nested.inputString = "data"
                    nested.inputFile = file("input-nested.txt")
                    nested.outputFiles = [file("output-nested-1.txt"), file("output-nested-2.txt")]
    
                    inputFile = file("input.txt")
                    inputDirectory = file("inputs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

                this.testId = testId
                this.groups = groups
            }
    
            @Override
            String toString() {
                return "Test($testId)"
            }
    
            @JsonInclude(JsonInclude.Include.NON_NULL)
            @EqualsAndHashCode
            static class GroupsBean {
                /**
                 * testProject : largeJavaMultiProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

     * and then the properties are visited in depth-first order.
     * Nested properties are marked with a nested annotation and are inspected for child properties that can be
     * "leaf" annotated properties, or other nested properties.
     * The {@link TypeMetadataStore} associated with the walker determines which non-nested property annotations are recognized
     * during the walk.
     * Nested {@code Map}s, {@code Iterable}s are resolved as child properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractMutatingDomainObjectContainerInHookIntegrationTest.groovy

        def "can mutate containers inside Project hooks"() {
            createDirs("nested")
            settingsFile << """
                include 'nested'
            """
            buildFile << """
                project(':nested').afterEvaluate {
                    testContainer.create("afterEvaluate")
                }
    
                project(':nested').beforeEvaluate {
                    testContainer.create("beforeEvaluate")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessor.java

        }
    
        @Override
        public void failure(Object testId, TestFailure result) {
            processor.failure(testId, result);
        }
    
        @Override
        public void output(Object testId, TestOutputEvent event) {
            processor.output(testId, event);
        }
    
        @Override
        public void completed(Object testId, TestCompleteEvent event) {
            if (testId.equals(rootId)) {
                rootId = null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. security/tools/jwt/samples/gen-jwt.py

        if args.nestedclaim:
            nested = {}
            for item in args.nestedclaim:
                if (len(item) > 1):
                    k = item[0]
                    v = item[1:]
                    if len(v) == 1:
                        v = v[0]
                    nested[k] = v
            nested["nested-2"] = copy.copy(nested)
            payload[args.nestedkey] = nested
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/volume/util/nested_volumes_test.go

    						{
    							VolumeMounts: []v1.VolumeMount{
    								{MountPath: "/dir", Name: "vol1"},
    								{MountPath: "/dir/nested", Name: "vol2"},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:     "Unsorted Nested Pod",
    			err:      false,
    			expected: sets.New[string]("nested", "nested2", "nested-vol", "nested.vol"),
    			volname:  "vol1",
    			pod: v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: testNamespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLoggingIntegrationTest.groovy

                import org.junit.jupiter.api.Nested;
                import org.junit.jupiter.api.Test;
    
                @DisplayName("Class level display name")
                public class TopLevelClass {
    
                    @Nested
                    @DisplayName("Nested class display name")
                    public class NestedClass {
    
                        @Test
                        @DisplayName("Nested test method display name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPropertiesIntegrationTest.groovy

            outputContains("included build script: included")
            outputContains("nested settings script: nested")
            outputContains("nested build script: nested")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:32 UTC 2020
    - 2K bytes
    - Viewed (0)
Back to top