Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,769 for indirectly (0.31 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractProjectRelocationIntegrationTest.groovy

            when: "task is built in the original location"
            inDirectory(originalDir)
            executer.withJavaHome(originalJavaHome)
            withBuildCache().run taskName
            def originalResults = extractResultsFrom(originalDir)
            then: "it is executed and cached"
            executedAndNotSkipped taskName
    
            when: "task is re-executed without the cache"
            inDirectory(originalDir)
            run taskName, '-i'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_import_toolchain.txt

    go: trying upgrade to example.net/b@v0.1.0
    go: accepting indirect upgrade from go@1.20 to 1.22.0
    go: trying upgrade to example.net/c@v0.1.0
    go: trying upgrade to example.net/d@v0.2.0
    go: module ./d2 requires go >= 1.23.0; switching to go1.23.9
    go: trying upgrade to example.net/a@v0.2.0
    go: trying upgrade to example.net/b@v0.1.0
    go: accepting indirect upgrade from go@1.20 to 1.22.0
    go: trying upgrade to example.net/c@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/custom-response.md

    By default, **FastAPI** will return the responses using `JSONResponse`.
    
    You can override it by returning a `Response` directly as seen in [Return a Response directly](response-directly.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesWorkingWithDependenciesIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(iterationMatchers = ".*kotlin dsl")
        def "can iterate over dependencies assigned to a configuration with #dsl dsl"() {
            executer.inDirectory(sample.dir.file(dsl))
    
            when:
            succeeds('iterateDeclaredDependencies')
    
            then:
            outputContains("""org.eclipse.jgit:org.eclipse.jgit:4.9.2.201712150930-r
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ForkCapableRelocationIntegrationTest.groovy

            setupProjectWithJavaAgentIn(relocatedDir)
    
            when:
            inDirectory(originalDir)
            withBuildCache().run taskName
    
            then:
            executedAndNotSkipped taskName
    
            and:
            outputContains('JavaAgent configured!')
    
            when:
            inDirectory(originalDir)
            withBuildCache().run taskName
    
            then:
            skipped taskName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            withLibBuild()
            withDevelocityPlugin(withAppBuild())
    
            when:
            inDirectory 'app'
            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
            postBuildOutputContains 'Build scan written to'
            configurationCache.assertStateStored()
    
            when:
            inDirectory 'app'
            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_goproxy_off.txt

    require rsc.io/sampler v1.3.0
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- sub/go.mod --
    module example/sub
    
    go 1.19
    
    require rsc.io/quote v1.5.1
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    	rsc.io/sampler v1.3.1 // indirect
    )
    -- sub/sub.go --
    package example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 14 19:05:09 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_lazy_indirect.txt

    # immediately.
    #
    # 'go get' marks the new dependency as 'indirect', because it doesn't scan
    # enough source code to know whether it is direct, and it is easier and less
    # invasive to remove an incorrect indirect mark (e.g. using 'go get') than to
    # add one that is missing ('go mod tidy' or 'go mod vendor').
    
    go get rsc.io/quote
    grep 'rsc.io/quote v\d+\.\d+\.\d+ // indirect$' go.mod
    ! grep 'rsc.io/quote v\d+\.\d+\.\d+$' go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 19:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

        def setup() {
            using m2
        }
    
        @UsesSample('signing/conditional')
        def "conditional signing with dsl #dsl"() {
            given:
            inDirectory(sample.dir.file(dsl))
    
            when:
            run "publish"
    
            then:
            skipped(":signMainPublication")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogResolveIntegrationTest.groovy

                }
            '''
            executer.inDirectory(platformProject).withTasks('publish').run()
    
            platformProject = preparePlatformProject '''
                versionCatalog {
                    library('my-lib', 'org.test:lib:1.1')
                }
            ''', '1.1'
            executer.inDirectory(platformProject).withTasks('publish').run()
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top