Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for go_export (0.36 sec)

  1. src/go/internal/gccgoimporter/importer.go

    	if err == nil {
    		sec := ef.Section(".go_export")
    		if sec == nil {
    			err = fmt.Errorf("%s: .go_export section not found", fpath)
    			return
    		}
    		reader = sec.Open()
    		return
    	}
    
    	xf, err := xcoff.NewFile(objreader)
    	if err == nil {
    		sdat := xf.CSect(".go_export")
    		if sdat == nil {
    			err = fmt.Errorf("%s: .go_export section not found", fpath)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/go/internal/work/action.go

    // .go_export section.
    func readpkglist(shlibpath string) (pkgs []*load.Package) {
    	var stk load.ImportStack
    	if cfg.BuildToolchainName == "gccgo" {
    		f, err := elf.Open(shlibpath)
    		if err != nil {
    			base.Fatal(fmt.Errorf("failed to open shared library: %v", err))
    		}
    		defer f.Close()
    		sect := f.Section(".go_export")
    		if sect == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    		// If cgo-exported, add the definition ABI to the cgo
    		// pragmas.
    		cgoExport := cgoExports[symName]
    		for _, pprag := range cgoExport {
    			// The export pragmas have the form:
    			//
    			//   cgo_export_* <local> [<remote>]
    			//
    			// If <remote> is omitted, it's the same as
    			// <local>.
    			//
    			// Expand to
    			//
    			//   cgo_export_* <local> <remote> <ABI>
    			if len(*pprag) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *--------------------------------------------------------------------*/
    CU_EXPORT void CU_set_suite_start_handler(CU_SuiteStartMessageHandler pSuiteStartMessage);
    /**< Sets the message handler to call before each suite is run. */
    CU_EXPORT void CU_set_test_start_handler(CU_TestStartMessageHandler pTestStartMessage);
    /**< Sets the message handler to call before each test is run. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     */
    
    CU_EXPORT void CU_trim_left(char *szString);
    /**<
     *  Trims leading whitespace from the specified string.
     *  @param szString  The string to trim.
     */
    
    CU_EXPORT void CU_trim_right(char *szString);
    /**< 
     *  Trims trailing whitespace from the specified string.
     *  @param szString  The string to trim.
     */
    
    CU_EXPORT void CU_trim(char *szString);
    /**< 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *          CUE_NOSUITE - pSuite was NULL.
     *          CUE_NOTEST  - pTest was NULL.
     */
    
    CU_EXPORT void CU_basic_set_mode(CU_BasicRunMode mode);
    /**< Sets the run mode for the basic interface.
     *  @param mode The new CU_BasicRunMode for subsequent test
     *              runs using the basic interface.
     */
    
    CU_EXPORT CU_BasicRunMode CU_basic_get_mode(void);
    /**< Retrieves the current run mode for the basic interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  @see CU_get_registry
     *  @see CU_set_registry
     */
    
    CU_EXPORT CU_BOOL CU_registry_initialized(void);
    /**<
     *  Checks whether the test registry has been initialized.
     *
     *  @return  CU_TRUE if the registry has been initialized,
     *           CU_FALSE otherwise.
     *  @see CU_initialize_registry
     *  @see CU_cleanup_registry
     */
    
    CU_EXPORT 
    CU_pSuite CU_add_suite(const char *strName, 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

    from tensorflow.python.trackable import autotrackable
    from tensorflow.python.util import tf_export
    
    # Type aliases for quant_opts_pb2 messages.
    _QuantizationOptions = tf_export.tf_export(
        'quantization.experimental.QuantizationOptions'
    )(quant_opts_pb2.QuantizationOptions)
    
    _QuantizationMethod = tf_export.tf_export(
        'quantization.experimental.QuantizationMethod'
    )(quant_opts_pb2.QuantizationMethod)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top