Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 318 for validns (0.04 sec)

  1. istioctl/pkg/waypoint/testdata/waypoint/combined-gateway

    1. NAMESPACE NAME REVISION PROGRAMMED
    2. bookinfo bookinfo-rev rev1 True
    3. bookinfo bookinfo-valid default True
    4. default bookinfo default False
    5. default no-name-convention default True
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 338 bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/response-model.md

    1. The same would happen if you had something like a <abbr title='A union between multiple types means "any of these types".'>union</abbr> between different types where one or more of them are not valid Pydantic types, for example this would fail 💥:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_body_multiple_params/test_tutorial001_an.py

    1. "msg": "Input should be a valid integer, unable to parse string as an integer",
    2. "input": "foo",
    3. }
    4. ]
    5. }
    6. ) | IsDict(
    7. # TODO: remove when deprecating Pydantic v1
    8. {
    9. "detail": [
    10. {
    11. "loc": ["path", "item_id"],
    12. "msg": "value is not a valid integer",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedLongs.java

    1. *
    2. * <p><b>Java 8+ users:</b> use {@link Long#parseUnsignedLong(String)} instead.
    3. *
    4. * @throws NumberFormatException if the string does not contain a valid unsigned {@code long}
    5. * value
    6. * @throws NullPointerException if {@code string} is null (in contrast to {@link
    7. * Long#parseLong(String)})
    8. */
    9. @CanIgnoreReturnValue
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Aug 12 21:04:48 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. docs/features/caching.md

    1. - CallStart
    2. - **CacheMiss**
    3. - ProxySelectStart
    4. - ... Standard Events ...
    5. - CallEnd
    6. ### Conditional Cache Hit
    7. When cache flags require checking the cache results are still valid an early cacheConditionalHit event is
    8. received followed by a cache hit or miss. Critically in the cache hit scenario the server won’t send the response body.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. migrator/table_type.go

    1. func (ct TableType) Type() string {
    2. return ct.TypeValue
    3. }
    4.  
    5. // Comment returns the comment of current table.
    6. func (ct TableType) Comment() (comment string, ok bool) {
    7. return ct.CommentValue.String, ct.CommentValue.Valid
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri May 05 07:58:27 UTC 2023
    - 688 bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

    1. // 3. Signer whose configured minimum is longer than the requested duration
    2. //
    3. // The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
    4. //
    5. // +optional
    6. optional int32 expirationSeconds = 8;
    7.  
    8. // allowedUsages specifies a set of usage contexts the key will be
    9. // valid for.
    10. // See:
    11. // https://tools.ietf.org/html/rfc5280#section-4.2.1.3
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. docs/sts/assume-role.md

    1. | Params | Value |
    2. | :-- | :-- |
    3. | *Type* | *Integer* |
    4. | *Valid Range* | *Minimum value of 900. Maximum value of 31536000.* |
    5. | *Required* | *No* |
    6.  
    7. ### Policy
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. regression-test/src/androidTest/java/okhttp/regression/LetsEncryptTest.java

    1. @Test public void getFailsWithoutAdditionalCert() throws IOException {
    2. OkHttpClient client = new OkHttpClient();
    3.  
    4. boolean androidMorEarlier = Build.VERSION.SDK_INT <= 23;
    5. try {
    6. sendRequest(client, "https://valid-isrgrootx1.letsencrypt.org/robots.txt");
    7. if (androidMorEarlier) {
    8. fail();
    9. }
    10. } catch (SSLHandshakeException sslhe) {
    11. assertTrue(androidMorEarlier);
    12. }
    13. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Nov 17 07:40:31 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  10. cmd/postpolicyform.go

    1. if err != nil {
    2. return parsedPolicy, err
    3. }
    4.  
    5. parsedPolicy.Conditions.ContentLengthRange = contentLengthRange{
    6. Min: min,
    7. Max: max,
    8. Valid: true,
    9. }
    10. default:
    11. // Condition should be valid.
    12. return parsedPolicy, fmt.Errorf("Unknown type %s of conditional field value %s found in POST policy form",
    13. reflect.TypeOf(condt).String(), condt)
    14. }
    15. default:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top