Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 542 for Maximum (0.26 sec)

  1. pkg/test/framework/resource/flags.go

    		0, "Gateway conformance test timeout for the the maximum time for an xRoute to have parents in status that match the expected parents.")
    	flag.DurationVar(&settingsFromCommandLine.GatewayConformanceTimeoutConfig.ManifestFetchTimeout, "istio.test.gatewayConformance.manifestFetchTimeout",
    		0, "Gateway conformance test timeout for the maximum time for getting content from a https:// URL.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. cmd/sts-datatypes.go

    	// access key, and a security (or session) token.
    	//
    	// Note: The size of the security token that STS APIs return is not fixed. We
    	// strongly recommend that you make no assumptions about the maximum size. As
    	// of this writing, the typical size is less than 4096 bytes, but that can vary.
    	// Also, future updates to AWS might require larger sizes.
    	Credentials auth.Credentials `xml:",omitempty"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/common.psm1

      [bool]$Force
      # Maximum time since last backup, after which file will be rotated.
      # When no backups exist, Rotate-File acts as if -MaxBackupInterval has not elapsed,
      # instead relying on the other criteria.
      [TimeSpan]$MaxBackupInterval
      # Maximum file size, after which file will be rotated.
      [int]$MaxSize
      # Maximum number of backup archives to maintain.
      [int]$MaxBackups
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// to fully parse before. Unlike buf, we own this data.
    	saveBuf bytes.Buffer
    
    	firstField bool // processing the first field of the header block
    }
    
    // NewDecoder returns a new decoder with the provided maximum dynamic
    // table size. The emitFunc will be called for each valid field
    // parsed, in the same goroutine as calls to Write, before Write returns.
    func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K 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. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	return b
    }
    
    // WithMaximum sets the Maximum field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Maximum field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMaximum(value float64) *JSONSchemaPropsApplyConfiguration {
    	b.Maximum = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K 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. android/guava/src/com/google/common/collect/ContiguousSet.java

       * ContiguousSet} instances.
       */
      public abstract ContiguousSet<C> intersection(ContiguousSet<C> other);
    
      /**
       * Returns a range, closed on both ends, whose endpoints are the minimum and maximum values
       * contained in this set. This is equivalent to {@code range(CLOSED, CLOSED)}.
       *
       * @throws NoSuchElementException if this set is empty
       */
      public abstract Range<C> range();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. internal/auth/credentials.go

    )
    
    const (
    	// Minimum length for MinIO access key.
    	accessKeyMinLen = 3
    
    	// Maximum length for MinIO access key.
    	// There is no max length enforcement for access keys
    	accessKeyMaxLen = 20
    
    	// Minimum length for MinIO secret key for both server
    	secretKeyMinLen = 8
    
    	// Maximum secret key length for MinIO, this
    	// is used when autogenerating new credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top