Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 410 for Maximum (0.18 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    			possibleLimitingReason = "ScaleUpLimit"
    			possibleLimitingMessage = "the desired replica count is increasing faster than the maximum scale rate"
    		} else {
    			possibleLimitingReason = "TooManyReplicas"
    			possibleLimitingMessage = "the desired replica count is more than the maximum replica count"
    		}
    		if args.DesiredReplicas > maximumAllowedReplicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

        listOf(
            // We pass the 'maxParallelForks' setting as 'workers.max' to limit the maximum number of executers even
            // if multiple test tasks run in parallel. We also pass it to the Gradle build as a maximum (maxParallelForks)
            // for each test task, such that we are independent of whatever default value is defined in the build itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/nfacct_linux.go

    package nfacct
    
    import (
    	"bytes"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"syscall"
    
    	"github.com/vishvananda/netlink/nl"
    	"golang.org/x/sys/unix"
    )
    
    // MaxLength represents the maximum length allowed for the name in a nfacct counter.
    const MaxLength = 31
    
    // nf netlink nfacct commands, these should strictly match with the ones defined in kernel headers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          # If present the last op before return should be stablehlo.clamp for relu6
          # and stablehlo.maximum for relu.
          if activation_fn is nn_ops.relu6:
            self.assertRegex(module_str, r'stablehlo.clamp.*\n.*return')
          elif activation_fn is nn_ops.relu:
            self.assertRegex(module_str, r'stablehlo.maximum.*\n.*return')
        else:
          # Check activation functions are implicit.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. src/internal/trace/batch.go

    	size, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch size: %w", err)
    	}
    	if size > go122.MaxBatchSize {
    		return batch{}, gen, fmt.Errorf("invalid batch size %d, maximum is %d", size, go122.MaxBatchSize)
    	}
    
    	// Copy out the batch for later processing.
    	var data bytes.Buffer
    	data.Grow(int(size))
    	n, err := io.CopyN(&data, r, int64(size))
    	if n != int64(size) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/codehost.go

    	"cmd/go/internal/str"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    // Downloaded size limits.
    const (
    	MaxGoMod   = 16 << 20  // maximum size of go.mod file
    	MaxLICENSE = 16 << 20  // maximum size of LICENSE file
    	MaxZipFile = 500 << 20 // maximum size of downloaded zip file
    )
    
    // A Repo represents a code hosting source.
    // Typical implementations include local version control repositories,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. cmd/warm-backend-minio.go

    func optimalPartSize(objectSize int64) (partSize int64, err error) {
    	// object size is '-1' set it to 5TiB.
    	if objectSize == -1 {
    		objectSize = maxMultipartPutObjectSize
    	}
    
    	// object size is larger than supported maximum.
    	if objectSize > maxMultipartPutObjectSize {
    		err = errors.New("entity too large")
    		return
    	}
    
    	configuredPartSize := minPartSize
    	// Use floats for part size for all calculations to avoid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/settings.go

    	gwConformanceConfig "sigs.k8s.io/gateway-api/conformance/utils/config"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	// maxTestIDLength is the maximum length allowed for testID.
    	maxTestIDLength = 30
    )
    
    // ImageSettings for container images.
    type ImageSettings struct {
    	// Hub value to use in Helm templates
    	Hub string
    
    	// Tag value to use in Helm templates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/volume_stats.go

    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "",
    	)
    	volumeStatsInodesDesc = metrics.NewDesc(
    		metrics.BuildFQName("", kubeletmetrics.KubeletSubsystem, kubeletmetrics.VolumeStatsInodesKey),
    		"Maximum number of inodes in the volume",
    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "",
    	)
    	volumeStatsInodesFreeDesc = metrics.NewDesc(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	}
    }
    
    const (
    	maxPlaintext               = 16384        // maximum plaintext payload length
    	maxCiphertext              = 16384 + 2048 // maximum ciphertext payload length
    	maxCiphertextTLS13         = 16384 + 256  // maximum ciphertext length in TLS 1.3
    	recordHeaderLen            = 5            // record header length
    	maxHandshake               = 65536        // maximum handshake we support (protocol max is 16 MB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top