Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,213 for Maximum (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    	"k8s.io/klog/v2"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    )
    
    // DefaultMaxUpdateManagers defines the default maximum retained number of managedFields entries from updates
    // if the number of update managers exceeds this, the oldest entries will be merged until the number is below the maximum.
    // TODO(jennybuckley): Determine if this is really the best value. Ideally we wouldn't unnecessarily merge too many entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/collectors/volume_stats_test.go

    		# TYPE kubelet_volume_stats_available_bytes gauge
    		# HELP kubelet_volume_stats_capacity_bytes [ALPHA] Capacity in bytes of the volume
    		# TYPE kubelet_volume_stats_capacity_bytes gauge
    		# HELP kubelet_volume_stats_inodes [ALPHA] Maximum number of inodes in the volume
    		# TYPE kubelet_volume_stats_inodes gauge
    		# HELP kubelet_volume_stats_inodes_free [ALPHA] Number of free inodes in the volume
    		# TYPE kubelet_volume_stats_inodes_free gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/max_seats.go

    */
    
    package flowcontrol
    
    import (
    	"sync"
    )
    
    // MaxSeatsTracker is used to track max seats allocatable per priority level from the work estimator
    type MaxSeatsTracker interface {
    	// GetMaxSeats returns the maximum seats a request should occupy for a given priority level.
    	GetMaxSeats(priorityLevelName string) uint64
    
    	// SetMaxSeats configures max seats for a priority level.
    	SetMaxSeats(priorityLevelName string, maxSeats uint64)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. src/encoding/binary/varint.go

    // would reduce the maximum encoding length to 9 bytes. However, it breaks the
    // invariant that the msb is always the "continuation bit" and thus makes the
    // format incompatible with a varint encoding for larger numbers (say 128-bit).
    
    import (
    	"errors"
    	"io"
    )
    
    // MaxVarintLenN is the maximum length of a varint-encoded N-bit integer.
    const (
    	MaxVarintLen16 = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller manager.\n\nCertificate signers may not honor this field for various reasons:\n\n  1. Old signer that is unaware of the field (such as the in-tree\n     implementations prior to v1.22)\n  2. Signer whose configured maximum is shorter than the requested duration\n  3. Signer whose configured minimum is longer...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    		// To mitigate the impact of it, we're capping the maximum number of
    		// seats that can be assigned to a given request. Thanks to it:
    		// 1) we reduce the amount of seat-seconds that are "wasted" during
    		//    dispatching and executing initial phase of the request
    		// 2) we are not changing the finalWork estimate - just potentially
    		//    reshaping it to be narrower and longer. As long as the maximum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ProviderAwareCompilerDaemonForkOptions.java

            return jvmArgumentProviders;
        }
    
        /**
         * Returns the full set of arguments to use to launch the JVM for the compiler process. This includes arguments to define
         * system properties, the minimum/maximum heap size, and the bootstrap classpath.
         *
         * @return The immutable list of arguments. Returns an empty list if there are no arguments.
         */
        @Internal
        public List<String> getAllJvmArgs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top