Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 221 for Boundary (0.72 sec)

  1. docs/changelogs/changelog_4x.md

            val part = multipartReader.nextPart() ?: break
            process(part.headers, part.body)
          }
        }
        ```
    
     *  New: `MediaType.parameter()` gets a parameter like `boundary` from a media type like
        `multipart/mixed; boundary="abc"`.
    
     *  New: `Authenticator.JAVA_NET_AUTHENTICATOR` forwards authentication requests to
        `java.net.Authenticator`. This obsoletes `JavaNetAuthenticator` in the `okhttp-urlconnection`
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/net/http/response_test.go

    Connection: close
    Content-Type: multipart/byteranges; boundary=18a75608c8f47cef
    
    some body`,
    		Response{
    			Status:     "206 Partial Content",
    			StatusCode: 206,
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Request:    dummyReq("GET"),
    			Header: Header{
    				"Content-Type": []string{"multipart/byteranges; boundary=18a75608c8f47cef"},
    			},
    			Close:         true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/cse.go

    					if w.Pos.IsStmt() == src.PosIsStmt {
    						// about to lose a statement marker, w
    						// w is an input to v; if they're in the same block
    						// and the same line, v is a good-enough new statement boundary.
    						if w.Block == v.Block && w.Pos.Line() == v.Pos.Line() {
    							v.Pos = v.Pos.WithIsStmt()
    							w.Pos = w.Pos.WithNotStmt()
    						} // TODO and if this fails?
    					}
    					v.SetArg(i, x)
    					rewrites++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/coverage/decodecounter/decodecounterfile.go

    	// Read string table and args.
    	if err := cdr.readStringTable(); err != nil {
    		return err
    	}
    	if err := cdr.readArgs(); err != nil {
    		return err
    	}
    	// Seek past any padding to bring us up to a 4-byte boundary.
    	if of, err := cdr.mr.Seek(0, io.SeekCurrent); err != nil {
    		return err
    	} else {
    		rem := of % 4
    		if rem != 0 {
    			pad := 4 - rem
    			if _, err := cdr.mr.Seek(pad, io.SeekCurrent); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/address.go

    	//   doesn't mean 0.0.0.0/0 or ::/0
    	//
    	// - The kernel form appends leading bytes to the prefix field
    	//   to make the <length, prefix> tuple to be conformed with
    	//   the routing message boundary
    	l := int(b[0])
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		// On Darwin, an address in the kernel form is also
    		// used as a message filler.
    		if l == 0 || len(b) > roundup(l) {
    			l = roundup(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util.cc

      }
    
      for (const XlaOutputDescription& descr : compilation_result->outputs) {
        if (descr.type == DT_VARIANT) {
          return errors::Unimplemented(
              "Support for TensorList crossing the XLA/TF boundary "
              "is not implemented");
        }
      }
    
      std::vector<TensorShape> output_tensor_shapes;
      output_tensor_shapes.reserve(ctx->num_outputs());
      if (output.on_host_shape().is_dynamic()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  7. src/internal/profile/merge.go

    }
    
    // key generates encoded strings of Mapping to be used as a key for
    // maps.
    func (m *Mapping) key() mappingKey {
    	// Normalize addresses to handle address space randomization.
    	// Round up to next 4K boundary to avoid minor discrepancies.
    	const mapsizeRounding = 0x1000
    
    	size := m.Limit - m.Start
    	size = size + mapsizeRounding - 1
    	size = size - (size % mapsizeRounding)
    	key := mappingKey{
    		size:   size,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  8. src/archive/tar/reader.go

    		paxHdrs[paxGNUSparseMap] = strings.Join(sparseMap, ",")
    	}
    	return paxHdrs, nil
    }
    
    // readHeader reads the next block header and assumes that the underlying reader
    // is already aligned to a block boundary. It returns the raw block of the
    // header in case further processing is required.
    //
    // The err will be set to io.EOF only when one of the following occurs:
    //   - Exactly 0 bytes are read and EOF is hit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      while (!ops_to_process.empty()) {
        for (Operation* op : ops_to_process) {
          if (predecessors) {
            for (Value operand : op->getOperands()) {
              // Stop at the block boundary.
              if (mlir::isa<BlockArgument>(operand)) continue;
    
              Operation* predecessor = operand.getDefiningOp();
              if (!operations->contains(predecessor) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/a.out.go

    	BRANCH   = 1 << 3
    	LOAD     = 1 << 4
    	FCMP     = 1 << 5
    	SYNC     = 1 << 6
    	LIST     = 1 << 7
    	FOLL     = 1 << 8
    	NOSCHED  = 1 << 9
    	PFX_X64B = 1 << 10 // A prefixed instruction crossing a 64B boundary
    )
    
    // Values for use in branch instruction BC
    // BC B0,BI,label
    // BO is type of branch + likely bits described below
    // BI is CR value + branch type
    // ex: BEQ CR2,label is BC 12,10,label
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top