Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for findRef (0.25 sec)

  1. src/regexp/testdata/testregex.c

    #ifndef REG_ICASE
    	"ICASE",
    #endif
    #ifndef REG_LEFT
    	"LEFT",
    #endif
    #ifndef REG_LENIENT
    	"LENIENT",
    #endif
    #ifndef REG_LITERAL
    	"LITERAL",
    #endif
    #ifndef REG_MINIMAL
    	"MINIMAL",
    #endif
    #ifndef REG_MULTIPLE
    	"MULTIPLE",
    #endif
    #ifndef REG_MULTIREF
    	"MULTIREF",
    #endif
    #ifndef REG_MUSTDELIM
    	"MUSTDELIM",
    #endif
    #ifndef REG_NEWLINE
    	"NEWLINE",
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_HAS_POSIX_RE
    
    #ifndef GTEST_HAS_EXCEPTIONS
    // The user didn't tell us whether exceptions are enabled, so we need
    // to figure it out.
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS
    // macro to enable exceptions, so we'll do the same.
    // Assumes that exceptions are enabled by default.
    #  ifndef _HAS_EXCEPTIONS
    #   define _HAS_EXCEPTIONS 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_HAS_POSIX_RE
    
    #ifndef GTEST_HAS_EXCEPTIONS
    // The user didn't tell us whether exceptions are enabled, so we need
    // to figure it out.
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS
    // macro to enable exceptions, so we'll do the same.
    // Assumes that exceptions are enabled by default.
    #  ifndef _HAS_EXCEPTIONS
    #   define _HAS_EXCEPTIONS 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    // generated by a different package.
    const builtinExportProlog = `
    #line 1 "cgo-builtin-export-prolog"
    
    #include <stddef.h>
    
    #ifndef GO_CGO_EXPORT_PROLOGUE_H
    #define GO_CGO_EXPORT_PROLOGUE_H
    
    #ifndef GO_CGO_GOSTRING_TYPEDEF
    typedef struct { const char *p; ptrdiff_t n; } _GoString_;
    #endif
    
    #endif
    `
    
    func (p *Package) gccExportHeaderProlog() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    #endif
    	CALL	AX
    
    	// update stackguard after _cgo_init
    	MOVQ	$runtimeĀ·g0(SB), CX
    	MOVQ	(g_stack+stack_lo)(CX), AX
    	ADDQ	$const_stackGuard, AX
    	MOVQ	AX, g_stackguard0(CX)
    	MOVQ	AX, g_stackguard1(CX)
    
    #ifndef GOOS_windows
    	JMP ok
    #endif
    needtls:
    #ifdef GOOS_plan9
    	// skip TLS setup on Plan 9
    	JMP ok
    #endif
    #ifdef GOOS_solaris
    	// skip TLS setup on Solaris
    	JMP ok
    #endif
    #ifdef GOOS_illumos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_FILESYSTEM_INTERFACE_H_
    #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_FILESYSTEM_INTERFACE_H_
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/tf_file_statistics.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_test.cc

      if (use_tfrt) {
        TF_Buffer* buf = TF_NewBuffer();
        TFE_GetExecutedOpNames(ctx, buf, status);
        ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    #ifndef NDEBUG
        if (enable_grappler)
          EXPECT_NE(strstr(static_cast<const char*>(buf->data), "tf.Mul"), nullptr);
        else
          EXPECT_NE(strstr(static_cast<const char*>(buf->data), "tf.Add"), nullptr);
    #endif
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

        ASSERT_GE(op_list.op_size(), 1);
        typedef tensorflow::protobuf::RepeatedPtrField<tensorflow::OpDef> OpDefs;
        const OpDefs& ops = op_list.op();
        bool found = std::find_if(ops.begin(), ops.end(),
                                  [](const tensorflow::OpDef& op_def) {
                                    return op_def.name() == "TestCApi";
                                  }) != ops.end();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_C_API_H_
    #define TENSORFLOW_C_C_API_H_
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_attrtype.h"
    #include "tensorflow/c/tf_buffer.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    // refreshes.
    //
    // This file includes another file, `tf_generated_ops.td`, which contains
    // all ops whose definitions are generated from TensorFlow codebase.
    // Changes made there are not respected.
    
    #ifndef TF_OPS
    #define TF_OPS
    
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "mlir/Interfaces/CallInterfaces.td"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top