Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 421 for allowGet (0.08 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

    1. }
    2.  
    3. @Test
    4. fun responseCodeDisagreesWithHeaders() {
    5. server.enqueue(
    6. MockResponse(
    7. code = HttpURLConnection.HTTP_NO_CONTENT,
    8. body = "This body is not allowed!",
    9. ),
    10. )
    11. assertFailsWith<IOException> {
    12. getResponse(newRequest("/"))
    13. }.also { expected ->
    14. 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)
  2. RELEASE.md

    1. * Support for TensorRT is otherwise unaffected as long as TensorRT is
    2. already installed on the system.
    3. * Using .post1 instead of a full minor release allowed us to push this release
    4. out quickly. However, please note the following caveat:
    5. * 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)
  3. tensorflow/c/c_api.cc

    1. // that add a node to the graph (like TF_FinishOperation).
    2. if (!g->name_map.insert(std::make_pair(n->name(), n)).second) {
    3. status->status = tensorflow::errors::Internal(
    4. "BUG: The API allowed construction of a graph with duplicate node "
    5. "names (",
    6. n->name(),
    7. "). This is a bug. Please file an issue at "
    8. "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)
  4. CHANGELOG/CHANGELOG-1.24.md

    1. ### Detection
    2.  
    3. 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.
    4.  
    5. If you find evidence that this vulnerability has been exploited, please contact ******@****.***
    6.  
    7. #### 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)
  5. CHANGELOG/CHANGELOG-1.19.md

    1. - 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]
    2.  
    3. ## Dependencies
    4.  
    5. ### 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)
  6. cmd/bucket-replication.go

    1. meta := make(map[string]string)
    2. isSSEC := crypto.SSEC.IsEncrypted(objInfo.UserDefined)
    3.  
    4. for k, v := range objInfo.UserDefined {
    5. // In case of SSE-C objects copy the allowed internal headers as well
    6. if !isSSEC || !slices.Contains(maps.Keys(validSSEReplicationHeaders), k) {
    7. if stringsHasPrefixFold(k, ReservedMetadataPrefixLower) {
    8. continue
    9. }
    10. 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)
  7. api/maven-api-model/src/main/mdo/maven.mdo

    1. under the License.
    2. -->
    3.  
    4. <!--
    5. | Improvements:
    6. |
    7. | o add specification element to a field, this would be more a technical description of
    8. | what is allowed in the field.
    9. |
    10. | o validators: there could be several levels of validation. Simple type validation could
    11. | 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)
  8. doc/go1.17_spec.html

    1. that computes <code>x*y + z</code> without rounding the intermediate result <code>x*y</code>.
    2. These examples show when a Go implementation can use that instruction:
    3. </p>
    4.  
    5. <pre>
    6. // FMA allowed for computing r, because x*y is not explicitly rounded:
    7. r = x*y + z
    8. r = z; r += x*y
    9. t = x*y; r = t + z
    10. *p = x*y; r = *p + z
    11. 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)
  9. src/cmd/cgo/gcc.go

    1. expr = &ast.CallExpr{Fun: expr}
    2. }
    3. case ctxSelector:
    4. if r.Name.Kind == "var" {
    5. expr = &ast.StarExpr{Star: (*r.Expr).Pos(), X: expr}
    6. } else {
    7. error_(r.Pos(), "only C variables allowed in selector expression %s", fixGo(r.Name.Go))
    8. }
    9. case ctxType:
    10. if r.Name.Kind != "type" {
    11. error_(r.Pos(), "expression C.%s used as type", fixGo(r.Name.Go))
    12. } 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)
  10. CHANGELOG/CHANGELOG-1.20.md

    1. - 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]
    2.  
    3. ### Uncategorized
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top