Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 459 for T_nested (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                    }
            """
            file("included/settings.gradle") << """
                rootProject.name = 'included'
                includeBuild '../nested'
            """
    
            file("nested/build.gradle") << """
                group = 'com.acme'
                version = '0.x'
    
                configurations {
                        create 'default'
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/net/error_test.go

    		context.DeadlineExceeded, context.Canceled:
    		return nil
    	}
    	return fmt.Errorf("unexpected type on 2nd nested level: %T", nestedErr)
    
    third:
    	if isPlatformError(nestedErr) {
    		return nil
    	}
    	return fmt.Errorf("unexpected type on 3rd nested level: %T", nestedErr)
    }
    
    var dialErrorTests = []struct {
    	network, address string
    }{
    	{"foo", ""},
    	{"bar", "baz"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. tests/common/jwt/jwt_token.go

    	// Payload {
    	//  "exp": 4757607896,
    	//  "iat": 1604007896,
    	//  "iss": "******@****.***",
    	//  "nested": {
    	//    "key1": [
    	//      "valueA",
    	//      "valueB"
    	//    ],
    	//    "nested-2": {
    	//      "key1": [
    	//        "valueA",
    	//        "valueB"
    	//      ]
    	//    }
    	//  },
    	//  "sub": "sub-1"
    	// }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
        }
    
        def "implementation of nested property in Groovy build script is tracked"() {
            setupTaskClassWithActionProperty()
            buildFile << """
                task myTask(type: TaskWithActionProperty) {
                    action = ${originalImplementation}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            macros << macro("TEST", '"test1.h"')
            macros << macro("IGNORE", '"broken"')
            macros << macro("NESTED", '"test2.h"')
            macros << macro("NESTED", '"test3.h"')
            macros << macro("TEST", "NESTED")
    
            expect:
            def result = resolve(include('TEST'))
            result.complete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

        }
    
        def "finalized file collection ignores later changes to nested file collections"() {
            buildFile """
                def nested = objects.fileCollection()
                def name = 'a'
                nested.from { name }
    
                def names = ['b', 'c']
                nested.from(names)
    
                def files = objects.fileCollection()
                files.from(nested)
                files.finalizeValue()
                name = 'ignore-me'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top