Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,106 for wereld (0.1 sec)

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

    Hello, World from a Property!
    Hello, World from a Provider!
    
    ------------------------------------------------------------
    Root project 'property-provider'
    ------------------------------------------------------------
    
    classpath
    No dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 328 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/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)
  3. test/fixedbugs/bug425.go

    // license that can be found in the LICENSE file.
    
    // https://golang.org/issue/3119
    
    package main
    
    import "fmt"
    
    func main() {
    	s := "hello"
    	fmt.Println(s == "")
    	fmt.Println(s + "world" == "world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 323 bytes
    - Viewed (0)
  4. test/abi/named_return_stuff.out

    y =  1
    y =  6
    y =  27
    x = 21
    len(y) = 41
    y = OKAY! Aloha! Hello World! !!!!!!!!!!!!!!!
    len(z) = 17
    z = Aloha! Hello Pal!
    
    len(y) = 25
    y = OKAY! Aloha! Hello World!
    len(z) = 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 04 23:07:50 UTC 2021
    - 198 bytes
    - Viewed (0)
  5. docs_src/response_headers/tutorial001.py

    from fastapi import FastAPI
    from fastapi.responses import JSONResponse
    
    app = FastAPI()
    
    
    @app.get("/headers/")
    def get_headers():
        content = {"message": "Hello World"}
        headers = {"X-Cat-Dog": "alone in the world", "Content-Language": "en-US"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 309 bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/NativeLanguageSamplesIntegrationTest.groovy

                                  ":compileMainExecutableMainC", ":linkMainExecutable", ":mainExecutable"
    
            and:
            installation(c.dir.file("build/install/main")).exec().out == "Hello world!"
        }
    
        @ToBeFixedForConfigurationCache
        def "cpp"() {
            given:
            sample cpp
    
            when:
            run "installMainExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. tests/test_include_route.py

    
    @router.route("/items/")
    def read_items(request: Request):
        return JSONResponse({"hello": "world"})
    
    
    app.include_router(router)
    
    client = TestClient(app)
    
    
    def test_sub_router():
        response = client.get("/items/")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 08 04:37:38 UTC 2020
    - 496 bytes
    - Viewed (0)
  8. docs_src/wsgi/tutorial001.py

    from markupsafe import escape
    
    flask_app = Flask(__name__)
    
    
    @flask_app.route("/")
    def flask_main():
        name = request.args.get("name", "World")
        return f"Hello, {escape(name)} from Flask!"
    
    
    app = FastAPI()
    
    
    @app.get("/v2")
    def read_main():
        return {"message": "Hello World"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 09 14:32:00 UTC 2023
    - 443 bytes
    - Viewed (0)
  9. tests/test_response_change_status_code.py

    
    @app.get("/", dependencies=[Depends(parent_dep)])
    async def get_main():
        return {"msg": "Hello World"}
    
    
    client = TestClient(app)
    
    
    def test_dependency_set_status_code():
        response = client.get("/")
        assert response.status_code == 201, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 08 04:37:38 UTC 2020
    - 589 bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/plugin_manager.go

    	Run(sourcesReady config.SourcesReady, stopCh <-chan struct{})
    
    	// AddHandler adds the given plugin handler for a specific plugin type, which
    	// will be added to the actual state of world cache so that it can be passed to
    	// the desired state of world cache in order to be used during plugin
    	// registration/deregistration
    	AddHandler(pluginType string, pluginHandler cache.PluginHandler)
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top