Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for num1xx (0.55 sec)

  1. src/net/http/transport.go

    		}
    		is1xx := 100 <= resCode && resCode <= 199
    		// treat 101 as a terminal status, see issue 26161
    		is1xxNonTerminal := is1xx && resCode != StatusSwitchingProtocols
    		if is1xxNonTerminal {
    			num1xx++
    			if num1xx > max1xxResponses {
    				return nil, errors.New("net/http: too many 1xx informational responses")
    			}
    			pc.readLimit = pc.maxHeaderResponseSize() // reset the limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	if statusCode >= 100 && statusCode <= 199 {
    		if f.StreamEnded() {
    			return nil, errors.New("1xx informational response with END_STREAM flag")
    		}
    		cs.num1xx++
    		const max1xxResponses = 5 // arbitrary bound on number of informational responses, same as net/http
    		if cs.num1xx > max1xxResponses {
    			return nil, errors.New("http2: too many 1xx informational responses")
    		}
    		if fn := cs.get1xxTraceFunc(); fn != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	}
    
    	// Parsing the numbers
    	num1, err := strconv.ParseUint(parts[2], 10, 32)
    	if err != nil {
    		return 0, 0, fmt.Errorf("error parsing line %q: %w", input, err)
    	}
    
    	num2, err := strconv.ParseUint(parts[3], 10, 32)
    	if err != nil {
    		return 0, 0, fmt.Errorf("error parsing line %q: %w", input, err)
    	}
    
    	return uint32(num1), uint32(num2), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      if (element_ty.isF16()) {
        uint16_t raw_epsilon = Eigen::numext::bit_cast<uint16_t>(
            Eigen::NumTraits<Eigen::half>::epsilon());
        auto value = APFloat(APFloat::IEEEhalf(), APInt(16, raw_epsilon));
        return DenseElementsAttr::get(scalar_ty, value);
      } else if (element_ty.isBF16()) {
        uint16_t raw_epsilon = Eigen::numext::bit_cast<uint16_t>(
            Eigen::NumTraits<Eigen::bfloat16>::epsilon());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top