Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 373 for T_nested (0.29 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == 'Cannot append text as there is no current node.'
        }
    
        interface Thing<T> extends List<Nested>, Map<Nested, ? extends Consumer<? super T>> {
            interface Nested {
                class Inner {}
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. internal/hash/reader_test.go

    				"88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589",
    			},
    		},
    		{
    			desc:       "Nested hash reader NewReader() should merge.",
    			src:        mustReader(t, bytes.NewReader([]byte("abcd")), 4, "", "", 4),
    			size:       4,
    			actualSize: 4,
    		},
    		{
    			desc:       "Incorrect sha256, nested",
    			src:        mustReader(t, bytes.NewReader([]byte("abcd")), 4, "", "", 4),
    			size:       4,
    			actualSize: 4,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            '''
    
            executer.expectDocumentedDeprecationWarning("The GradleBuild.buildFile property has been deprecated. This is scheduled to be removed in Gradle 9.0. Setting custom build file to select the root of the nested build has been deprecated. Please use the dir property instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#configuring_custom_build_layout")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top