Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for Macro (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.h

    }  // namespace mlir
    
    // TODO(b/131258166): TensorFlow's mutex.h defines a `mutex_lock` macro, whose
    // purpose is to catch bug on `tensorflow::mutex_lock`. We don't use
    // `tensorflow::mutex_lock` here but we have ops (`tf.MutexLock` and
    // `tf.ConsumeMutexLock`) with getter methods named as `mutex_lock()`. Need to
    // undefine here to avoid expanding the getter symbol as macro when including
    // both mutex.h and this header file.
    #undef mutex_lock
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

                    linker.args "/DEBUG"
                }
            }
        }
    }
    // end::compiler-args[]
    
    // tag::all-shared-libraries[]
    // For any shared library binaries built with Visual C++,
    // define the DLL_EXPORT macro
    model {
        binaries {
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    cCompiler.define "DLL_EXPORT"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/UnresolvableMacro.java

     * limitations under the License.
     */
    
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import org.gradle.language.nativeplatform.internal.IncludeType;
    
    /**
     * A macro function whose body cannot be resolved.
     */
    public class UnresolvableMacro extends AbstractMacro {
        public UnresolvableMacro(String name) {
            super(name);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/MacroFunction.java

     * limitations under the License.
     */
    
    package org.gradle.language.nativeplatform.internal;
    
    import java.util.List;
    
    /**
     * A 'function-like' macro definition.
     */
    public interface MacroFunction {
        String getName();
        int getParameterCount();
    
        Expression evaluate(List<Expression> arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 882 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // created. The opened file is placed in 'os' and the path of the file used is
    // placed in 'filepath'.
    //
    // If the TF_DUMP_GRAPH_PREFIX environment variable is kCrashReproducerStdErr,
    // then the LOG(INFO) macro is used instead.
    //
    // This will create a file name via prefixing `name` with the value of the
    // TF_DUMP_GRAPH_PREFIX environment variable if `dirname` is empty and
    // suffixing `name` with ".mlir".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

                sources {
                    cpp.lib library: "hello"
                }
            }
            hello(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
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/UnresolvableMacroFunction.java

    import org.gradle.language.nativeplatform.internal.Expression;
    import org.gradle.language.nativeplatform.internal.IncludeType;
    
    import java.util.List;
    
    /**
     * A macro function whose body cannot be resolved.
     */
    public class UnresolvableMacroFunction extends AbstractMacroFunction {
        private static final SimpleExpression UNRESOLVED_EXPRESSION = new SimpleExpression(null, IncludeType.OTHER);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. .gitattributes

    *.htm           text diff=html
    *.html          text diff=html
    *.java          text diff=java
    *.sh            text eol=lf
    
    
    # These files are binary and should be left untouched
    # (binary is a macro for -text -diff)
    *.a             binary
    *.lib           binary
    *.icns          binary
    *.png           binary
    *.jpg           binary
    *.jpeg          binary
    *.gif           binary
    *.ico           binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    			//
    			// Quoting from
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			//
    			// To test for the presence of a field, the boolean-valued macro has(e.f) can be used.
    			//
    			// 2. If e evaluates to a message and f is not a declared field for the message,
    			// has(e.f) raises a no_such_field error.
    			name:                 "has(Object{}), de-sugared, compile error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_macros.h

    #endif  // _WIN32
    #endif  // SWIG
    
    // TF_Bool is the C API typedef for unsigned char, while TF_BOOL is
    // the datatype for boolean tensors.
    #ifndef TF_Bool
    #define TF_Bool unsigned char
    #endif  // TF_Bool
    
    // Macro used to calculate struct size for maintaining ABI stability across
    // different struct implementations.
    #ifndef TF_OFFSET_OF_END
    #define TF_OFFSET_OF_END(TYPE, MEMBER) \
      (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top