Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for writerPCs (0.22 sec)

  1. cmd/erasure-object.go

    			inlineBuffers[i] = bytes.NewBuffer(buf[:0])
    			defer grid.PutByteBuffer(buf)
    			writers[i] = newStreamingBitrotWriterBuffer(inlineBuffers[i], DefaultBitrotAlgorithm, erasure.ShardSize())
    		}
    	}
    
    	n, erasureErr := erasure.Encode(ctx, data, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if erasureErr != nil {
    		return ObjectInfo{}, toObjectErr(erasureErr, minioMetaBucket, key)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	// code).
    
    	// Wrap the writer in a bufio Writer if it's not already buffered.
    	// Don't always call NewWriter, as that forces a bytes.Buffer
    	// and other small bufio Writers to have a minimum 4k buffer
    	// size.
    	var bw *bufio.Writer
    	if _, ok := w.(io.ByteWriter); !ok {
    		bw = bufio.NewWriter(w)
    		w = bw
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	ELF32HDRSIZE  = 52
    	ELF32PHDRSIZE = 32
    	ELF32SHDRSIZE = 40
    	ELF32SYMSIZE  = 16
    	ELF32RELSIZE  = 8
    )
    
    /*
     * The interface uses the 64-bit structures always,
     * to avoid code duplication.  The writers know how to
     * marshal a 32-bit representation from the 64-bit structure.
     */
    
    var elfstrdat, elfshstrdat []byte
    
    /*
     * Total amount of space to reserve at the start of the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        TF_Int32Tensor:$flush_millis,
        TF_StrTensor:$filename_suffix
      );
    
      let results = (outs);
    }
    
    def TF_FlushSummaryWriterOp : TF_Op<"FlushSummaryWriter", []> {
      let summary = "Flushes the writer's unwritten events.";
    
      let description = [{
    writer: A handle to the summary writer resource.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/testing/testing.go

    func Init() {
    	if initRan {
    		return
    	}
    	initRan = true
    	// The short flag requests that tests run more quickly, but its functionality
    	// is provided by test writers themselves. The testing package is just its
    	// home. The all.bash installation script sets it to make installation more
    	// efficient, but by default the flag is off so a plain "go test" will do a
    	// full test of the package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top