Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for Macro (0.08 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeWithMacroFunctionCallExpression.java

    import org.gradle.language.nativeplatform.internal.Expression;
    import org.gradle.language.nativeplatform.internal.IncludeType;
    
    import java.util.List;
    
    /**
     * An #include directive whose body is a macro function call.
     */
    public class IncludeWithMacroFunctionCallExpression extends AbstractInclude {
        private final String name;
        private final boolean isImport;
        private final ImmutableList<Expression> arguments;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    #ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_
    #define GTEST_INCLUDE_GTEST_GTEST_PROD_H_
    
    // When you need to test the private or protected members of a class,
    // use the FRIEND_TEST macro to declare your tests as friends of the
    // class.  For example:
    //
    // class MyClass {
    //  private:
    //   void MyMethod();
    //   FRIEND_TEST(MyClassTest, MyMethod);
    // };
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. WORKSPACE

    # The cascade of load() statements and tf_workspace?() calls works around the
    # restriction that load() statements need to be at the top of .bzl files.
    # E.g. we can not retrieve a new repository with http_archive and then load()
    # a macro from that repository in the same file.
    load("@//tensorflow:workspace3.bzl", "tf_workspace3")
    
    tf_workspace3()
    
    load("@//tensorflow:workspace2.bzl", "tf_workspace2")
    
    tf_workspace2()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/MacroWithComplexExpression.java

    import org.gradle.language.nativeplatform.internal.Expression;
    import org.gradle.language.nativeplatform.internal.IncludeType;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * An "object-like" macro #define whose body is an expression with arguments.
     */
    public class MacroWithComplexExpression extends AbstractMacro {
        private final IncludeType type;
        private final String value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    #ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_
    #define GTEST_INCLUDE_GTEST_GTEST_PROD_H_
    
    // When you need to test the private or protected members of a class,
    // use the FRIEND_TEST macro to declare your tests as friends of the
    // class.  For example:
    //
    // class MyClass {
    //  private:
    //   void MyMethod();
    //   FRIEND_TEST(MyClassTest, MyMethod);
    // };
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "@", unescapable: true},
    		{unescaped: "1up", unescapable: true},
    		{unescaped: "👑", unescapable: true},
    		// CEL macro and function names do not need to be escaped because the parser keeps identifiers in a
    		// different namespace than function and  macro names.
    		{unescaped: "has", escaped: "has"},
    		{unescaped: "all", escaped: "all"},
    		{unescaped: "exists", escaped: "exists"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/auth/netrc.go

    			case "machine":
    				l = netrcLine{machine: f[i+1]}
    			case "default":
    				break
    			case "login":
    				l.login = f[i+1]
    			case "password":
    				l.password = f[i+1]
    			case "macdef":
    				// “A macro is defined with the specified name; its contents begin with
    				// the next .netrc line and continue until a null line (consecutive
    				// new-line characters) is encountered.”
    				inMacro = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/ReturnFixedValueMacroFunction.java

    import org.gradle.language.nativeplatform.internal.Expression;
    import org.gradle.language.nativeplatform.internal.IncludeType;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * A macro function that returns a fixed expression and ignores its parameters.
     */
    public class ReturnFixedValueMacroFunction extends AbstractMacroFunction implements Expression {
        private final String value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/c/kernels/summary_op_benchmark_test.cc

                      .Input(test::graph::Constant(g, tags))
                      .Input(test::graph::Constant(g, values))
                      .Attr("T", DT_FLOAT)
                      .Finalize(g, &ret));
      return g;
    }
    
    // Macro used to parse initializer list for tensorshape
    #define DIMARGS(...) \
      { __VA_ARGS__ }
    // // Random parameters for testing
    constexpr char longTagParam[] = "LONGTAG____________________________";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 25 00:59:20 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/test.cc

    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //    TFCOMPILE_NAME      : Name for tests and benchmarks.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_test rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top