Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 780 for Greater (0.1 sec)

  1. internal/bucket/lifecycle/expiration.go

    )
    
    // ExpirationDays is a type alias to unmarshal Days in Expiration
    type ExpirationDays int
    
    // UnmarshalXML parses number of days from Expiration and validates if
    // greater than zero
    func (eDays *ExpirationDays) UnmarshalXML(d *xml.Decoder, startElement xml.StartElement) error {
    	var numDays int
    	err := d.DecodeElement(&numDays, &startElement)
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    type Type int64
    
    const (
    	Int    Type = iota // The IntOrString holds an int.
    	String             // The IntOrString holds a string.
    )
    
    // FromInt creates an IntOrString object with an int32 value. It is
    // your responsibility not to call this method with a value greater
    // than int32.
    // Deprecated: use FromInt32 instead.
    func FromInt(val int) IntOrString {
    	if val > math.MaxInt32 || val < math.MinInt32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/runtime/histogram.go

    		bucketBit = timeHistMinBucketBits
    		bucket = 0 // bucketBit - timeHistMinBucketBits
    	} else {
    		bucketBit = uint(l)
    		bucket = bucketBit - timeHistMinBucketBits + 1
    	}
    	// If the bucket we computed is greater than the number of buckets,
    	// count that in overflow.
    	if bucket >= timeHistNumBuckets {
    		h.overflow.Add(1)
    		return
    	}
    	// The sub-bucket index is just next timeHistSubBucketBits after the bucketBit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/go/ast/walk.go

    	Walk(inspector(f), node)
    }
    
    // Preorder returns an iterator over all the nodes of the syntax tree
    // beneath (and including) the specified root, in depth-first
    // preorder.
    //
    // For greater control over the traversal of each subtree, use [Inspect].
    func Preorder(root Node) iter.Seq[Node] {
    	return func(yield func(Node) bool) {
    		ok := true
    		Inspect(root, func(n Node) bool {
    			if n != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // Creates directories so that path exists. Returns true if successful or if
      // the directories already exist; returns false if unable to create
      // directories for any reason. Will also return false if the FilePath does
      // not represent a directory (that is, it doesn't end with a path separator).
      bool CreateDirectoriesRecursively() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    		gateways := maps.Keys(gatewayWeights)
    		gateways = model.SortGateways(gateways)
    
    		// Create endpoints for the gateways.
    		for _, gw := range gateways {
    			epWeight := gatewayWeights[gw]
    			if epWeight == 0 {
    				log.Warnf("gateway weight must be greater than 0, scaleFactor is %d", scaleFactor)
    				epWeight = 1
    			}
    			epAddr := util.BuildAddress(gw.Addr, gw.Port)
    
    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. internal/config/errors.go

    	)
    
    	ErrInvalidNumberOfErasureEndpoints = newErrFn(
    		"Invalid total number of endpoints for erasure mode",
    		"Please provide number of endpoints greater or equal to 2",
    		"For more information, please refer to https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html",
    	)
    
    	ErrStorageClassValue = newErrFn(
    		"Invalid storage class value",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/internal/trace/raw/reader.go

    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Reader parses trace bytes with only very basic validation
    // into an event stream.
    type Reader struct {
    	r     *bufio.Reader
    	v     version.Version
    	specs []event.Spec
    }
    
    // NewReader creates a new reader for the trace wire format.
    func NewReader(r io.Reader) (*Reader, error) {
    	br := bufio.NewReader(r)
    	v, err := version.ReadHeader(br)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/internal/trace/reader.go

    	go121Events *oldTraceConverter
    }
    
    // NewReader creates a new trace reader.
    func NewReader(r io.Reader) (*Reader, error) {
    	br := bufio.NewReader(r)
    	v, err := version.ReadHeader(br)
    	if err != nil {
    		return nil, err
    	}
    	switch v {
    	case version.Go111, version.Go119, version.Go121:
    		tr, err := oldtrace.Parse(br, v)
    		if err != nil {
    			return nil, err
    		}
    		return &Reader{
    			go121Events: convertOldFormat(tr),
    		}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/gretty-example/src/main/java/org/gradle/sample/Greeter.java

    package org.gradle.sample;
    
    import java.io.InputStream;
    import org.apache.log4j.LogManager;
    
    public class Greeter {
        public String getGreeting() throws Exception {
            LogManager.getRootLogger().info("Just checking if we can use external dependencies....");
            return "hello Gradle";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 304 bytes
    - Viewed (0)
Back to top