Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for _run (0.04 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. 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)
  6. 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)
  7. 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)
  8. .github/workflows/tests.yml

          - name: Tests
            run: GITHUB_ACTION=true GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True" ./tests/tests_all.sh
    
      postgres:
        strategy:
          matrix:
            dbversion: ['postgres:latest', 'postgres:13', 'postgres:12', 'postgres:11', 'postgres:10']
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in macOS and Windows
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

                plugins {
                    id("java")
                }
                println("script log statement")
            """
    
            when:
            run("assemble")
    
            then:
            outputContains("script log statement")
    
            when:
            run("assemble")
    
            then:
            outputDoesNotContain("script log statement")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/Dockerfile

    #   limitations under the License.
    
    FROM python:3.12.1-slim
    
    WORKDIR /
    
    COPY requirements.txt ./
    RUN pip3 install -vvv --require-hashes --no-cache-dir -r requirements.txt
    
    COPY test-requirements.txt ./
    RUN pip3 install --no-cache-dir --require-hashes -r test-requirements.txt
    
    COPY productpage.py /opt/microservices/
    COPY tests/unit/* /opt/microservices/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top