Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for Macro (0.24 sec)

  1. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

            implementation(project(":common"))
        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/build.gradle

                }
    // end::source-library[]
            }
        }
    }
    
    // end::executables[]
    
    // tag::all-binaries[]
    model {
        binaries {
            all {
                // Define a preprocessor macro for every binary
                cppCompiler.define "NDEBUG"
    
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cppCompiler.args "-O2", "-fno-access-control"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/AbstractMacro.java

     * limitations under the License.
     */
    
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import org.gradle.language.nativeplatform.internal.Macro;
    
    public abstract class AbstractMacro extends AbstractExpression implements Macro {
        private final String name;
    
        AbstractMacro(String name) {
            this.name = name;
        }
    
        @Override
        public String getName() {
            return name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_macros_internal.h

    #ifndef TENSORFLOW_C_C_API_MACROS_INTERNAL_H_
    #define TENSORFLOW_C_C_API_MACROS_INTERNAL_H_
    
    #ifdef __cplusplus
    #include "tensorflow/core/platform/status.h"
    
    // Macro to verify that the field `struct_size` of STRUCT_OBJ is initialized.
    // `struct_size` is used for struct member compatibility check between core TF
    // and plug-ins with the same C API minor version. More info here:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 13 17:40:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1block_arm.s

    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    //   - rounds 16-19 are type 1 and do not load data (ROUND1x macro).
    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

        private final ListSerializer<Include> includeListSerializer = new ListSerializer<Include>(new IncludeSerializer(enumSerializer, expressionSerializer));
        private final CollectionSerializer<Macro> macroListSerializer = new CollectionSerializer<Macro>(new MacroSerializer(enumSerializer, expressionSerializer));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/language.go

    							t.ScriptID = _Latn
    						}
    						t.LangID = l
    						changed = true
    					}
    				case language.Macro:
    					if c&Macro != 0 {
    						// We deviate here from CLDR. The mapping "nb" -> "no"
    						// qualifies as a typical Macro language mapping.  However,
    						// for legacy reasons, CLDR maps "no", the macro language
    						// code for Norwegian, to the dominant variant "nb". This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/AbstractExpression.java

        }
    
        static Expression asMacroExpansion(Expression expression) {
            if (expression.getType() == IncludeType.IDENTIFIER) {
                return new SimpleExpression(expression.getValue(), IncludeType.MACRO);
            }
            if (expression.getType() == IncludeType.TOKEN_CONCATENATION) {
                return new ComplexExpression(IncludeType.EXPAND_TOKEN_CONCATENATION, expression.getValue(), expression.getArguments());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1block_386.s

    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    //   - rounds 16-19 are type 1 and do not load data (ROUND1x macro).
    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top