Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 253 for _run (0.06 sec)

  1. docs/site-replication/run-replication-with-checksum-header.sh

    Shubhendu <******@****.***> 1717863855 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. docs/site-replication/run-ssec-object-replication-with-compression.sh

    Klaus Post <******@****.***> 1718033511 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

        }
    
        def "problems are reported through the Problems API"() {
            given:
            buildFile """
                gradle.buildFinished { }
    
                task run
            """
    
            when:
            configurationCacheRunLenient 'run'
    
            then:
            problems.assertResultHasProblems(result) {
                withTotalProblemsCount(1)
                withUniqueProblems(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

            [":finalized:dep", ":finalized:task", ":finalizer:dep", ":finalizer:task"].each {
                server.expectConcurrent(it)
            }
            configurationCacheRun ":finalized:task", "--parallel"
            configurationCache.assertStateStored()
    
            and: "unrequested finalizer dependencies not to run in parallel when loading the graph"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    					src.CallOrFail(t, opt)
    				})
    			}
    		}
    		t.NewSubTest("before").Run(check)
    
    		SetWaypoint(t, Captured, "bogus-waypoint")
    		t.NewSubTest("with waypoint").Run(check)
    
    		SetWaypoint(t, Captured, "")
    		t.NewSubTest("waypoint removed").Run(check)
    	})
    }
    
    func TestServerRouting(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            """
    
            when:
            run "sync"
    
            then:
            file("output").assertHasDescendants("file1.txt", "file2.txt")
    
            when:
            run "sync"
    
            then:
            result.assertTaskSkipped(':sync')
    
            when:
            file("files/dir2").deleteDir()
            file("files/dir3/file3.txt") << ""
            run "sync"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEnablementIntegrationTest.groovy

        ConfigurationCacheFixture fixture = new ConfigurationCacheFixture(this)
    
        def "can enable with a command line #origin"() {
            when:
            run 'help', argument
    
            then:
            fixture.assertStateStored()
    
            when:
            run 'help', argument
    
            then:
            fixture.assertStateLoaded()
    
            where:
            origin            | argument
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

    class ConfigurationCacheStandardStreamsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "#task task can run with default configuration"() {
            setUpProject(
                makeTask(task, extraArg: "Gradle")
            )
    
            when:
            configurationCacheRun("run")
    
            then:
            outputContains("Hello, Gradle")
    
            where:
            task       || _
            "exec"     || _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. docs/en/docs/fastapi-cli.md

    ## `fastapi run`
    
    When you run `fastapi run`, it will run on production mode by default.
    
    It will have **auto-reload disabled** by default.
    
    It will listen on the IP address `0.0.0.0`, which means all the available IP addresses, this way it will be publicly accessible to anyone that can communicate with the machine. This is how you would normally run it in production, for example, in a container.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

        override suspend fun WriteContext.encode(value: ProviderInternal<*>) {
            // TODO - should write the provider value type
            providerCodec.run { encodeProvider(value) }
        }
    
        override suspend fun ReadContext.decode() =
            providerCodec.run { decodeProvider() }
    }
    
    
    class BuildServiceProviderCodec(
        private val buildStateRegistry: BuildStateRegistry
    ) : Codec<BuildServiceProvider<*, *>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top