Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for namebuf (0.46 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<BufferOffset<tflite::TensorMap>> result;
      for (const auto& item : items) {
        auto name_buf = builder_.CreateString(item.first);
        tflite::TensorMapBuilder tensor_map_builder(builder_);
        tensor_map_builder.add_name(name_buf);
        tensor_map_builder.add_tensor_index(
            tensor_index_map_[subgraph_index][item.second]);
        result.push_back(tensor_map_builder.Finish());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	// the Trailer response header when the response header is
    	// written.
    	trailers []string
    
    	handlerDone atomic.Bool // set true when the handler exits
    
    	// Buffers for Date, Content-Length, and status code
    	dateBuf   [len(TimeFormat)]byte
    	clenBuf   [10]byte
    	statusBuf [3]byte
    
    	// closeNotifyCh is the channel returned by CloseNotify.
    	// TODO(bradfitz): this is currently (for Go 1.8) always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		tt := (*interfaceType)(unsafe.Pointer(v.typ()))
    		if uint(i) >= uint(len(tt.Methods)) {
    			panic("reflect: internal error: invalid method index")
    		}
    		m := &tt.Methods[i]
    		if !tt.nameOff(m.Name).IsExported() {
    			panic("reflect: " + op + " of unexported method")
    		}
    		iface := (*nonEmptyInterface)(v.ptr)
    		if iface.itab == nil {
    			panic("reflect: " + op + " of method on nil interface value")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top