Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,093 for Maximum (0.17 sec)

  1. src/crypto/rand/util.go

    	if max.Sign() <= 0 {
    		panic("crypto/rand: argument to Int is <= 0")
    	}
    	n = new(big.Int)
    	n.Sub(max, n.SetUint64(1))
    	// bitLen is the maximum bit length needed to encode a value < max.
    	bitLen := n.BitLen()
    	if bitLen == 0 {
    		// the only valid result is 0
    		return
    	}
    	// k is the maximum byte length needed to encode a value < max.
    	k := (bitLen + 7) / 8
    	// b is the number of bits in the most significant byte of max-1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatus.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.health.memory;
    
    /**
     * Current JVM memory status.
     */
    public interface JvmMemoryStatus {
        /**
         * @return Current JVM maximum heap size in bytes
         */
        long getMaxMemory();
    
        /**
         * @return Current JVM committed heap size in bytes
         */
        long getCommittedMemory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 943 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // endpoint. These key/value pairs must conform with the label format.
      // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
      // Topology may include a maximum of 16 key/value pairs. This includes, but
      // is not limited to the following well known keys:
      // * kubernetes.io/hostname: the value indicates the hostname of the node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. docs/sts/assume-role.md

    ## API Request Parameters
    
    ### Version
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&f.MaxPerPodContainerCount, "maximum-dead-containers-per-container", f.MaxPerPodContainerCount, "Maximum number of old instances to retain per container.  Each container takes up some disk space.")
    	fs.MarkDeprecated("maximum-dead-containers-per-container", "Use --eviction-hard or --eviction-soft instead. Will be removed in a future version.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. cmd/utils_test.go

    	"fmt"
    	"net/http"
    	"net/url"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    // Tests maximum object size.
    func TestMaxObjectSize(t *testing.T) {
    	sizes := []struct {
    		isMax bool
    		size  int64
    	}{
    		// Test - 1 - maximum object size.
    		{
    			true,
    			globalMaxObjectSize + 1,
    		},
    		// Test - 2 - not maximum object size.
    		{
    			false,
    			globalMaxObjectSize - 1,
    		},
    	}
    	for i, s := range sizes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      description: Maximum number of requests per connection
                                        to a backend.
                                      format: int32
                                      type: integer
                                    maxRetries:
                                      description: Maximum number of retries that can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    }
    
    // estimateMaxArrayItemsPerRequest estimates the maximum number of array items with
    // the provided minimum serialized size that can fit into a single request.
    func estimateMaxArrayItemsFromMinSize(minSize int64) int64 {
    	// subtract 2 to account for [ and ]
    	return (maxRequestSizeBytes - 2) / (minSize + 1)
    }
    
    // estimateMaxAdditionalPropertiesPerRequest estimates the maximum number of additional properties
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/image/jpeg/huffman.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package jpeg
    
    import (
    	"io"
    )
    
    // maxCodeLength is the maximum (inclusive) number of bits in a Huffman code.
    const maxCodeLength = 16
    
    // maxNCodes is the maximum (inclusive) number of codes in a Huffman tree.
    const maxNCodes = 256
    
    // lutSize is the log-2 size of the Huffman decoder's look-up table.
    const lutSize = 8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/net/sock_windows.go

    package net
    
    import (
    	"internal/syscall/windows"
    	"os"
    	"syscall"
    )
    
    func maxListenerBacklog() int {
    	// When the socket backlog is SOMAXCONN, Windows will set the backlog to
    	// "a reasonable maximum value".
    	// See: https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-listen
    	return syscall.SOMAXCONN
    }
    
    func sysSocket(family, sotype, proto int) (syscall.Handle, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:52:56 UTC 2024
    - 802 bytes
    - Viewed (0)
Back to top