Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,243 for strtab (0.11 sec)

  1. src/internal/coverage/decodemeta/decode.go

    	}
    
    	// Read the table itself.
    	d.strtab = stringtab.NewReader(d.r)
    	d.strtab.Read()
    	return nil
    }
    
    func (d *CoverageMetaDataDecoder) PackagePath() string {
    	return d.strtab.Get(d.hdr.PkgPath)
    }
    
    func (d *CoverageMetaDataDecoder) PackageName() string {
    	return d.strtab.Get(d.hdr.PkgName)
    }
    
    func (d *CoverageMetaDataDecoder) ModulePath() string {
    	return d.strtab.Get(d.hdr.ModulePath)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/internal/coverage/decodemeta/decodefile.go

    	if err != nil {
    		return err
    	}
    	if nr != int(r.hdr.StrTabLength) {
    		return fmt.Errorf("error: short read on string table")
    	}
    	slr := slicereader.NewReader(b, false /* not readonly */)
    	r.strtab = stringtab.NewReader(slr)
    	r.strtab.Read()
    
    	if r.debug {
    		fmt.Fprintf(os.Stderr, "=-= read-in header is: %+v\n", *r)
    	}
    
    	return nil
    }
    
    func (r *CoverageMetaFileReader) rdUint64() (uint64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/debug/elf/testdata/multiple-code-sections.c

    // Strip with:
    // strip --only-keep-debug \
    //       --remove-section=.eh_frame \
    //       --remove-section=.eh_frame_hdr \
    //       --remove-section=.shstrtab \
    //       --remove-section=.strtab \
    //       --remove-section=.symtab \
    //       --remove-section=.note.gnu.build-id \
    //       --remove-section=.note.ABI-tag \
    //       --remove-section=.dynamic \
    //       --remove-section=.gnu.hash \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. mockwebserver/src/main/kotlin/mockwebserver3/Stream.kt

     */
    @ExperimentalOkHttpApi
    interface Stream {
      val requestBody: BufferedSource
      val responseBody: BufferedSink
    
      /**
       * Terminate the stream so that no further data is transmitted or received. Note that
       * [requestBody] may return data after this call; that is the buffered data received before this
       * stream was canceled.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    // the exact bytes written to the stream. Zero byte messages are possible.
    const binaryWebSocketProtocol = "binary.k8s.io"
    
    // The WebSocket subprotocol "base64.binary.k8s.io" will only send messages to the
    // client and ignore messages sent to the server. The received messages are
    // a base64 version of the bytes written to the stream. Zero byte messages are
    // possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. test/ken/strvar.go

    Rob Pike <******@****.***> 1330061064 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/symtab.go

    Keith Randall <******@****.***> 1695057198 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_cluster_formation.cc

        FuncOp func, SymbolTableCollection &symbol_table_collection,
        SymbolTable &symtab) {
      auto has_no_compile_device_type = [](SymbolUserOpInterface op) {
        return !op->hasAttr(mlir::TF::kCompileDeviceTypeAttr);
      };
    
      mlir::OpBuilder builder(func.getContext());
      auto noinline_attr_name = absl::StrCat("tf.", tensorflow::kNoInlineAttr);
      llvm::SmallVector<SymbolUserOpInterface> noinline_pcall_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top