Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 94 for HelloWorld (0.16 sec)

  1. samples/helloworld/README.md

    To run both versions of the helloworld service, use the following command:
    
    ```bash
    kubectl apply -f helloworld.yaml
    ```
    
    Alternatively, you can run just one version at a time by first defining the service:
    
    ```bash
    kubectl apply -f helloworld.yaml -l service=helloworld
    ```
    
    and then deploying version v1, v2, or both:
    
    ```bash
    kubectl apply -f helloworld.yaml -l version=v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/truncate-canonical-name-pod.yaml.injected

        - name: ISTIO_META_INTERCEPTION_MODE
          value: REDIRECT
        - name: ISTIO_META_WORKLOAD_NAME
          value: helloworld-helloworld-helloworld-helloworld-helloworld-helloworld
        - name: ISTIO_META_OWNER
          value: kubernetes://apis/v1/namespaces/default/pods/helloworld-helloworld-helloworld-helloworld-helloworld-helloworld
        - name: ISTIO_META_MESH_ID
          value: cluster.local
        - name: TRUST_DOMAIN
          value: cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerBuildFailureIntegrationTest.groovy

            given:
            buildScript """
                task helloWorld {
                    doLast {
                        throw new GradleException('Expected exception')
                    }
                }
            """
    
            when:
            def result = runner('helloWorld').buildAndFail()
    
            then:
            result.taskPaths(FAILED) == [':helloWorld']
            result.output.contains("Expected exception")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml.injected

      creationTimestamp: null
      generateName: helloworld-
      labels:
        security.istio.io/tlsMode: istio
        service.istio.io/canonical-name: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo
        service.istio.io/canonical-revision: latest
      name: helloworld-helloworld
      ownerReferences:
      - apiVersion: foo/v1
        controller: true
        kind: Bar
        name: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/truncate-canonical-name-pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      # more than 63 characters
      name: helloworld-helloworld-helloworld-helloworld-helloworld-helloworld
    spec:
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 299 bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerMechanicalFailureIntegrationTest.groovy

            buildScript helloWorldTask()
    
            when:
            runner('helloWorld', '--unknown').build()
    
            then:
            thrown UnexpectedBuildFailure
        }
    
        def "treats invalid argument as build failure and does not throw if expected"() {
            given:
            buildScript helloWorldTask()
    
            when:
            runner('helloWorld', '--unknown').buildAndFail()
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      generateName: helloworld-
      # less than 63 characters
      name: helloworld-helloworld
      ownerReferences:
        - apiVersion: foo/v1
          controller: true
          kind: Bar
          # more than 63 characters
          name: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
          uid: 12345678-1234-1234-1234-123456789012
    spec:
      containers:
        - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 524 bytes
    - Viewed (0)
  8. samples/builder/docker-bake.hcl

        source = "../tcp-echo/src"
        tags   = ["1.3", "latest"]
      },
    
      {
        name   = "examples-helloworld-v1"
        source = "../helloworld/src"
        args   = {
          service_version = "v1"
        }
        tags = ["1.0", "latest"]
      },
      {
        name   = "examples-helloworld-v2"
        source = "../helloworld/src"
        args   = {
          service_version = "v2"
        }
        tags = ["1.0", "latest"]
      },
    ]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 845 bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerConventionalPluginClasspathInjectionIntegrationTest.groovy

            pluginUnderTest.build().exposeMetadata {
                runner('helloWorld')
                    .withPluginClasspath()
                    .build()
            }
        }
    
        @InspectsBuildOutput
        def "does not use conventional plugin classpath if not requested"() {
            when:
            def result = pluginUnderTest.build().exposeMetadata {
                runner('helloWorld')
                    .buildAndFail()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionCustomTestSourceSet/kotlin/src/functionalTest/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

                    id 'org.gradle.sample.helloworld'
                }
            """
    
            when:
            def result = GradleRunner.create()
                .withProjectDir(testProjectDir)
                .withArguments('helloWorld')
                .withPluginClasspath()
                .build()
    
            then:
            result.output.contains('Hello world!')
            result.task(":helloWorld").outcome == SUCCESS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top