Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,377 for Hellox (0.09 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: hello-ingress-{{$i}}
      namespace: default
    spec:
      gateways:
      - knative-serving/knative-ingress-gateway
      - knative-serving/knative-local-gateway
      hosts:
      - hello.default
      - hello.default.external.domain
      - hello.default.svc
      - hello.default.svc.cluster.local
      http:
      - headers:
          request:
            set:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. tests/test_default_response_class_router.py

    
    @router_a_a.get("/override", response_class=PlainTextResponse)
    def get_a_a_path_override():
        return "Hello A A"
    
    
    @router_a_b_override.get("/")
    def get_a_b():
        return "Hello A B"
    
    
    @router_a_b_override.get("/override", response_class=HTMLResponse)
    def get_a_b_path_override():
        return "Hello A B"
    
    
    @router_b_override.get("/")
    def get_b():
        return "Hello B"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 01 20:49:20 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/run_vendor.txt

    cd vend/hello
    go run hello.go
    stdout 'hello, world'
    
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    func main() {
    	fmt.Printf("%s\n", strings.Msg)
    }
    -- vend/hello/hello_test.go --
    package main
    
    import (
    	"strings" // really ../vendor/strings
    	"testing"
    )
    
    func TestMsgInternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 532 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/WindowsResourceHelloWorldApp.groovy

            return sourceFile("cpp", "main.cpp", """
    #include "hello.h"
    
    int main () {
        hello();
        return 0;
    }
    """)
        }
    
        @Override
        SourceFile getLibraryHeader() {
            return sourceFile("headers", "hello.h", """
    #define IDS_HELLO    111
    
    #ifdef DLL_EXPORT
    #define DLL_FUNC __declspec(dllexport)
    #define MODULE_HANDLE GetModuleHandle("hello")
    #else
    #define DLL_FUNC
    #define MODULE_HANDLE null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. test/fixedbugs/bug197.go

    type S string
    var s S
    
    var s1 = s + "hello"
    var s2 = "hello" + s
    var s3 = s + string("hello")	// ERROR "invalid operation|incompatible"
    var s4 = string("hello") + s	// ERROR "invalid operation|incompatible"
    
    var r string
    
    var r1 = r + "hello"
    var r2 = "hello" + r
    var r3 = r + string("hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 757 bytes
    - Viewed (0)
Back to top