Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,318 for wereld (0.24 sec)

  1. docs/zh/docs/advanced/wsgi.md

    ```txt
    Hello, World from Flask!
    ```
    
    并且如果您访问 <a href="http://localhost:8000/v2" class="external-link" target="_blank">http://localhost:8000/v2</a>,您将会看到由 FastAPI 返回的响应:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            when:
            run("build")
    
            then:
            assertTestPassed("org.example.AppTest", "appHasAGreeting")
    
            when:
            run("run")
    
            then:
            outputContains("Hello World!")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/property/kotlin/build.gradle.kts

    val simpleMessageProperty: Property<String> = project.objects.property(String::class)
    simpleMessageProperty.set("Hello, World from a Property!")
    // Accessing a property
    println(simpleMessageProperty.get())
    // end::set-prop[]
    
    // tag::set-prov[]
    // Setting a provider
    val simpleMessageProvider: Provider<String> = project.providers.provider { "Hello, World from a Provider!" }
    // Accessing a provider
    println(simpleMessageProvider.get())
    // end::set-prov[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/startup_live.yaml.injected

                port: 15020
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/world/livez
                port: 15020
            name: world
            ports:
            - containerPort: 90
              name: http
            resources: {}
            startupProbe:
              exec:
                command:
                - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-probes.proxyHoldsApplication.yaml.injected

                port: 15020
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/world/livez
                port: 15020
            name: world
            ports:
            - containerPort: 90
              name: http
            readinessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-probes.yaml.injected

                port: 15020
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/world/livez
                port: 15020
            name: world
            ports:
            - containerPort: 90
              name: http
            readinessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/https-probes.yaml.injected

                scheme: HTTP
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/world/livez
                port: 15020
            name: world
            ports:
            - containerPort: 90
              name: http
            readinessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    // positions.
    func (c *context) checkpoint() {
    	if c.err == nil {
    		c.nDst, c.nSrc = c.pDst, c.pSrc+c.sz
    	}
    }
    
    // unreadRune causes the last rune read by next to be reread on the next
    // invocation of next. Only one unreadRune may be called after a call to next.
    func (c *context) unreadRune() {
    	c.sz = 0
    }
    
    func (c *context) next() bool {
    	c.pSrc += c.sz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/wsgi.md

    ```txt
    Hello, World from Flask!
    ```
    
    Und wenn Sie auf <a href="http://localhost:8000/v2" class="external-link" target="_blank">http://localhost:8000/v2</a> gehen, sehen Sie die Response von FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml.injected

                port: 15020
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /app-health/world/livez
                port: 15020
            name: world
            ports:
            - containerPort: 90
              name: http
            readinessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top