Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for hellowor (0.13 sec)

  1. cluster/gce/gci/append_or_replace_prefixed_line_test.go

    			initialFileContents: `helloworld
    helloworld
    jelloworld
    chelloworld
    `,
    			want: `jelloworld
    chelloworld
    helloworld
    `,
    		},
    		{
    			desc:   "simple string and file already contains prefix with content between the prefix and suffix",
    			prefix: "hello",
    			suffix: "world",
    			initialFileContents: `hellocontentsworld
    jelloworld
    chelloworld
    `,
    			want: `jelloworld
    chelloworld
    helloworld
    `,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deployment-service-no-selector.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      namespace: default
      labels:
        app: helloworld
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v2
      template:
        metadata:
          labels:
            app: helloworld
            version: v2
            sidecar.istio.io/inject: "true"
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 894 bytes
    - Viewed (0)
  3. 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)
  4. samples/helloworld/gateway-api/README.md

    ```
    
    Also make sure you are running two versions (v1 and v2) of the helloworld service:
    
    ```bash
    kubectl apply -f ../helloworld.yaml
    ```
    
    ## Configure the helloworld gateway
    
    Apply the helloworld gateway configuration:
    
    ```bash
    kubectl apply -f ./helloworld-gateway.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/deployment-con-sec-uid.yaml

    metadata:
      name: deploy-con-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 651 bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/backends/tomcat/private/WEB-INF/web.xml

    <web-app>
        <display-name>HelloWorld</display-name>
    
        <servlet>
            <servlet-name>HelloWorld</servlet-name>
            <servlet-class>HelloWorld</servlet-class>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>HelloWorld</servlet-name>
            <url-pattern>/secret.html</url-pattern>
        </servlet-mapping>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 506 bytes
    - Viewed (0)
  7. samples/custom-bootstrap/example-app.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v1
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          annotations:
            sidecar.istio.io/bootstrapOverride: "istio-custom-bootstrap-config"
          labels:
            app: helloworld
            version: v1
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 15:42:01 UTC 2020
    - 654 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. src/internal/zstd/testdata/f2a8e35c.helloworld-11000x.zst

    f2a8e35c.helloworld-11000x.zst hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 47 bytes
    - Viewed (0)
  10. docs/features/interceptors.md

    Request request = new Request.Builder()
        .url("http://www.publicobject.com/helloworld.txt")
        .header("User-Agent", "OkHttp Example")
        .build();
    
    Response response = client.newCall(request).execute();
    response.body().close();
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top