Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,469 for xHello (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/multi-project/groovy/lib/src/main/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    class Greeter {
        public:
        void LIB_FUNC hello();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 171 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-service.yaml

    kind: Service
    apiVersion: v1
    metadata:
      name: hello
    spec:
      selector:
        app: hello
        tier: backend
      ports:
        - protocol: TCP
          port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 171 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-namespace.yaml

    kind: Deployment
    metadata:
      name: hello
      namespace: test
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello  
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 480 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-openshift.yaml

    kind: Deployment
    metadata:
      name: hello
      namespace: test-ns
    spec:
      replicas: 7
      selector:
        matchLabels: 
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 21:30:10 UTC 2024
    - 482 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/hello/tests/hello.sample.conf

    # tag::cli[]
    # gradle --quiet hello
    # end::cli[]
    executable: gradle
    args: hello
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 127 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-multi.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello-v1
    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
          version: v1
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
            version: v1
        spec:
          containers:
            - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1014 bytes
    - Viewed (0)
Back to top