Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,052 for exportId (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tests/integration/pilot/testdata/mcs-serviceexport-crd.yaml

                  type: string
                metadata:
                  type: object
                status:
                  description: status describes the current state of an exported service.
                    Service configuration comes from the Service that had the same name
                    and namespace as this ServiceExport. Populated by the multi-cluster
                    service implementation's controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/link/internal/ld/deadcode.go

    		names = append(names, objabi.PathToPrefix(*flagPluginPath)+"..inittask", objabi.PathToPrefix(*flagPluginPath)+".main", "go:plugin.tabs")
    
    		// We don't keep the go.plugin.exports symbol,
    		// but we do keep the symbols it refers to.
    		exportsIdx := d.ldr.Lookup("go:plugin.exports", 0)
    		if exportsIdx != 0 {
    			relocs := d.ldr.Relocs(exportsIdx)
    			for i := 0; i < relocs.Count(); i++ {
    				d.mark(relocs.At(i).Sym(), 0)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top