Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,574 for xHello (0.23 sec)

  1. src/cmd/go/testdata/script/build_static.txt

    go build -ldflags='-linkmode=external -extldflags=-static'
    ! stderr runtime/cgo
    exec ./hello
    stdout Hello
    
    -- go.mod --
    module hello
    
    go 1.20
    -- hello.go --
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Println("Hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:03:35 UTC 2023
    - 926 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/slashpath.txt

    # This is important for reproducing native builds with cross-compiled builds.
    go build -o hello.exe hello.go
    ! grep 'GOROOT\\' hello.exe
    ! grep '\\runtime' hello.exe
    ! grep 'runtime\\' hello.exe
    ! grep 'gofile..[A-Za-z]:\\' hello.exe
    
    -- hello.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 596 bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

            outputContains "Hello from original task!"
    
            when:
            taskSourceFile.text = taskWithGreeting("Hello from modified task!")
            waitForChangesToBePickedUp()
            runWithWatchingEnabled "hello"
            then:
            outputContains "Hello from modified task!"
        }
    
        def "Groovy build script changes are recognized"() {
            when:
            buildFile.text = """
                println "Hello from the build!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    hello
    processResources - Processes main resources.
    processTestResources - Processes test resources.
    startScripts - Creates OS-specific scripts to run the project as a JVM application.
    ----
    
    You can execute the task in the build script with `./gradlew hello`:
    
    ====
    ----
    $ ./gradlew hello
    include::{snippetsPath}/tutorial/hello/tests/hello.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. istioctl/pkg/kubeinject/kubeinject_test.go

    				" "),
    			GoldenFilename: "testdata/deployment/hello.yaml.iop.injected",
    		},
    		{ // case 6 with iops and values override
    			Args: strings.Split(
    				"--operatorFileName testdata/istio-operator.yaml"+
    					" --injectConfigFile testdata/inject-config-iop.yaml -f testdata/deployment/hello.yaml"+
    					" -f testdata/deployment/hello.yaml"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

    model {
        repositories {
            libs(PrebuiltLibraries) {
                hello {
                    headers.srcDir "libs/src/hello/headers"
                    binaries.withType(StaticLibraryBinary) {
                        def libName = targetPlatform.operatingSystem.windows ? 'hello.lib' : 'libhello.a'
                        staticLibraryFile = file("libs/build/libs/hello/static/english/\${libName}")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. tests/test_router_redirect_slashes.py

        app = FastAPI()
        router = APIRouter()
    
        @router.get("/hello/")
        def hello_page() -> str:
            return "Hello, World!"
    
        app.include_router(router)
    
        client = TestClient(app)
    
        response = client.get("/hello/", follow_redirects=False)
        assert response.status_code == 200
    
        response = client.get("/hello", follow_redirects=False)
        assert response.status_code == 307
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 22 10:37:50 UTC 2023
    - 974 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gopath_local.txt

    }
    -- testdata/local/easysub/easysub.go --
    package easysub
    
    import "fmt"
    
    func Hello() {
    	fmt.Println("easysub.Hello")
    }
    -- testdata/local/easysub/main.go --
    // +build ignore
    
    package main
    
    import "."
    
    func main() {
    	easysub.Hello()
    }
    -- testdata/local/hard.go --
    package main
    
    import "./sub"
    
    func main() {
    	sub.Hello()
    }
    -- testdata/local/sub/sub.go --
    package sub
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                    bonjour();
                    #else
                    hello();
                    world();
                    #endif
                }
    
                void hello()
                {
                    NSString *hello = @"Hello";
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
                    NSData *strData = [hello dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top