Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for igloader (0.3 sec)

  1. src/cmd/link/internal/ld/data.go

    		atomic.AddUint32(&ldr.SymSect(s).Relcount, uint32(nExtReloc))
    	}
    }
    
    // Convert a Go relocation to an external relocation.
    func extreloc(ctxt *Link, ldr *loader.Loader, s loader.Sym, r loader.Reloc) (loader.ExtReloc, bool) {
    	var rr loader.ExtReloc
    	target := &ctxt.Target
    	siz := int32(r.Siz())
    	if siz == 0 { // informational relocation - no work to do
    		return rr, false
    	}
    
    	rt := r.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	dateFormat = "2006-01-02"
    	// TODO(rfindley): use dateFormat throughout.
    )
    
    // uploadReportDate returns the date component of the upload file name, or "" if the
    // date was unmatched.
    func (u *uploader) uploadReportDate(fname string) time.Time {
    	match := dateRE.FindStringSubmatch(fname)
    	if match == nil || len(match) < 2 {
    		u.logger.Printf("malformed report name: missing date: %q", filepath.Base(fname))
    		return time.Time{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/deadcode.go

    func (d *deadcodePass) decodeGenericIfaceMethod(ldr *loader.Loader, symIdx loader.Sym) string {
    	return ldr.DataString(symIdx)
    }
    
    func (d *deadcodePass) decodetypeMethods(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym, relocs *loader.Relocs) []methodsig {
    	p := ldr.Data(symIdx)
    	if !decodetypeHasUncommon(arch, p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        private static final Loader SKIP_INSTRUMENTATION = new Loader();
        private final ConcurrentMap<ProtectionDomain, Loader> loaders;
        private final TransformedClassPath classPath;
        private volatile boolean closed;
    
        public TransformReplacer(TransformedClassPath classPath) {
            this.loaders = new ConcurrentHashMap<ProtectionDomain, Loader>();
            this.classPath = classPath;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/wrap_converter.py

      """Wraps RegisterCustomOpdefs with lazy loader."""
      return _pywrap_converter_api.RegisterCustomOpdefs(custom_opdefs_list)
    
    
    def wrapped_retrieve_collected_errors():
      """Wraps RetrieveCollectedErrors with lazy loader."""
      return _pywrap_converter_api.RetrieveCollectedErrors()
    
    
    def wrapped_flat_buffer_file_to_mlir(model, input_is_filepath):
      """Wraps FlatBufferFileToMlir with lazy loader."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

        @Nullable
        @Override
        public byte[] transform(
            @Nullable ClassLoader loader,
            @Nullable String className,
            @Nullable Class<?> classBeingRedefined,
            @Nullable ProtectionDomain protectionDomain,
            byte[] classfileBuffer
        ) {
            if (!(loader instanceof InstrumentingClassLoader)) {
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

        }
    
        /**
         * TODO (KT-68186): This is a workaround for [KT-68186](https://youtrack.jetbrains.com/issue/KT-68186). We cannot rely on the
         * application's class loader for now, so we have to use the configured class loader manually.
         */
        fun registerApplicationServices(application: MockApplication, pluginRelativePath: String, classLoader: ClassLoader) {
            registerServices(
                application,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    package configstore
    
    import (
    	"os/exec"
    	"syscall"
    
    	"golang.org/x/sys/windows"
    )
    
    func init() {
    	needNoConsole = needNoConsoleWindows
    }
    
    func needNoConsoleWindows(cmd *exec.Cmd) {
    	// The uploader main process is likely a daemonized process with no console.
    	// (see x/telemetry/start_windows.go) The console creation behavior when
    	// a parent is a console process without console is not clearly documented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeWorkGraphPreparer.kt

        private val cache: BuildTreeConfigurationCache
    ) : BuildTreeWorkGraphPreparer {
        override fun prepareToScheduleTasks(workGraph: BuildTreeWorkGraph.Builder) {
            if (!cache.isLoaded) {
                delegate.prepareToScheduleTasks(workGraph)
            } // else, not required
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // This file contains the module-mode package loader, as well as some accessory
    // functions pertaining to the package import graph.
    //
    // There are two exported entry points into package loading — LoadPackages and
    // ImportFromFiles — both implemented in terms of loadFromRoots, which itself
    // manipulates an instance of the loader struct.
    //
    // Although most of the loading state is maintained in the loader struct,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top