Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 545 for minimum (0.17 sec)

  1. docs/em/docs/advanced/middleware.md

    ðŸĩ 🗜 ðŸ“Ļ 🙆 ðŸ“Ļ 👈 🔌 `"gzip"` `Accept-Encoding` 🎚.
    
    🛠ïļ 🔜 ðŸĩ ðŸ‘Ŋ‍♂ïļ ðŸĐ & ðŸŽĨ ðŸ“Ļ.
    
    ```Python hl_lines="2  6"
    {!../../../docs_src/advanced_middleware/tutorial003.py!}
    ```
    
    📄 ❌ 🐕‍ðŸĶš:
    
    * `minimum_size` - ðŸšŦ 🗜 ðŸ“Ļ 👈 ðŸĪŠ 🌘 👉 ðŸ’Ŋ 📐 ðŸ”Ē. ðŸ”Ē `500`.
    
    ## 🎏 🛠ïļ
    
    ðŸ“Ī 📚 🎏 ðŸ”Ŧ 🛠ïļ.
    
    🖞:
    
    * <a href="https://docs.sentry.io/platforms/python/asgi/" class="external-link" target="_blank">ðŸ”Ŧ</a>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  2. docs/sts/tls.md

    The returned credentials expiry after a certain period of time that can be configured via `&DurationSeconds=3600`. By default, the STS credentials are valid for 1 hour. The minimum expiration allowed is 15 minutes.
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/xml/XmlEscapers.java

         * replacement character.
         *
         * Implementation note: An alternative to the following would be to make a map that simply
         * replaces the allowed ASCII whitespace characters with themselves and to set the minimum safe
         * character to 0x20. However this would slow down the escaping of simple strings that contain
         * \t, \n, or \r.
         */
        for (char c = MIN_ASCII_CONTROL_CHAR; c <= MAX_ASCII_CONTROL_CHAR; c++) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 18 20:55:09 GMT 2022
    - 6.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Longs.java

       * specified minimum length. If {@code array} already has a length of at least {@code minLength},
       * it is returned directly. Otherwise, a new array of size {@code minLength + padding} is
       * returned, containing the values of {@code array}, and zeroes in the remaining places.
       *
       * @param array the source array
       * @param minLength the minimum length the returned array must guarantee
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 28.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

          assertEquals(expectedBytes / chunkSize, processCalled);
          assertEquals(expectedBytes % chunkSize != 0, remainingCalled);
        }
    
        // returns the minimum x such as x >= a && (x % b) == 0
        private static int ceilToMultiple(int a, int b) {
          int remainder = a % b;
          return remainder == 0 ? a : a + b - remainder;
        }
    
        void assertBytes(byte[] expected) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 8.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // address into 24 bits for the network portion and 8 bits for the host portion.
      // To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6).
      // Minimum value is 4 (16 IPs).
      // This field is immutable.
      // +required
      optional int32 perNodeHostBits = 2;
    
      // ipv4 defines an IPv4 IP block in CIDR notation(e.g. "10.0.0.0/8").
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/shared.go

    	if err != nil {
    		return nil, nil, err
    	}
    	if err := k8sversion.IsK8VersionSupported(kubeClient, l); err != nil {
    		return nil, nil, fmt.Errorf("check minimum supported Kubernetes version: %v", err)
    	}
    	return kubeClient, client, nil
    }
    
    // applyOptions contains the startup options for applying the manifest.
    type applyOptions struct {
    	// Path to the kubeconfig file.
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 29 02:29:02 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_body_multiple_params/test_tutorial001_an_py310.py

                                "required": True,
                                "schema": {
                                    "title": "The ID of the item to get",
                                    "maximum": 1000.0,
                                    "minimum": 0.0,
                                    "type": "integer",
                                },
                                "name": "item_id",
                                "in": "path",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_body_multiple_params/test_tutorial001_an_py39.py

                                "required": True,
                                "schema": {
                                    "title": "The ID of the item to get",
                                    "maximum": 1000.0,
                                    "minimum": 0.0,
                                    "type": "integer",
                                },
                                "name": "item_id",
                                "in": "path",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  10. manifests/charts/README.md

    This is a work in progress - building on top of the multi-cluster installer.
    
    As an extreme, the goal is to be possible to run Istio workloads in a cluster without installing any Istio component
    in that cluster. Currently, the minimum we require is the security provider (node agent or citadel).
    
    ### Install Istio CRDs
    
    This is the first step of the installation. Please do not remove or edit any CRD - config currently requires
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
Back to top