Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,213 for Maximum (0.17 sec)

  1. pilot/cmd/pilot-agent/app/fds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package app
    
    // RaiseFileLimits sets the file limit to the maximum allowed, to avoid exhaustion of file descriptors.
    // This is done by setting soft limit == hard limit.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/HeapProportionalCacheSizerTest.groovy

            when:
            def scaled = heapProportionalCacheSizer.scaleCacheSize(100, 100)
            then:
            scaled >= 100
        }
    
        def "cache cap sizer adjusts caps based on maximum heap size"() {
            given:
            def heapProportionalCacheSizer = new HeapProportionalCacheSizer(maxHeapMB)
    
            when:
            def caps = heapProportionalCacheSizer.scaleCacheSize(2000)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 14 07:38:37 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableMultiset.java

       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.0;
    
      /**
       * Maximum allowed false positive probability of detecting a hash flooding attack given random
       * input.
       */
      @VisibleForTesting static final double HASH_FLOODING_FPP = 0.001;
    
      /**
       * Maximum allowed length of a hash table bucket before falling back to a j.u.HashMap based
       * implementation. Experimentally determined.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/RemovalListener.java

     * resulting in notification could have occurred to an entry being manually removed or replaced, or
     * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection.
     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
     * Implementations of this interface should avoid performing blocking calls or synchronizing on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. src/time/zoneinfo_android.go

    	const (
    		headersize = 12 + 3*4
    		namesize   = 40
    		entrysize  = namesize + 3*4
    	)
    	if len(name) > namesize {
    		return nil, errors.New(name + " is longer than the maximum zone name length (40 bytes)")
    	}
    	fd, err := open(file)
    	if err != nil {
    		return nil, err
    	}
    	defer closefd(fd)
    
    	buf := make([]byte, headersize)
    	if err := preadn(fd, buf, 0); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTreeHandleInternal.java

    
        /**
         * @return the receive buffer size of the underlying connection
         * @throws CIFSException
         */
        int getReceiveBufferSize () throws CIFSException;
    
    
        /**
         * @return the maximum buffer size reported by the server
         * @throws CIFSException
         */
        int getMaximumBufferSize () throws CIFSException;
    
    
        /**
         * @return whether the session uses SMB signing
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/parallelize/error_channel.go

    limitations under the License.
    */
    
    package parallelize
    
    import "context"
    
    // ErrorChannel supports non-blocking send and receive operation to capture error.
    // A maximum of one error is kept in the channel and the rest of the errors sent
    // are ignored, unless the existing error is received and the channel becomes empty
    // again.
    type ErrorChannel struct {
    	errCh chan error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 17:39:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. 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 (0)
Back to top