Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for Store2 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status GetInputOutputNodes(
          const std::unordered_map<string, Node*>& node_name_map,
          std::unordered_set<const Node*>* nodes);
    
      // The input graph with backedges removed. The removed backedges are stored
      // in the back_edge_helper.
      BackEdgeHelper back_edge_helper_;
      // A map between node and output index, for each backedge.
      absl::flat_hash_map<const Node*, int> back_edge_node_output_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // errors.
    //
    // This information can be retrieved using debug.ReadBuildInfo.
    //
    // Note that the GoVersion field is not set here to avoid encoding it twice.
    // It is stored separately in the binary, mostly for historical reasons.
    func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {
    	setPkgErrorf := func(format string, args ...any) {
    		if p.Error == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	return (ctxt.IsARM() || ctxt.IsPPC64() || (ctxt.IsARM64() && ctxt.IsDarwin())) && ctxt.IsExternal()
    }
    
    // On Wasm, we reserve 4096 bytes for zero page, then 8192 bytes for wasm_exec.js
    // to store command line args and environment variables.
    // Data sections starts from at least address 12288.
    // Keep in sync with wasm_exec.js.
    const wasmMinDataAddr = 4096 + 8192
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    func setRowsCloseHook(fn func(*Rows, *error)) {
    	if fn == nil {
    		// Can't change an atomic.Value back to nil, so set it to this
    		// no-op func instead.
    		fn = func(*Rows, *error) {}
    	}
    	atomicRowsCloseHook.Store(fn)
    }
    
    // Test issue 6651
    func TestIssue6651(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	var v string
    
    	want := "error in rows.Next"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    //
    //	fromM49[m49Index[msb39(code)]:m49Index[msb3(code)+1]]
    //
    // for an entry where the first 7 bits match the 7 lsb of the UN.M49 code.
    // The region code is stored in the 9 lsb of the indexed value.
    // Size: 18 bytes, 9 elements
    var m49Index = [9]int16{
    	0, 59, 108, 143, 181, 220, 259, 291,
    	333,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    $IBASE/istio-control/istio-discovery \ --set policy.enable=false \ --set global.istioNamespace=istio-master ``` ### Gateways A cluster may use multiple Gateways, each with a different load balancer IP, domains and certificates. Since the domain certificates are stored in the gateway namespace, it is recommended to keep each gateway in a dedicated namespace and restrict access. For large-scale gateways it is optionally possible to use a dedicated pilot in the gateway namespace. ### Additional test templates A number...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top