Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for isLegal (0.22 sec)

  1. src/net/http/server.go

    	} else {
    		// don't worry about performance
    		fmt.Fprintf(bw, "%03d status code %d\r\n", code, code)
    	}
    }
    
    // bodyAllowed reports whether a Write is allowed for this response type.
    // It's illegal to call this before the header has been flushed.
    func (w *response) bodyAllowed() bool {
    	if !w.wroteHeader {
    		panic("")
    	}
    	return bodyAllowedForStatus(w.status)
    }
    
    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. src/reflect/value.go

    	}
    	panic("reflect.Value.Equal: values of type " + v.Type().String() + " are not comparable")
    }
    
    // convertOp returns the function to convert a value of type src
    // to a value of type dst. If the conversion is illegal, convertOp returns nil.
    func convertOp(dst, src *abi.Type) func(Value, Type) Value {
    	switch Kind(src.Kind()) {
    	case Int, Int8, Int16, Int32, Int64:
    		switch Kind(dst.Kind()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

              "nonResourceURLs": {
                "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

              "nonResourceURLs": {
                "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
Back to top