Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for Maximum (0.12 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      description: The maximum number of concurrent streams
                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                      description: The maximum number of concurrent streams
                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  3. pkg/log/options.go

    		"The maximum age in days of log file backups to keep before older files are deleted (0 indicates no limit)")
    
    	intVar(&o.RotationMaxSize, "log_rotate_max_size", o.RotationMaxSize,
    		"The maximum size in megabytes of a log file beyond which the file is rotated")
    
    	intVar(&o.RotationMaxBackups, "log_rotate_max_backups", o.RotationMaxBackups,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. cmd/generic-handlers.go

    	"github.com/minio/minio/internal/mcontext"
    )
    
    const (
    	// Maximum allowed form data field values. 64MiB is a guessed practical value
    	// which is more than enough to accommodate any form data fields and headers.
    	requestFormDataSize = 64 * humanize.MiByte
    
    	// For any HTTP request, request body should be not more than 16GiB + requestFormDataSize
    	// where, 16GiB is the maximum allowed object size for object upload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

            summary
        )
    }
    
    
    class TooManyConfigurationCacheProblemsException internal constructor(
        causes: List<Throwable>,
        summary: () -> String
    ) : ConfigurationCacheProblemsException(
        "Maximum number of configuration cache problems has been reached.\n" +
            "This behavior can be adjusted. ${Documentation.maxProblems}",
        causes,
        summary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/syscall/rlimit.go

    var origRlimitNofile atomic.Pointer[Rlimit]
    
    // Some systems set an artificially low soft limit on open file count, for compatibility
    // with code that uses select and its hard-coded maximum file descriptor
    // (limited by the size of fd_set).
    //
    // Go does not use select, so it should not be subject to these limits.
    // On some systems the limit is 256, which is very easy to run into,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. docs/metrics/prometheus/list.md

    | `minio_node_replication_max_queued_bytes`               | Maximum number of bytes queued for replication seen since server start                                   |
    | `minio_node_replication_max_queued_count`               | Maximum number of objects queued for replication seen since server start                                 |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation.go

    		// in particular when it is already beyond the maximum size. Instead this
    		// just shows the number of entries.
    		allErrs = append(allErrs, field.TooLongMaxLength(fldPath, len(slice), maxSize))
    	}
    	return allErrs
    }
    
    // validateResourceClaimConsumers ensures that the slice contains no duplicate UIDs and does not exceed a certain maximum size.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  10. common/config/.golangci.yml

      # excluded by default patterns execute `golangci-lint run --help`.
      # Default value for this option is true.
      exclude-use-default: true
      # Maximum issues count per one linter.
      # Set to 0 to disable.
      # Default: 50
      max-issues-per-linter: 0
      # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top