Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,655 for TestTd (0.21 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

                    ":nested",
                    ":nested:buildSrc",
                    ":nested:buildSrc:buildSrc",
                    ":nested-cli:nested-cli-nested",
                    ":nested-cli:nested-cli-nested:buildSrc",
                    ":nested-cli:nested-cli-nested:buildSrc:buildSrc",
                    ":nested-cli",
                    ":nested-cli:buildSrc",
                    ":nested-cli:buildSrc:buildSrc",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_issue61415.txt

    stdout '"Subdir": "nested"'
    stdout '"TagPrefix": "nested/"'
    stdout '"TagSum": "t1:47DEQpj8HBSa\+/TImW\+5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "refs/tags/has-nested"'
    stdout '"Hash": "08a4fa6bb9c04ffba03b26ae427b0d6335d90a2a"'
    
    go list -reuse=has-nested.json -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@has-nested
    stdout '"Origin":'
    stdout '"VCS": "git"'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.clean checkout",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_split.txt

    -- nested.0/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.1/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.1/nested.go --
    package nested
    -- nested.2/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.2/nested.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    }
                }
    
                class NestedBean {
                    @Nested
                    NestedBean nested
                }
    
                task myTask(type: TaskWithNestedInput) {
                    outputFile = file('build/output.txt')
                    nested = new NestedBean()
                    nested.nested = nested
                }
            """
    
            expect:
            fails "myTask"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/git/issue61415.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    at 2023-11-14T13:00:00-05:00
    
    git init
    
    git add go.mod nested
    git commit -m 'nested: add go.mod'
    git branch -m main
    
    git tag has-nested
    
    at 2023-11-14T13:00:01-05:00
    
    git rm -r nested
    git commit -m 'nested: delete subdirectory'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    git log --pretty=oneline
    cmp stdout .git-log
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 928 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

            "map provider value"      | ["key1": "Hello", "key2": TestUtil.providerFactory().provider { null }] | IllegalStateException | "Null value is not allowed for the nested collection property 'nested.key2'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

    // tag::create-rule[]
    // tag::managed-type-nested-config-rule[]
    }
    // end::create-rule[]
    // end::create-rule-no-config[]
    // end::configure-rule[]
    // end::rule-inputs[]
    // end::managed-type-nested-config-rule[]
    
    // tag::model-map-nested-configure-rule[]
    // tag::model-map-nested-create-rule[]
    // tag::model-map-all-rule[]
    model {
        people {
    // end::model-map-nested-create-rule[]
    // end::model-map-all-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	fieldLevel
    )
    
    type ValidationOptions struct {
    	// AllowNestedAdditionalProperties allows additionalProperties to be specified in
    	// nested contexts (allOf, anyOf, oneOf, not).
    	AllowNestedAdditionalProperties bool
    
    	// AllowNestedXValidations allows x-kubernetes-validations to be specified in
    	// nested contexts (allOf, anyOf, oneOf, not).
    	AllowNestedXValidations bool
    
    	// AllowValidationPropertiesWithAdditionalProperties allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/SampleRuleTest.groovy

            "sub/sample/kotlin/"        | "sample"
            "sub/sample/nested"         | "nested"
            "sub/sample/nested/"        | "nested"
            "sub/sample/nested/groovy"  | "nested"
            "sub/sample/nested/groovy/" | "nested"
            "sub/sample/nested/kotlin"  | "nested"
            "sub/sample/nested/kotlin/" | "nested"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top