Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 722 for Maximum (0.15 sec)

  1. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().Float32Var(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIQPS, "kubernetesApiQPS", 80.0,
    		"Maximum QPS when communicating with the kubernetes API")
    
    	c.PersistentFlags().IntVar(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIBurst, "kubernetesApiBurst", 160,
    		"Maximum burst for throttle when communicating with the kubernetes API")
    
    	// Attach the Istio logging options to the command.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. cmd/typed-errors.go

    // error returned when upload id not found
    var errUploadIDNotFound = errors.New("Specified Upload ID is not found")
    
    // error returned when PartNumber is greater than the maximum allowed 10000 parts
    var errInvalidMaxParts = errors.New("Part number is greater than the maximum allowed 10000 parts")
    
    // error returned for session policies > 2048
    var errSessionPolicyTooLarge = errors.New("Session policy should not exceed 2048 characters")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MBeanOsMemoryInfo.java

     * Use {@link MemInfoOsMemoryInfo} and {@link NativeOsMemoryInfo} instead.
     * On Windows, this doesn't include the secondary commit limit, which is the maximum amount of virtual memory that can be allocated.
     * Use {@link WindowsOsMemoryInfo} instead.
     */
    public class MBeanOsMemoryInfo implements OsMemoryInfo {
        private final MBeanAttributeProvider mBeanAttributeProvider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	DenyCacheTTL time.Duration
    
    	// WebhookRetryBackoff specifies the backoff parameters for the authorization webhook retry logic.
    	// This allows us to configure the sleep time at each iteration and the maximum number of retries allowed
    	// before we fail the webhook call in order to limit the fan out that ensues when the system is degraded.
    	WebhookRetryBackoff *wait.Backoff
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pkg/apis/resource/types.go

    	// the DriverName set in this ResourceHandle.
    	//
    	// The maximum size of this field is 16KiB. This may get increased in the
    	// future, but not reduced.
    	// +optional
    	Data string
    
    	// If StructuredData is set, then it needs to be used instead of Data.
    	StructuredData *StructuredResourceHandle
    }
    
    // ResourceHandleDataMaxSize represents the maximum size of resourceHandle.data.
    const ResourceHandleDataMaxSize = 16 * 1024
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. docs/metrics/v3.md

    | `minio_replication_max_active_workers`            | `gauge` | Maximum number of active replication workers seen since server start        | `server` |
    | `minio_replication_max_queued_bytes`              | `gauge` | Maximum number of bytes queued for replication since server start           | `server` |
    | `minio_replication_max_queued_count`              | `gauge` | Maximum number of objects queued for replication since server start         | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  7. tests/test_application.py

                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "maximum": 3.0,
                                    "type": "number",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  8. src/net/dnsclient.go

    	// (absolute) input. We must therefore reserve space for the first and last
    	// labels' length octets in wire format, where they are necessary and the
    	// maximum total length is 255.
    	// So our _effective_ maximum is 253, but 254 is not rejected if the last
    	// character is a dot.
    	l := len(s)
    	if l == 0 || l > 254 || l == 254 && s[l-1] != '.' {
    		return false
    	}
    
    	last := byte('.')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      // maximum duration they will honor per the --cluster-signing-duration CLI
      // flag to the Kubernetes controller manager.
      //
      // Certificate signers may not honor this field for various reasons:
      //
      //   1. Old signer that is unaware of the field (such as the in-tree
      //      implementations prior to v1.22)
      //   2. Signer whose configured maximum is shorter than the requested duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      // maximum duration they will honor per the --cluster-signing-duration CLI
      // flag to the Kubernetes controller manager.
      //
      // Certificate signers may not honor this field for various reasons:
      //
      //   1. Old signer that is unaware of the field (such as the in-tree
      //      implementations prior to v1.22)
      //   2. Signer whose configured maximum is shorter than the requested duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top