Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 818 for exportId (0.89 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    // success, otherwise failure with an error message.
    // The Tensorflow Executor Dialect is required to export an MLIR module to a
    // Tensorflow GraphDef. This API will add control dependencies and verify that
    // the conversion was successful.
    //
    // This also converts the Tensorflow Dialect MLIR into the Tensorflow Executor
    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/java/modules-with-transform/groovy/application/build.gradle

    extraJavaModuleInfo {
        // This does not have to be a complete description (e.g. here 'org.apache.commons.collections' does not export anything here).
        // It only needs to be good enough to work in the context of this application we are building.
        module('commons-beanutils-1.9.4.jar', 'org.apache.commons.beanutils', '1.9.4') {
            exports('org.apache.commons.beanutils')
    
            requires('org.apache.commons.logging')
            requires('java.sql')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/application/build.gradle.kts

    extraJavaModuleInfo {
        // This does not have to be a complete description (e.g. here 'org.apache.commons.collections' does not export anything here).
        // It only needs to be good enough to work in the context of this application we are building.
        module("commons-beanutils-1.9.4.jar", "org.apache.commons.beanutils", "1.9.4") {
            exports("org.apache.commons.beanutils")
    
            requires("org.apache.commons.logging")
            requires("java.sql")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_libinit_windows.c

    // Ensure there's one symbol marked __declspec(dllexport).
    // If there are no exported symbols, the unfortunate behavior of
    // the binutils linker is to also strip the relocations table,
    // resulting in non-PIE binary. The other option is the
    // --export-all-symbols flag, but we don't need to export all symbols
    // and this may overflow the export table (#40795).
    // See https://sourceware.org/bugzilla/show_bug.cgi?id=19011
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcshared/cshared_test.go

    		t.Fatalf("binary.Read failed: %v", err)
    	}
    
    	// Only the two exported functions and _cgo_dummy_export should be exported
    	expectedNumber := uint32(3)
    
    	if exportAllSymbols {
    		if e.NumberOfFunctions <= expectedNumber {
    			t.Fatalf("missing exported functions: %v", e.NumberOfFunctions)
    		}
    		if e.NumberOfNames <= expectedNumber {
    			t.Fatalf("missing exported names: %v", e.NumberOfNames)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    	testcases := []struct {
    		name            string
    		customAttribute string
    		cfgFile         string
    	}{
    		{
    			name:            "grpc exporter",
    			customAttribute: "provider=otel",
    			cfgFile:         otelTracingCfg,
    		},
    		{
    			name:            "http exporter",
    			customAttribute: "provider=otel-http",
    			cfgFile:         otelTracingHTTPCfg,
    		},
    		{
    			name:            "resource detectors",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/go.go

    				nerrors++
    				return
    			}
    
    			// Mark exported symbols and also add them to
    			// the lists used for roots in the deadcode pass.
    			if f[0] == "cgo_export_static" {
    				if ctxt.LinkMode == LinkExternal && !l.AttrCgoExportStatic(s) {
    					// Static cgo exports appear
    					// in the exported symbol table.
    					ctxt.dynexp = append(ctxt.dynexp, s)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/add_functions_for_exported_names.cc

    struct AddFunctionsForExportedNamesPass
        : public impl::AddFunctionsForExportedNamesPassBase<
              AddFunctionsForExportedNamesPass> {
      void runOnOperation() override;
    };
    
    // Set the (array of) exported name(s) of a (public) function to just
    // contain the given string.
    void SetExportedName(func::FuncOp f, StringRef name) {
      OpBuilder b(f);
      f->removeAttr(kTfSavedModelExportedNamesAttr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/syscall/mkpost.go

    	case goarch == "s390x" && goos == "linux":
    		// Export the types of PtraceRegs fields.
    		re := regexp.MustCompile("ptrace(Psw|Fpregs|Per)")
    		s = re.ReplaceAllString(s, "Ptrace$1")
    
    		// Replace padding fields inserted by cgo with blank identifiers.
    		re = regexp.MustCompile("Pad_cgo[A-Za-z0-9_]*")
    		s = re.ReplaceAllString(s, "_")
    
    		// We want to keep the X_ fields that are already consistently exported
    		// for the other linux GOARCH settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.cc

          &source_mgr_, &context_);
    }
    
    //////////// Exporter ////////////
    absl::Status TfLiteExporter::Export(mlir::ModuleOp module) {
      // return absl::OkStatus();
      if (options_.export_runtime_metadata) {
        // Run the cost model for each device/op.
        AttachCostPerDevice(module, options_.target_hardware_backends);
    
        // We will export the runtime metadata with the same name under the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top