Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for HelloWorld (0.14 sec)

  1. samples/helloworld/helloworld.yaml

    kind: Service
    metadata:
      name: helloworld
      labels:
        app: helloworld
        service: helloworld
    spec:
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v1
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/src/main/kotlin/samples/HelloWorld.kt

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 79 bytes
    - Viewed (0)
  3. samples/helloworld/helloworld-dual-stack.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: helloworld
      labels:
        app: helloworld
        service: helloworld
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies:
      - IPv6
      - IPv4
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v1
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tools/docker.yaml

    # This folder is then passed as the docker context. This avoids complex .dockerignore or large context loads.
    
    # Example image config
    example:
    - name: helloworld # Name of the image. Will end up pushed to <HUB>/helloworld:<TAG>
      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
      # Inside the Dockerfile, this is referenced by the base name (README.md), not the full name.
      - samples/README.md
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                    }
    
                    def "execute helloWorld task"() {
                        settingsFile = new File(testProjectDir, 'settings.gradle')
                        buildFile = new File(testProjectDir, 'build.gradle')
                        given:
                        settingsFile << "rootProject.name = 'hello-world'"
                        buildFile << '''
                            task helloWorld {
                                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

            given:
            buildFile << """
                task helloWorld {
                    doFirst { println "Hello, World!" }
                }
            """
    
            when:
            runBuild('helloWorld')
    
            then:
            with (taskSuccessResult(':helloWorld')) {
                !incremental
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top