Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Req (0.04 sec)

  1. src/net/http/h2_bundle.go

    func (t *http2Transport) RoundTripOpt(req *Request, opt http2RoundTripOpt) (*Response, error) {
    	if !(req.URL.Scheme == "https" || (req.URL.Scheme == "http" && t.AllowHTTP)) {
    		return nil, errors.New("http2: unsupported scheme")
    	}
    
    	addr := http2authorityAddr(req.URL.Scheme, req.URL.Host)
    	for retry := 0; ; retry++ {
    		cc, err := t.connPool().GetClientConn(req, addr)
    		if err != 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)
  2. pkg/apis/core/validation/validation.go

    		}
    	default:
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("operator"), req.Operator, "not a valid selector operator"))
    	}
    
    	if vf, found := nodeFieldSelectorValidators[req.Key]; !found {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("key"), req.Key, "not a valid field selector key"))
    	} else {
    		for i, v := range req.Values {
    			for _, msg := range vf(v, false) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0x223e9f78" type="little32" offset="0" />
        </magic>
      </mime-type>
    
      <mime-type type="application/vnd.ms-wmdrm.lic-chlg-req"/>
      <mime-type type="application/vnd.ms-wmdrm.lic-resp"/>
      <mime-type type="application/vnd.ms-wmdrm.meter-chlg-req"/>
      <mime-type type="application/vnd.ms-wmdrm.meter-resp"/>
    
      <mime-type type="application/vnd.ms-word.document.macroenabled.12">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// following inlined struct so than an EphemeralContainer may easily be converted
    	// to a Container.
    	EphemeralContainerCommon `json:",inline" protobuf:"bytes,1,req"`
    
    	// If set, the name of the container from PodSpec that this ephemeral container targets.
    	// The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top