Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for Missing (0.12 sec)

  1. src/net/http/server.go

    	hosts, haveHost := req.Header["Host"]
    	isH2Upgrade := req.isH2Upgrade()
    	if req.ProtoAtLeast(1, 1) && (!haveHost || len(hosts) == 0) && !isH2Upgrade && req.Method != "CONNECT" {
    		return nil, badRequestError("missing required Host header")
    	}
    	if len(hosts) == 1 && !httpguts.ValidHostHeader(hosts[0]) {
    		return nil, badRequestError("malformed Host header")
    	}
    	for k, vv := range req.Header {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      TF_RETURN_IF_ERROR(::tensorflow::ParseNodeShapes(input_shapes, shapes));
    
      for (const auto& shape : shapes) {
        if (!shape) {
          return absl::AbortedError("Missing input argument shapes");
        }
        parsed_shapes.push_back(SmallVector<int64_t>(shape->begin(), shape->end()));
      }
      return parsed_shapes;
    }
    
    FailureOr<bool> InferShapeForFunction(func::FuncOp func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    				panic("reflect.Select: SendDir case using recv-only channel")
    			}
    			rc.ch = ch.pointer()
    			rc.typ = toRType(&tt.Type)
    			v := c.Send
    			if !v.IsValid() {
    				panic("reflect.Select: SendDir case missing Send value")
    			}
    			v.mustBeExported()
    			v = v.assignTo("reflect.Select", tt.Elem, nil)
    			if v.flag&flagIndir != 0 {
    				rc.val = v.ptr
    			} else {
    				rc.val = unsafe.Pointer(&v.ptr)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    meseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.\nNote: metrics here do not use rate() to avoid missing transition from \"No series\"; series are not reported if there are no errors at all.\n","fieldConfig":{"defaults":{"custom":{"fillOpacity":10,"gradientMode":"hue","showPoints":"never"}}},"gridPos":{"h":10,"w":8,"x":0,"y":14},"id":12,"interval":"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    			i++
    		}
    		oprange[r0] = optab[start:i]
    
    		switch r {
    		default:
    			if !opsetGen(r) {
    				ctxt.Diag("unknown op in build: %v", r)
    				log.Fatalf("instruction missing from switch in asm9.go:buildop: %v", r)
    			}
    
    		case ADCBF: /* unary indexed: op (b+a); op (b) */
    			opset(ADCBI, r0)
    
    			opset(ADCBST, r0)
    			opset(ADCBT, r0)
    			opset(ADCBTST, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x08, 0x00,
    	0xf7, 0xff, 0x3d, 0xb1, 0x20, 0x85, 0xfa, 0x00,
    	0x00, 0x00, 0x3d, 0xb1, 0x20, 0x85, 0xfa, 0x00,
    	0x00, 0x00,
    }
    
    // Ensure that a missing status doesn't make the server panic
    // See Issue https://golang.org/issues/21701
    func TestMissingStatusNoPanic(t *testing.T) {
    	t.Parallel()
    
    	const want = "unknown status code"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    		return false
    	}
    
    	return true
    }
    
    func (ab *AsmBuf) doasm(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog) {
    	o := opindex[p.As&obj.AMask]
    
    	if o == nil {
    		ctxt.Diag("asmins: missing op %v", p)
    		return
    	}
    
    	if pre := prefixof(ctxt, &p.From); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    	if pre := prefixof(ctxt, &p.To); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    			c.ctxt.Diag("illegal argument: %v\n", p)
    			break
    		}
    		o1 = c.opirr(p, p.As)
    		if op.hasOperand2 {
    			if p.To.Reg == obj.REG_NONE {
    				c.ctxt.Diag("missing register at operand 2: %v\n", p)
    			}
    			o1 |= uint32(p.To.Reg & 0x1F)
    		} else {
    			if p.To.Reg != obj.REG_NONE || p.Reg != obj.REG_NONE {
    				c.ctxt.Diag("extraneous register at operand 2: %v\n", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

    If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

    If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top