Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for Hellox (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            when:
            librarySourceModified("hello")
            librarySourceModified("hello2")
    
            then:
            args("--info")
            succeeds "helloSharedLibrary", "hello2SharedLibrary"
            pchNotCompiled("hello")
            pchNotCompiled("hello2")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. 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)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

          }
    
          Red<A> getSelfB() {
            return Red.this;
          }
        }
    
        Red<A> getSelfA() {
          return this;
        }
    
        private class Yellow<B> extends Red<B>.Orange {
          Yellow(Red<B> red) {
            red.super();
          }
    
          Class<?> getClassB() {
            return new TypeToken<B>(getClass()) {}.getRawType();
          }
    
          Red<A> getA() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

          }
    
          Red<A> getSelfB() {
            return Red.this;
          }
        }
    
        Red<A> getSelfA() {
          return this;
        }
    
        private class Yellow<B> extends Red<B>.Orange {
          Yellow(Red<B> red) {
            red.super();
          }
    
          Class<?> getClassB() {
            return new TypeToken<B>(getClass()) {}.getRawType();
          }
    
          Red<A> getA() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                task hello {
                    dependsOn {
                        // call during task graph calculation
                        ${server.callFromBuild('task-graph')}
                        null
                    }
                    doFirst {
                        ${server.callFromBuild('task1')}
                    }
                }
                task hello2 {
                    dependsOn hello
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         */
        public enum Color {
            BLACK(0, "BLACK"),
            RED(1, "RED"),
            GREEN(2, "GREEN"),
            YELLOW(3, "YELLOW"),
            BLUE(4, "BLUE"),
            MAGENTA(5, "MAGENTA"),
            CYAN(6, "CYAN"),
            WHITE(7, "WHITE"),
            DEFAULT(9, "DEFAULT");
    
            private final int value;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top