Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unknownfile (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	var unknownField *cbor.UnknownFieldError
    	if errors.As(err, &unknownField) {
    		// Unlike JSON, there are no strict errors in CBOR for duplicate map keys. CBOR maps
    		// with duplicate keys are considered invalid according to the spec and are rejected
    		// entirely.
    		return runtime.NewStrictDecodingError([]error{unknownField}), modes.DecodeLax.Unmarshal(data, into)
    	}
    	return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/internal/trace/summary.go

    		"Unknown time":           s.UnknownTime(),
    	}
    	for reason, dt := range s.BlockTimeByReason {
    		stats["Block time ("+reason+")"] += dt
    	}
    	// N.B. Don't include RangeTime or TotalTime; they overlap with these other
    	// stats.
    	return stats
    }
    
    // UnknownTime returns whatever isn't accounted for in TotalTime.
    func (s GoroutineExecStats) UnknownTime() time.Duration {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top