Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 150 for Macro (0.05 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    //
    // ParameterizedTestCaseInfoBase is a generic interface
    // to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase
    // accumulates test information provided by TEST_P macro invocations
    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/build.gradle

    plugins {
        id "cpp"
    }
    // end::use-plugin[]
    
    // tag::args[]
    model {
        components {
            main(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    // Define a preprocessor macro that only applies to shared libraries
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 379 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/multi-project/groovy/lib/build.gradle

    plugins {
        id 'cpp'
    }
    
    model {
        components {
            main(NativeLibrarySpec)
        }
    
        // For any shared library binaries built with Visual C++,
        // define the DLL_EXPORT macro
        binaries {
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/build.gradle

                }
            }
        }
    
        binaries {
            all {
                linker.args "user32.lib"
            }
    
            // For any shared library binaries built with Visual C++, define the DLL_EXPORT macro
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 711 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/pre-compiled-headers/groovy/build.gradle

                    }
                }
    // end::source-library[]
            }
        }
    }
    
    // end::executables[]
    
    // For any shared library binaries built with Visual C++, define the DLL_EXPORT macro
    model {
        binaries {
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 881 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cpp-exe/groovy/build.gradle

    plugins {
        id "cpp"
    }
    
    model {
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    // Define a preprocessor macro
                    cppCompiler.define "NDEBUG"
                    // Add some additional compiler arguments
                    if (toolChain in Gcc) {
                        cppCompiler.args "-fno-access-control", "-fconserve-space"
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 931 bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            file("src/main/headers/directory") << '#pragma message("including directory named header")'
            file("src/main/headers/macro.h") << '#pragma message("including macro header")'
    
            sourceFile << """
                #include "directory"
                #define MACRO "macro.h"
                #include MACRO
    """
    
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            run "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/ArgsMappingMacroFunction.java

            } else if (type == IncludeType.MACRO_FUNCTION) {
                // Macro expand parameter
                mapped.add(arguments.get(replaceWith).asMacroExpansion());
            } else {
                // Do not macro expand parameter
                mapped.add(arguments.get(replaceWith));
            }
            return currentMapPos;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/common.go

    package language
    
    // This file contains code common to the maketables.go and the package code.
    
    // AliasType is the type of an alias in AliasMap.
    type AliasType int8
    
    const (
    	Deprecated AliasType = iota
    	Macro
    	Legacy
    
    	AliasTypeUnknown AliasType = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 334 bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tfcompile.bzl

    """Build macro that compiles a TensorFlow graph into a cc_library.
    
    To use from your BUILD file, add the following line to load the macro:
    
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    
    Then call the macro like this:
    
    tf_library(
        name = "test_graph_tfmatmul",
        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top