Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,261 for strtab (0.13 sec)

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

    	var shstroff uint64
    	if !*FlagS {
    		sh := elfshname(".symtab")
    		sh.Type = uint32(elf.SHT_SYMTAB)
    		sh.Off = uint64(symo)
    		sh.Size = uint64(symSize)
    		sh.Addralign = uint64(ctxt.Arch.RegSize)
    		sh.Entsize = 8 + 2*uint64(ctxt.Arch.RegSize)
    		sh.Link = uint32(elfshname(".strtab").shnum)
    		sh.Info = uint32(elfglobalsymndx)
    
    		sh = elfshname(".strtab")
    		sh.Type = uint32(elf.SHT_STRTAB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. internal/grid/stream.go

    	// If the request context is canceled, the stream will no longer process requests.
    	// Requests sent cannot be used any further by the called.
    	Requests chan<- []byte
    
    	muxID uint64
    	ctx   context.Context
    }
    
    // Send a payload to the remote server.
    func (s *Stream) Send(b []byte) error {
    	if s.Requests == nil {
    		return errors.New("stream does not accept requests")
    	}
    	select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. cmd/metacache-stream.go

    	"github.com/tinylib/msgp/msgp"
    	"github.com/valyala/bytebufferpool"
    )
    
    // metadata stream format:
    //
    // The stream is s2 compressed.
    // https://github.com/klauspost/compress/tree/master/s2#s2-compression
    // This ensures integrity and reduces the size typically by at least 50%.
    //
    // All stream elements are msgpack encoded.
    //
    // 1 Integer, metacacheStreamVersion of the writer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    }
    
    // moduledata records information about the layout of the executable
    // image. It is written by the linker. Any changes here must be
    // matched changes to the code in cmd/link/internal/ld/symtab.go:symtab.
    // moduledata is stored in statically allocated non-pointer memory;
    // none of the pointers here are visible to the garbage collector.
    type moduledata struct {
    	sys.NotInHeap // Only in static data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/internal/abi/symtab.go

    qiulaidongfeng <******@****.***> 1708042529 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Streams.java

      }
    
      /**
       * Returns a {@link Stream} containing the elements of the first stream, followed by the elements
       * of the second stream, and so on.
       *
       * <p>This is equivalent to {@code Stream.of(streams).flatMap(stream -> stream)}, but the returned
       * stream may perform better.
       *
       * @see Stream#concat(Stream, Stream)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/fingerprinting.cc

      {
        // Local scope guarantees coded stream will be trimmed (ensures
        // serialization determinism).
        // Unfortunately the saving process itself isn't deterministic, so the
        // checksum may still change since the saved_model proto may be different.
        StringOutputStream stream(&saved_model_serialized);
        CodedOutputStream output(&stream);
        output.SetSerializationDeterministic(true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_tpu_device.cc

        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
        // destination stream, but when this function returns, the send requests
        // might not be enqueued to the stream yet, we put it on destination stream.
        TensorReference input_reference(*input);
        std::move(return_substream).release();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.cc

    se::Stream* GetStream(OpKernelContext* ctx) {
      return ctx->op_device_context() ? ctx->op_device_context()->stream()
                                      : nullptr;
    }
    
    XlaComputationLaunchContext GetLaunchContext(
        const XlaPlatformInfo& platform_info, OpKernelContext* ctx,
        xla::LocalClient* client, se::DeviceMemoryAllocator* allocator) {
      se::Stream* stream = GetStream(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device.cc

                                           bool* stream_was_changed) {
      if (!(*stream) || !(*stream)->ok()) {
        xla::StreamPool::Ptr ptr;
        TF_ASSIGN_OR_RETURN(ptr, backend->BorrowStream(device_ordinal_));
        *stream = std::shared_ptr<se::Stream>(std::move(ptr));
        VLOG(1) << "XlaDevice " << this << " new " << name
                << " stream=" << (*stream);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top