Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for igloader (0.17 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. guava/src/com/google/common/cache/LocalCache.java

          try {
            stopwatch.start();
            V previousValue = oldValue.get();
            if (previousValue == null) {
              V newValue = loader.load(key);
              return set(newValue) ? futureValue : Futures.immediateFuture(newValue);
            }
            ListenableFuture<V> newValue = loader.reload(key, previousValue);
            if (newValue == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          try {
            stopwatch.start();
            V previousValue = oldValue.get();
            if (previousValue == null) {
              V newValue = loader.load(key);
              return set(newValue) ? futureValue : Futures.immediateFuture(newValue);
            }
            ListenableFuture<V> newValue = loader.reload(key, previousValue);
            if (newValue == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
            converted_model.signatures._signatures.keys(), {signature_key}
        )
        loader = saved_model_loader.SavedModelLoader(
            self._output_saved_model_path_2
        )
        graphdef = loader.get_meta_graph_def_from_tags(tags).graph_def
        self.assertTrue(self._contains_op(graphdef, 'XlaDotV2'))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (!llvm::any_of(op.getResultTypes(), CanBeRefined)) return false;
    
      tensorflow::XlaCallModuleLoader* loader;
      if (auto it = xla_call_module_loaders_.find(op);
          it != xla_call_module_loaders_.end()) {
        loader = it->second.get();
      } else {
        // Lazily parse XlaCallModule's embedded HLO module and cache the loader to
        // avoid repeatedly parsing the module.
    
        std::vector<std::string> disabled_checks;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    					// ImportDir gave us one error, and the module loader gave us another.
    					// We arbitrarily choose to keep the error from ImportDir because
    					// that's what our tests already expect, and it seems to provide a bit
    					// more detail in most cases.
    				} else if errors.Is(r.err, imports.ErrNoGo) {
    					// ImportDir said there were files in the package, but the module
    					// loader said there weren't. Which one is right?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/webcomponents.min.js

    r,o){this.cache[e]=r;for(var i,a=this.pending[e],s=0,c=a.length;s<c&&(i=a[s]);s++)this.onload(e,i,r,n,o),this.tail();this.pending[e]=null},tail:function(){--this.inflight,this.checkDone()},checkDone:function(){this.inflight||this.oncomplete()}},e.Loader=r}),window.HTMLImports.addModule(function(e){var t=function(e){this.addCallback=e,this.mo=new MutationObserver(this.handler.bind(this))};t.prototype={handler:function(e){for(var t,n=0,r=e.length;n<r&&(t=e[n]);n++)"childList"===t.type&&t.addedNode...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

    #include "tensorflow/cc/framework/gradients.h"
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/framework/scope_internal.h"
    #include "tensorflow/cc/ops/while_loop.h"
    #include "tensorflow/cc/saved_model/loader.h"
    #include "tensorflow/core/distributed_runtime/server_lib.h"
    #include "tensorflow/core/framework/logging.h"
    #include "tensorflow/core/framework/op_gen_lib.h"
    #endif  // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// packages in the program (excluding those added at runtime
    	// by package plugin). Run through the modules in dependency
    	// order (the order they are initialized by the dynamic
    	// loader, i.e. they are added to the moduledata linked list).
    	for m := &firstmoduledata; m != nil; m = m.next {
    		doInit(m.inittasks)
    	}
    
    	// Disable init tracing after main init done to avoid overhead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/encoding/json/testdata/code.json.gz

    max_t":1258418412,"mean_t":1258418412},{"name":"alghmac.h","kids":[],"cl_weight":0.01694915254237288,"touches":1,"min_t":1258418412,"max_t":1258418412,"mean_t":1258418412},{"name":"loader.c","kids":[],"cl_weight":0.01694915254237288,"touches":1,"min_t":1258418412,"max_t":1258418412,"mean_t":1258418412},{"name":"loader.h","kids":[],"cl_weight":0.01694915254237288,"touches":1,"min_t":1258418412,"max_t":1258418412,"mean_t":1258418412}],"cl_weight":0.15254237288135594,"touches":1,"min_t":1258418412,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top