Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 417 for readLog (0.23 sec)

  1. src/internal/trace/raw/textreader.go

    	spec := r.specs[ev]
    	args, err := readArgs(line, spec.Args)
    	if err != nil {
    		return Event{}, fmt.Errorf("reading args for %s: %v", evStr, err)
    	}
    	if spec.IsStack {
    		len := int(args[1])
    		for i := 0; i < len; i++ {
    			line, err := r.nextLine()
    			if err == io.EOF {
    				return Event{}, fmt.Errorf("unexpected EOF while reading stack: args=%v", args)
    			}
    			if err != nil {
    				return Event{}, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/StdInStream.java

            synchronized (lock) {
                waitForContent();
                if (readPos != buffer.length) {
                    int count = Math.min(length, buffer.length - readPos);
                    System.arraycopy(buffer, readPos, dest, offset, count);
                    readPos += count;
                    return count;
                } else {
                    // Closed
                    return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/ops/variable_ops.cc

      ImmediateOpPtr read_op(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(read_op->Reset("ReadVariableOp", nullptr));
      TF_RETURN_IF_ERROR(read_op->SetAttrType("dtype", dtype));
      TF_RETURN_IF_ERROR(read_op->AddInput(variable_handle));
    
      AbstractTensorHandle* value = nullptr;
      int num_retvals = 1;
      TF_RETURN_IF_ERROR(
          read_op->Execute(absl::MakeSpan(&value, num_retvals), &num_retvals));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 11:28:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. cmd/metrics-v3-cache.go

    		cachevalue.Opts{ReturnLastGood: true},
    		loadHealth,
    	)
    }
    
    func getDiffStats(initialStats, currentStats madmin.DiskIOStats) madmin.DiskIOStats {
    	return madmin.DiskIOStats{
    		ReadIOs:      currentStats.ReadIOs - initialStats.ReadIOs,
    		WriteIOs:     currentStats.WriteIOs - initialStats.WriteIOs,
    		ReadSectors:  currentStats.ReadSectors - initialStats.ReadSectors,
    		WriteSectors: currentStats.WriteSectors - initialStats.WriteSectors,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_logs.go

    	"io"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/cri-client/pkg/logs"
    	"k8s.io/klog/v2"
    )
    
    // ReadLogs read the container log and redirect into stdout and stderr.
    // Note that containerID is only needed when following the log, or else
    // just pass in empty string "".
    func (m *kubeGenericRuntimeManager) ReadLogs(ctx context.Context, path, containerID string, apiOpts *v1.PodLogOptions, stdout, stderr io.Writer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/image/gif/reader.go

    func (b *blockReader) close() error {
    	if b.err == io.EOF {
    		// A clean block-sequence terminator was encountered while reading.
    		return nil
    	} else if b.err != nil {
    		// Some other error was encountered while reading.
    		return b.err
    	}
    
    	if b.i == b.j {
    		// We reached the end of a sub block reading LZW data. We'll allow at
    		// most one more sub block of data with a length of 1 byte.
    		b.fill()
    		if b.err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

                                                      *global_tensor.getValue());
          args_to_erase.set(val.getArgNumber());
          for (auto read_op : read_variable_ops_to_erase) {
            read_op.getResult().replaceAllUsesWith(const_op.getResult());
            read_op.erase();
          }
        }
        // As the other uses are call operations, we simply remove the arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/internal/trace/batch.go

    	gen, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch gen: %w", err)
    	}
    	m, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch M ID: %w", err)
    	}
    	ts, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch timestamp: %w", err)
    	}
    
    	// Read in the size of the batch to follow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/testsupport.go

    		cdr, err = decodecounter.NewCounterDataReader(cdf, cf)
    		if err != nil {
    			return fmt.Errorf("reading counter data file %s: %s", cdf, err)
    		}
    		var data decodecounter.FuncPayload
    		for {
    			ok, err := cdr.NextFunc(&data)
    			if err != nil {
    				return fmt.Errorf("reading counter data file %s: %v", cdf, err)
    			}
    			if !ok {
    				break
    			}
    
    			// NB: sanity check on pkg and func IDs?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/math/rand/rand.go

    	switch src := r.src.(type) {
    	case *lockedSource:
    		return src.read(p, &r.readVal, &r.readPos)
    	case *runtimeSource:
    		return src.read(p, &r.readVal, &r.readPos)
    	}
    	return read(p, r.src, &r.readVal, &r.readPos)
    }
    
    func read(p []byte, src Source, readVal *int64, readPos *int8) (n int, err error) {
    	pos := *readPos
    	val := *readVal
    	rng, _ := src.(*rngSource)
    	for n = 0; n < len(p); n++ {
    		if pos == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top