Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,405 for xdefine (0.17 sec)

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

    // defining either operator<<() or PrintTo() in the namespace that
    // defines T.  More specifically, the FIRST defined function in the
    // following list will be used (assuming T is defined in namespace
    // foo):
    //
    //   1. foo::PrintTo(const T&, ostream*)
    //   2. operator<<(ostream&, const T&) defined in either foo or the
    //      global namespace.
    //
    // If none of the above is defined, it will print the debug string of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    )
    
    // phaseSeparator defines the separator to be used when concatenating nested
    // phase names
    const phaseSeparator = "/"
    
    // RunnerOptions defines the options supported during the execution of a
    // kubeadm composable workflows
    type RunnerOptions struct {
    	// FilterPhases defines the list of phases to be executed (if empty, all).
    	FilterPhases []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    # Pull out the error names for later.
    errors=$(
    	echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
    	awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print $2 }' |
    	sort
    )
    
    # Pull out the signal names for later.
    signals=$(
    	echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
    	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
    	grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' |
    	sort
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/asm/internal/lex/input.go

    		switch in.Stack.Text() {
    		case "else", "endif", "ifdef", "ifndef", "line":
    			// Press on.
    		default:
    			return false
    		}
    	}
    	switch in.Stack.Text() {
    	case "define":
    		in.define()
    	case "else":
    		in.else_()
    	case "endif":
    		in.endif()
    	case "ifdef":
    		in.ifdef(true)
    	case "ifndef":
    		in.ifdef(false)
    	case "include":
    		in.include()
    	case "line":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // the given type-parameterized test case are defined in.  The exact
    // name of the namespace is subject to change without notice.
    # define GTEST_CASE_NAMESPACE_(TestCaseName) \
      gtest_case_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Expands to the name of the variable used to remember the names of
    // the defined tests in the given test case.
    # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/kernels/internal/compatibility_macros.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_KERNELS_INTERNAL_COMPATIBILITY_MACROS_H_
    
    #ifndef TFLITE_ABORT
    #define TFLITE_ABORT abort()
    #endif
    
    #ifndef TFLITE_ASSERT_FALSE
    #if defined(NDEBUG)
    #define TFLITE_ASSERT_FALSE (static_cast<void>(0))
    #else
    #define TFLITE_ASSERT_FALSE TFLITE_ABORT
    #endif
    #endif
    
    #ifndef TFLITE_DCHECK
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    	{{define "T1"}}ONE{{end}}
    	{{define "T2"}}TWO{{end}}
    	{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
    	{{template "T3"}}
    
    This defines two templates, T1 and T2, and a third T3 that invokes the other two
    when it is executed. Finally it invokes T3. If executed this template will
    produce the text
    
    	ONE TWO
    
    By construction, a template may reside in only one association. If it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PreprocessingTool.java

        /**
         * The set of preprocessor macros to define when compiling this binary.
         */
        Map<String, String> getMacros();
    
        /**
         * Defines a named preprocessor macros to use when compiling this binary.
         * The macro will be supplied to the compiler as '-D name'.
         */
        void define(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/textflag.h

    #define DUPOK	2
    // Don't insert stack check preamble.
    #define NOSPLIT	4
    // Put this data in a read-only section.
    #define RODATA	8
    // This data contains no pointers.
    #define NOPTR	16
    // This is a wrapper function and should not count as disabling 'recover'.
    #define WRAPPER 32
    // This function uses its incoming context register.
    #define NEEDCTXT 64
    // Allocate a word of thread local storage and store the offset from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top