Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,106 for wereld (0.12 sec)

  1. platforms/documentation/docs/src/snippets/providers/property/tests/propertyGroovy.out

    Hello, World from a Property!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 60 bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server_test.go

    		},
    		// invalid probe type
    		{
    			probe: `{"/app-health/hello-world/readyz": {"exec": {"command": [ "true" ]}}}`,
    			err:   "invalid prober type",
    		},
    		// tcp probes are valid as well
    		{
    			probe: `{"/app-health/hello-world/readyz": {"tcpSocket": {"port": 8888}}}`,
    		},
    		// probes must be one of tcp, http or gRPC
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/vendor_complex.txt

    -- complex/nest/vendor/v3/v3.go --
    package v3
    
    const ComplexNestVendorV3 = true
    
    -- complex/vendor/v/v.go --
    package v
    
    const Hello = "hello"
    
    -- complex/w/w.go --
    package w
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testKit/junitQuickstart/kotlin/src/test/java/org/gradle/sample/BuildLogicFunctionalTest.java

        }
    
        @Test
        public void testHelloWorldTask() throws IOException {
            writeFile(settingsFile, "rootProject.name = 'hello-world'");
            String buildFileContent = "task helloWorld {" +
                                      "    doLast {" +
                                      "        println 'Hello world!'" +
                                      "    }" +
                                      "}";
            writeFile(buildFile, buildFileContent);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

            """),
                    sourceFile("cpp", "cpplib.cpp", """
                #include "hello.h"
                #include <iostream>
                using namespace std;
    
                void world() {
                    cout << ", World!" << std::endl;
                }
            """),
                    sourceFile("objcpp", "sum.mm", """
                #import "hello.h"
                int sum(int a, int b) {
                    return a + b;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. docs_src/sub_applications/tutorial001.py

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/app")
    def read_main():
        return {"message": "Hello World from main app"}
    
    
    subapi = FastAPI()
    
    
    @subapi.get("/sub")
    def read_sub():
        return {"message": "Hello World from sub API"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 11 21:53:19 UTC 2020
    - 274 bytes
    - Viewed (0)
  8. tests/test_router_events.py

    )
    def test_router_events(state: State) -> None:
        app = FastAPI()
    
        @app.get("/")
        def main() -> Dict[str, str]:
            return {"message": "Hello World"}
    
        @app.on_event("startup")
        def app_startup() -> None:
            state.app_startup = True
    
        @app.on_event("shutdown")
        def app_shutdown() -> None:
            state.app_shutdown = True
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/tests/implicitTaskInputFileDependencyGroovy.out

    > Task :producer
    Wrote 'Hello, World!' to /home/user/gradle/samples/output/file.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/output/file.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 226 bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

            then:
            outputContains('Hello World!')
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.DashAvailable])
        def "can execute generated Unix start script in Dash"() {
            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("dash")
    
            then:
            outputContains('Hello World!')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top