Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 354 for Maximum (0.35 sec)

  1. pkg/test/framework/suite.go

    	RequireExternalControlPlaneTopology() Suite
    	// RequireMinVersion validates the environment meets a minimum version
    	RequireMinVersion(minorVersion uint) Suite
    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    	Setup(fn resource.SetupFn) Suite
    	Teardown(fn resource.TeardownFn) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/size.go

    func typePos(t *Type) src.XPos {
    	if pos := t.Pos(); pos.IsKnown() {
    		return pos
    	}
    	base.Fatalf("bad type: %v", t)
    	panic("unreachable")
    }
    
    // MaxWidth is the maximum size of a value on the target architecture.
    var MaxWidth int64
    
    // CalcSizeDisabled indicates whether it is safe
    // to calculate Types' widths and alignments. See CalcSize.
    var CalcSizeDisabled bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    $$ -*- mode: c++; -*-
    $var n = 50  $$ Maximum length of Values arguments we want to support.
    $var maxtuple = 10  $$ Maximum number of Combine arguments we want to support.
    // Copyright 2008, Google Inc.
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/runtime/tracestack.go

    // license that can be found in the LICENSE file.
    
    // Trace stack table and acquisition.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    const (
    	// Maximum number of PCs in a single stack trace.
    	// Since events contain only stack id rather than whole stack trace,
    	// we can allow quite large values here.
    	traceStackSize = 128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        equates to quantization error when using quant_min and quant_max.
    
    
        Args:
          quant_min: The minimum real value that can be represented by a quantized
            value.
          quant_max: The maximum real value that can be represented by a quantized
            value.
    
        Returns:
          dequantized hist_mids after quantizing by quant_min and quant_max
        """
        maxbound = 2**self._num_bits - 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    	pallocChunksL1Shift = pallocChunksL2Bits
    )
    
    // maxSearchAddr returns the maximum searchAddr value, which indicates
    // that the heap has no free space.
    //
    // This function exists just to make it clear that this is the maximum address
    // for the page allocator's search space. See maxOffAddr for details.
    //
    // It's a function (rather than a variable) because it needs to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. cmd/object-api-datatypes.go

    	ReplicationStatus         replication.StatusType
    	// User-Defined metadata
    	UserDefined map[string]string
    
    	// User-Defined object tags
    	UserTags string
    
    	// List of individual parts, maximum size of upto 10,000
    	Parts []ObjectPartInfo `json:"-"`
    
    	// Implements writer and reader used by CopyObject API
    	Writer       io.WriteCloser `json:"-" msg:"-"`
    	Reader       *hash.Reader   `json:"-" msg:"-"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// authorizer.
    	// Same as setting `--authorization-webhook-cache-unauthorized-ttl` flag
    	// Default: 30s
    	UnauthorizedTTL metav1.Duration
    	// Timeout for the webhook request
    	// Maximum allowed value is 30s.
    	// Required, no default value.
    	Timeout metav1.Duration
    	// The API version of the authorization.k8s.io SubjectAccessReview to
    	// send to and expect from the webhook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/generated.proto

      // maximum duration they will honor per the --cluster-signing-duration CLI
      // flag to the Kubernetes controller manager.
      //
      // Certificate signers may not honor this field for various reasons:
      //
      //   1. Old signer that is unaware of the field (such as the in-tree
      //      implementations prior to v1.22)
      //   2. Signer whose configured maximum is shorter than the requested duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. cmd/utils.go

    const (
    	// Maximum object size per PUT request is 5TB.
    	// This is a divergence from S3 limit on purpose to support
    	// use cases where users are going to upload large files
    	// using 'curl' and presigned URL.
    	globalMaxObjectSize = 5 * humanize.TiByte
    
    	// Minimum Part size for multipart upload is 5MiB
    	globalMinPartSize = 5 * humanize.MiByte
    
    	// Maximum Part ID for multipart upload is 10000
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top