Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,200 for nestLev (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/mod/example.com_retract_ambiguous_nested_v1.9.0-bad.txt

    -- .mod --
    module example.com/retract/ambiguous/nested
    
    go 1.16
    
    retract v1.9.0-bad // nested modules are bad
    -- .info --
    {"Version":"v1.9.0-bad"}
    -- nested.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 15:31:11 UTC 2020
    - 178 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