Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for Hellox (0.22 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

            testBuild("hello1", "Hello 1")
        }
    
        @Test
        void "caches incremental build state"() {
            createLargeBuildScript()
            testBuild("hello1", "Hello 1")
            TestFile.Snapshot artifactsCacheSnapshot = artifactsCache.snapshot()
    
            testBuild("hello1", "Hello 1")
            artifactsCache.assertHasNotChangedSince(artifactsCacheSnapshot)
    
            testBuild("hello2", "Hello 2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

      name: hello
      namespace: hello2
    spec:
      hosts: [hello]
      http:
        - route:
            - destination:
                host: hello.hello.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      # This is cross-namespace, but not a problem, details has explicit networking.istio.io/exportTo=hello1,hello2,.
      name: hello
      namespace: hello
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/src/hello/c/hello.c

    #include <stdio.h>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      printf("Hello world!");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 92 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      std::cout << "Hello world!" << std::endl;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/c/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
    - 137 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/archivesWithJavaPlugin/groovy/src/main/java/Hello.java

    public class Hello {
        public static void main(String[] args) {
            System.out.println("Hello!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/multi-project/groovy/lib/src/main/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      std::cout << "Hello, World!\n";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/archivesWithJavaPlugin/kotlin/src/main/java/Hello.java

    public class Hello {
        public static void main(String[] args) {
            System.out.println("Hello!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112 bytes
    - Viewed (0)
Back to top