Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,003 for hello1 (0.5 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/test/framework/tools/featuresgen/cmd/root_test.go

    		t.Errorf("Expected '\tLabel1_Label2\tFeature = \"lab*)($)#el1.label2\"' got '%s'", s2)
    	}
    }
    
    var testYaml = `
    features:
      values: [hello1, hello2]
      key2:
        values: [val1, val2]
    `
    
    const expectedResult = `	Hello1	Feature = "hello1"
    	Hello2	Feature = "hello2"
    	Key2_Val1	Feature = "key2.val1"
    	Key2_Val2	Feature = "key2.val2"`
    
    func TestReadVal(t *testing.T) {
    	m := make(map[any]any)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            "hello/other"           | 0      | "hello/world"      | 0
            "/var/hello/other"      | 5      | "hello/world"      | 0
            "/var/hello/world"      | 5      | "hello/world"      | 0
            "/var/hello\\world"     | 5      | "hello/world"      | 0
            "/var/hello/world/next" | 5      | "hello/world"      | 0
            "/var/hello1/other"     | 5      | "hello/world"      | 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            where:
            include             | text
            'HELLO'             | '''
                #define _HELLO(X) #X
                #define HELLO _HELLO(hello.h)
                #include HELLO
            '''
            '_HELLO(hello . h)' | '''
                #define _HELLO(X) #X
                #include _HELLO(hello.h)
            '''
            'MISSING'           | '''
                #ifdef MISSING
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

              }
            """
    
            file("script1.gradle") << "task hello1 { doLast { println 'hello from script1' } }"
            file("script2.gradle") << "task hello2 { doLast { println 'hello from script2' } }"
    
            when:
            succeeds "hello1", "hello2"
    
            then:
            output.contains "hello from script1"
            output.contains "hello from script2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            def header3 = includeDir.createFile("hello3.h")
            def header4 = includeDir.createFile("hello4.h")
            sourceFile << """
                #define HEADER1_NAME1 "hello1.h"
                #define HEADER1_NAME2 "hello2.h"
                #define HEADER2_NAME1 "hello3.h"
                #define HEADER2_NAME2 "hello4.h"
                #if 0
                #define HEADER HEADER1_
                #define NAME NAME1
                #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

    model {
        repositories {
            libs(PrebuiltLibraries) {
                hello {
                    headers.srcDir "libs/src/hello/headers"
                    binaries.withType(StaticLibraryBinary) {
                        def libName = targetPlatform.operatingSystem.windows ? 'hello.lib' : 'libhello.a'
                        staticLibraryFile = file("libs/build/libs/hello/static/english/\${libName}")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

    model {
        components {
            main(NativeLibrarySpec)
        }
    }
    """
    
            and:
            file("src/main/cpp/hello1.cpp") << """
                void hello() {
                }
    """
    
            and:
            file("src/main/cpp/hello2.cpp") << """
                void hello() {
                }
    """
    
            when:
            fails "mainSharedLibrary"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/pre-compiled-headers/groovy/src/hello/headers/hello.h

    #ifndef HELLO_H
    #define 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
    - 210 bytes
    - Viewed (0)
Back to top