Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for Maximum (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    }
    
    // +k8s:deepcopy-gen=true
    
    // ValueValidation contains all schema fields not contributing to the structure of the schema.
    type ValueValidation struct {
    	Format           string
    	Maximum          *float64
    	ExclusiveMaximum bool
    	Minimum          *float64
    	ExclusiveMinimum bool
    	MaxLength        *int64
    	MinLength        *int64
    	Pattern          string
    	MaxItems         *int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. common/scripts/setup_env.sh

        container_kubeconfig+="/config/${kubeconfig_random}:"
        CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${local_config},destination=/config/${kubeconfig_random} "
      fi
    }
    
    # This function is designed for maximum compatibility with various platforms. This runs on
    # any Mac or Linux platform with bash 4.2+. Please take care not to modify this function
    # without testing properly.
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/net/interface.go

    // and index. It also represents network interface facility
    // information.
    type Interface struct {
    	Index        int          // positive integer that starts at one, zero is never used
    	MTU          int          // maximum transmission unit
    	Name         string       // e.g., "en0", "lo0", "eth0.100"
    	HardwareAddr HardwareAddr // IEEE MAC-48, EUI-48 and EUI-64 form
    	Flags        Flags        // e.g., FlagUp, FlagLoopback, FlagMulticast
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/internal/trace/base.go

    package trace
    
    import (
    	"fmt"
    	"math"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/version"
    )
    
    // maxArgs is the maximum number of arguments for "plain" events,
    // i.e. anything that could reasonably be represented as a baseEvent.
    //
    // TODO(mknyszek): This is only 6 instead of 5 because GoStatusStack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // an underlying source and these events can be served using
    // the exposed Next() API. The main intent for doing things
    // this way is to introduce an upper bound of memory usage
    // for starting a watch and reduce the maximum possible time
    // interval for which the lock would be held while events are
    // copied over.
    //
    // The source of events for the interval is typically either
    // the watchCache circular buffer, if events being retrieved
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    				continue
    			}
    
    			// Copy the endpoint in order to expand the load balancing weight.
    			// When multiplying, be careful to avoid overflow - clipping the
    			// result at the maximum value for uint32.
    			weight := b.scaleEndpointLBWeight(lbEp, scaleFactor)
    			if lbEp.GetLoadBalancingWeight().GetValue() != weight {
    				lbEp = proto.Clone(lbEp).(*endpoint.LbEndpoint)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/LittleEndianByteArray.java

        try {
          /*
           * UnsafeByteArray uses Unsafe.getLong() in an unsupported way, which is known to cause
           * crashes on Android when running in 32-bit mode. For maximum safety, we shouldn't use
           * Unsafe.getLong() at all, but the performance benefit on x86_64 is too great to ignore, so
           * as a compromise, we enable the optimization only on platforms that we specifically know to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/strconv/atoi.go

    // digits, err.Err = [ErrSyntax] and the returned value is 0;
    // if the value corresponding to s cannot be represented by a
    // signed integer of the given size, err.Err = [ErrRange] and the
    // returned value is the maximum magnitude integer of the
    // appropriate bitSize and sign.
    //
    // [integer literals]: https://go.dev/ref/spec#Integer_literals
    func ParseInt(s string, base int, bitSize int) (i int64, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

        try {
          /*
           * UnsafeByteArray uses Unsafe.getLong() in an unsupported way, which is known to cause
           * crashes on Android when running in 32-bit mode. For maximum safety, we shouldn't use
           * Unsafe.getLong() at all, but the performance benefit on x86_64 is too great to ignore, so
           * as a compromise, we enable the optimization only on platforms that we specifically know to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/runtime/cpuprof.go

    	// header and stack of each sample, measured in 64-bit words. Every sample
    	// has a required header of two words. With a small additional header (a
    	// word or two) and stacks at the profiler's maximum length of 64 frames,
    	// that capacity can support 1900 samples or 19 thread-seconds at a 100 Hz
    	// sample rate, at a cost of 1 MiB.
    	profBufWordCount = 1 << 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top