- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 421 for allowGet (0.08 sec)
-
okhttp/src/test/java/okhttp3/URLConnectionTest.kt
- }
- @Test
- fun responseCodeDisagreesWithHeaders() {
- server.enqueue(
- MockResponse(
- code = HttpURLConnection.HTTP_NO_CONTENT,
- body = "This body is not allowed!",
- ),
- )
- assertFailsWith<IOException> {
- getResponse(newRequest("/"))
- }.also { expected ->
- assertThat(expected.message).isEqualTo("HTTP 204 had non-zero Content-Length: 25")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K bytes - Viewed (0) -
RELEASE.md
- * Support for TensorRT is otherwise unaffected as long as TensorRT is
- already installed on the system.
- * Using .post1 instead of a full minor release allowed us to push this release
- out quickly. However, please note the following caveat:
- * For users wishing to pin their Python dependency in a requirements file
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 22 14:33:53 UTC 2024 - 735.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
- // that add a node to the graph (like TF_FinishOperation).
- if (!g->name_map.insert(std::make_pair(n->name(), n)).second) {
- status->status = tensorflow::errors::Internal(
- "BUG: The API allowed construction of a graph with duplicate node "
- "names (",
- n->name(),
- "). This is a bug. Please file an issue at "
- "https://github.com/tensorflow/tensorflow/issues.");
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
- ### Detection
- Kubernetes Audit logs may indicate if the user name was misspelled to bypass the restriction placed on which user is a pod allowed to run as.
- If you find evidence that this vulnerability has been exploited, please contact ******@****.***
- #### Additional Details
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.md
- - The maximum number of ports allowed in EndpointSlices has been increased from 100 to 20,000 ([#99795](https://github.com/kubernetes/kubernetes/pull/99795), [@robscott](https://github.com/robscott)) [SIG Network]
- ## Dependencies
- ### Added
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0) -
cmd/bucket-replication.go
- meta := make(map[string]string)
- isSSEC := crypto.SSEC.IsEncrypted(objInfo.UserDefined)
- for k, v := range objInfo.UserDefined {
- // In case of SSE-C objects copy the allowed internal headers as well
- if !isSSEC || !slices.Contains(maps.Keys(validSSEReplicationHeaders), k) {
- if stringsHasPrefixFold(k, ReservedMetadataPrefixLower) {
- continue
- }
- if isStandardHeader(k) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
- under the License.
- -->
- <!--
- | Improvements:
- |
- | o add specification element to a field, this would be more a technical description of
- | what is allowed in the field.
- |
- | o validators: there could be several levels of validation. Simple type validation could
- | be done with a regex, but we need inter-field validation and rules which could be
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
doc/go1.17_spec.html
- that computes <code>x*y + z</code> without rounding the intermediate result <code>x*y</code>.
- These examples show when a Go implementation can use that instruction:
- </p>
- <pre>
- // FMA allowed for computing r, because x*y is not explicitly rounded:
- r = x*y + z
- r = z; r += x*y
- t = x*y; r = t + z
- *p = x*y; r = *p + z
- r = x*y + float64(z)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
- expr = &ast.CallExpr{Fun: expr}
- }
- case ctxSelector:
- if r.Name.Kind == "var" {
- expr = &ast.StarExpr{Star: (*r.Expr).Pos(), X: expr}
- } else {
- error_(r.Pos(), "only C variables allowed in selector expression %s", fixGo(r.Name.Go))
- }
- case ctxType:
- if r.Name.Kind != "type" {
- error_(r.Pos(), "expression C.%s used as type", fixGo(r.Name.Go))
- } else if r.Name.Type == nil {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.20.md
- - The maximum number of ports allowed in EndpointSlices has been increased from 100 to 20,000 ([#99795](https://github.com/kubernetes/kubernetes/pull/99795), [@robscott](https://github.com/robscott)) [SIG Network]
- ### Uncategorized
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 19 21:05:45 UTC 2022 - 409K bytes - Viewed (0)