Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for tf_export (0.13 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

    } CU_ErrorAction;
    
    /* Error handling & reporting functions. */
    
    #include "CUnit.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT CU_ErrorCode   CU_get_error(void);
    /**<
     *  Retrieves the current CUnit framework error code.
     *  CUnit implementation functions set the error code to indicate the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFileTest.groovy

            then:
            normaliseLineSeparators(moduleMapFile.text) == """module foo {
    \tumbrella "${headers.absolutePath}"
    \tumbrella "${moreHeaders.absolutePath}"
    \texport *
    }
    """
        }
    
        def "does not include non-existent directories"() {
            def moduleMapFile = new File(tempDir, "module.modulemap")
            def headers = new File(tempDir, 'headers').tap { mkdirs() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/ar.go

    	}
    
    	for _, mem := range arch.Members {
    		f, err := arch.GetFile(mem.Name)
    		if err != nil {
    			return nil, err
    		}
    		sdat := f.CSect(".go_export")
    		if sdat != nil {
    			return bytes.NewReader(sdat), nil
    		}
    	}
    
    	return nil, fmt.Errorf(".go_export not found in this archive")
    }
    
    // readerAtFromSeeker turns an io.ReadSeeker into an io.ReaderAt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/escapeinfo.go

    // Test case for escape info in export data. To compile and extract .gox file:
    // gccgo -fgo-optimize-allocs -c escapeinfo.go
    // objcopy -j .go_export escapeinfo.o escapeinfo.gox
    
    package escapeinfo
    
    type T struct{ data []byte }
    
    func NewT(data []byte) *T {
    	return &T{data}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 19:41:25 UTC 2018
    - 306 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Console.h

     */
    /** @addtogroup Console
     * @{
     */
    
    #ifndef CUNIT_CONSOLE_H_SEEN
    #define CUNIT_CONSOLE_H_SEEN
    
    #include "CUnit.h"
    #include "TestDB.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT void CU_console_run_tests(void);
    /**< Run registered CUnit tests using the console interface. */
    
    #ifdef USE_DEPRECATED_CUNIT_NAMES
    /** Deprecated (version 1). @deprecated Use CU_console_run_tests(). */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #  ifdef CU_DLL
    #    ifdef CU_BUILD_DLL
    #      define CU_EXPORT __declspec(dllexport)
    #    else
    #      define CU_EXPORT __declspec(dllimport)
    #    endif
    #  else
    #    define CU_EXPORT
    #  endif
    #  if _MSC_VER < 1900
    #    define snprintf _snprintf
    #  endif
    #else
    #  define CU_EXPORT
    #endif  /* WIN32 */
    
    #include "CUError.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFile.java

                    return new File(path).exists();
                }
            });
            lines.addAll(collect(validHeaderDirs, path -> "\tumbrella \"" + path + "\""));
            lines.add("\texport *");
            lines.add("}");
            try {
                Files.createParentDirs(moduleMapFile);
                FileUtils.writeLines(moduleMapFile, lines);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. docs/site-replication/gen-oidc-sts-cred.go

    )
    
    func main() {
    	ctx := context.Background()
    
    	endpoint := os.Getenv("MINIO_ENDPOINT")
    	if endpoint == "" {
    		log.Fatalf("Please specify a MinIO server endpoint environment variable like:\n\n\texport MINIO_ENDPOINT=http://localhost:9000")
    	}
    
    	appParams := cmd.OpenIDClientAppParams{
    		ClientID:     "minio-client-app",
    		ClientSecret: "minio-client-app-secret",
    		ProviderURL:  "http://127.0.0.1:5556/dex",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 29 01:27:09 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      void  CU_free(void *ptr, unsigned int uiLine, const char* szFileName);
      void* CU_realloc(void *ptr, size_t size, unsigned int uiLine, const char* szFileName);
      CU_EXPORT void CU_dump_memory_usage(const char*);
    
      /** c-allocate with memory tracking. */
      #define CU_CALLOC(x, y)         CU_calloc((x), (y), __LINE__, __FILE__)
      /** m-allocate with memory tracking. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    #include "tensorflow/core/protobuf/saver.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Suffix string for the module export step. Used for debugging.
    constexpr absl::string_view kExportStepSuffix = "_export";
    
    // Options when running passes for exporting an MLIR ModuleOp.
    struct ExportOptions {
      // If set to `true`, it runs `DuplicateShapeDeterminingConstantsPass` before
      // lowering to tf_executor dialect.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top