Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for helloWorld1 (0.28 sec)

  1. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            """
    
            when:
            def result = runner('helloWorld1')
                .withPluginClasspath(plugin.implClasspath)
                .build()
    
            then:
            result.task(":helloWorld1").outcome == SUCCESS
    
            where:
            type         | notation
            'class type' | 'HelloWorldPlugin1'
            'identifier' | "'com.company.helloworld1'"
        }
    
        @InspectsExecutedTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/security/fuzz/backends/tomcat/private/HelloWorld.java

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    
    public class HelloWorld extends HttpServlet {
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            PrintWriter out = response.getWriter();
            out.println("<!DOCTYPE html>");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. samples/helloworld/gen-helloworld.sh

    apiVersion: v1
    kind: Service
    metadata:
      name: helloworld
      labels:
        app: helloworld
        service: helloworld
    spec:
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
    EOF
    )
    
    DEPLOYMENT_YAML=$(cat <<EOF
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-${SERVICE_VERSION}
      labels:
        app: helloworld
        version: ${SERVICE_VERSION}
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 19 14:18:35 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. samples/helloworld/gateway-api/helloworld-gateway.yaml

    kind: Gateway
    metadata:
      name: helloworld-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: helloworld
    spec:
      parentRefs:
      - name: helloworld-gateway
      rules:
      - matches:
        - path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 522 bytes
    - Viewed (0)
  6. samples/helloworld/gateway-api/helloworld-route.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: helloworld
    spec:
      parentRefs:
      - name: helloworld-gateway
      rules:
      - matches:
        - path:
            type: Exact
            value: /hello
        backendRefs:
        - name: helloworld-v1
          port: 5000
          weight: 90
        - name: helloworld-v2
          port: 5000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 353 bytes
    - Viewed (0)
  7. samples/helloworld/gateway-api/helloworld-versions.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: helloworld-v1
    spec:
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: helloworld-v2
    spec:
      ports:
      - port: 5000
        name: http
      selector:
        app: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 312 bytes
    - Viewed (0)
  8. samples/helloworld/helloworld-gateway.yaml

    kind: Gateway
    metadata:
      name: helloworld-gateway
    spec:
      selector:
        istio: ingressgateway # use istio default controller
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: helloworld
    spec:
      hosts:
      - "*"
      gateways:
      - helloworld-gateway
      http:
      - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 14 21:21:11 UTC 2019
    - 561 bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/cgo/internal/testfortran/testdata/helloworld/helloworld.f90

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 100 bytes
    - Viewed (0)
Back to top