Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for leastOf (0.17 sec)

  1. cmd/erasure-object.go

    	for i := range onlineMeta {
    		// verify metadata is valid, it has similar erasure info
    		// as well as common modtime, if modtime is not possible
    		// verify if it has common "etag" at least.
    		if onlineMeta[i].IsValid() && onlineMeta[i].Erasure.Equal(fi.Erasure) {
    			ok := onlineMeta[i].ModTime.Equal(modTime)
    			if modTime.IsZero() || modTime.Equal(timeSentinel) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

          if (matches((char) c)) {
            table.set(c);
          }
        }
      }
    
      // Text processing routines
    
      /**
       * Returns {@code true} if a character sequence contains at least one matching BMP character.
       * Equivalent to {@code !matchesNoneOf(sequence)}.
       *
       * <p>The default implementation iterates over the sequence, invoking {@link #matches} for each
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/runtime/map.go

    	bucketCntBits = abi.MapBucketCountBits
    
    	// Maximum average load of a bucket that triggers growth is bucketCnt*13/16 (about 80% full)
    	// Because of minimum alignment rules, bucketCnt is known to be at least 8.
    	// Represent as loadFactorNum/loadFactorDen, to allow integer math.
    	loadFactorDen = 2
    	loadFactorNum = loadFactorDen * abi.MapBucketCount * 13 / 16
    
    	// data offset should be the size of the bmap struct, but needs to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// auditAnnotations contains CEL expressions which are used to produce audit
    	// annotations for the audit event of the API request.
    	// validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is
    	// required.
    	// +listType=atomic
    	// +optional
    	AuditAnnotations []AuditAnnotation `json:"auditAnnotations,omitempty" protobuf:"bytes,5,rep,name=auditAnnotations"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

          if (matches((char) c)) {
            table.set(c);
          }
        }
      }
    
      // Text processing routines
    
      /**
       * Returns {@code true} if a character sequence contains at least one matching BMP character.
       * Equivalent to {@code !matchesNoneOf(sequence)}.
       *
       * <p>The default implementation iterates over the sequence, invoking {@link #matches} for each
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    				// We can't find the package because it doesn't — or can't — even exist
    				// in any module at the latest version. (Note that invalid module paths
    				// could in general exist due to replacements, so we at least need to
    				// run the query to check those.)
    				//
    				// There is no version change we can make to fix the package, so leave
    				// it unresolved. Either some other query (perhaps a wildcard matching a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	a := new(dwarf.DWAttr)
    	a.Link = die.Attr
    	die.Attr = a
    	a.Atr = attr
    	a.Cls = uint8(cls)
    	a.Value = value
    	a.Data = data
    }
    
    // Each DIE (except the root ones) has at least 1 attribute: its
    // name. getattr moves the desired one to the front so
    // frequently searched ones are found faster.
    func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr {
    	if die.Attr.Atr == attr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	syncHandler         func(ctx context.Context, jobKey string) error
    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	return hashAndTruncate(name)
    }
    
    func isServiceChainName(chainString string) bool {
    	// The chains returned from servicePortChainNameBase and
    	// servicePortEndpointChainNameBase will always have at least one "/" in them.
    	// Since none of our "stock" chain names use slashes, we can distinguish them this
    	// way.
    	return strings.Contains(chainString, "/")
    }
    
    func isAffinitySetName(set string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits. At least that's the idea.
    // There are various irregularities. For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top