Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,188 for T_nested (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginTreeTest.kt

            val flatPlugin = PluginTree.PluginSpec("flat-plugin", "FlatPlugin")
            val nestedPluginA = PluginTree.PluginSpec("nested.plugin-a", "NestedPluginA")
            val nestedPluginB = PluginTree.PluginSpec("nested.other.plugin-b", "NestedPluginB")
            val nestedPluginC = PluginTree.PluginSpec("nested.other.plugin-c", "NestedPluginC")
            assertThat(
                PluginTree.of(
                    listOf(
                        flatPlugin,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            includedBuildSrc.editableBuilds.empty
    
            def nested = model.editableBuilds[3]
            nested.buildIdentifier.rootDir == file("child/nested")
            nested.includedBuilds.empty
            nested.editableBuilds.empty
            included.includedBuilds[0].is(nested)
    
            def nestedBuildSrc = model.editableBuilds[4]
            nestedBuildSrc.buildIdentifier.rootDir == file("child/nested/buildSrc")
            nestedBuildSrc.includedBuilds.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/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)
  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. 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)
  9. 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)
  10. tests/preload_test.go

    	}
    
    	var find1 Value
    	err := DB.Joins("Nested").Joins("Nested.Join").Preload("Nested.Preloads").First(&find1, value1.ID).Error
    	if err != nil {
    		t.Errorf("failed to find value, got err: %v", err)
    	}
    	AssertEqual(t, find1, value1)
    
    	var find2 Value
    	// Joins will automatically add Nested queries.
    	err = DB.Joins("Nested.Join").Preload("Nested.Preloads").First(&find2, value2.ID).Error
    	if err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top