Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,337 for measure (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// bisect more robust, we use the y and n runs to create an estimate of the
    	// number of bits needed for a unique suffix, and then we round it up to
    	// a number of hex digits, with one extra digit for good measure, and then
    	// we always use that many hex digits for skips.
    	SkipHexDigits int
    
    	// Add is a list of suffixes to add to every trial, because they
    	// contain changes that are necessary for a group we are assembling.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager.go

    		pod = newPod
    		// We pass a new object (result of API call which contains updated ResourceVersion)
    		m.podStartupLatencyHelper.RecordStatusUpdated(pod)
    	}
    
    	// measure how long the status update took to propagate from generation to update on the server
    	if status.at.IsZero() {
    		klog.V(3).InfoS("Pod had no status time set", "pod", klog.KObj(pod), "podUID", uid, "version", status.version)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/switch.go

    	// equality comparison, they don't get CSEd and the equality comparisons will be
    	// done using wider loads.
    
    	n := len(ir.StringVal(cc[0].lo)) // Length of the constant strings.
    	bestScore := int64(0)            // measure of how good the split is.
    	bestIdx := 0                     // split using expr[bestIdx]
    	bestByte := int8(0)              // compare expr[bestIdx] against bestByte
    	for idx := 0; idx < n; idx++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. src/cmd/internal/dwarf/dwarf.go

    // of the function (any inlined copy of it, or the single out-of-line
    // 'concrete' instance) will contain a pointer back to this abstract
    // DIE (as a space-saving measure, so that name/type etc doesn't have
    // to be repeated for each inlined copy).
    func PutAbstractFunc(ctxt Context, s *FnState) error {
    	if logDwarf {
    		ctxt.Logf("PutAbstractFunc(%v)\n", s.Absfn)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. cmd/erasure.go

    	// Put all buckets into channel.
    	bucketCh := make(chan BucketInfo, len(buckets))
    
    	// Shuffle buckets to ensure total randomness of buckets, being scanned.
    	// Otherwise same set of buckets get scanned across erasure sets always.
    	// at any given point in time. This allows different buckets to be scanned
    	// in different order per erasure set, this wider spread is needed when
    	// there are lots of buckets with different order of objects in them.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    == Declaring a custom repository by URL
    
    Most enterprise projects set up a binary repository available only within an intranet.
    In-house repositories enable teams to publish internal binaries, setup user management and security measure and ensure uptime and availability.
    Specifying a custom URL is also helpful if you want to declare a less popular, but publicly-available repository.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// gc-time statistics about current goroutines
    	// Note that this differs from maxStackScan in that this
    	// accumulates the actual stack observed to be used at GC time (hi - sp),
    	// not an instantaneous measure of the total stack size that might need
    	// to be scanned (hi - lo).
    	scannedStackSize uint64 // stack size of goroutines scanned by this P
    	scannedStacks    uint64 // number of goroutines scanned by this P
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. cmd/erasure-healing.go

    		errs, latestMeta, bucket, object, scanMode)
    
    	var erasure Erasure
    	if !latestMeta.Deleted && !latestMeta.IsRemote() {
    		// Initialize erasure coding
    		erasure, err = NewErasure(ctx, latestMeta.Erasure.DataBlocks,
    			latestMeta.Erasure.ParityBlocks, latestMeta.Erasure.BlockSize)
    		if err != nil {
    			return result, err
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  9. cmd/format-erasure.go

    	formatV2.Format = formatBackendErasure
    	formatV2.Erasure.Version = formatErasureVersionV2
    	formatV2.Erasure.DistributionAlgo = formatErasureVersionV2DistributionAlgoV1
    	formatV2.Erasure.This = formatV1.Erasure.Disk
    	formatV2.Erasure.Sets = make([][]string, 1)
    	formatV2.Erasure.Sets[0] = make([]string, len(formatV1.Erasure.JBOD))
    	copy(formatV2.Erasure.Sets[0], formatV1.Erasure.JBOD)
    
    	return json.Marshal(formatV2)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	case size < fi.Erasure.BlockSize:
    		// No need to allocate fully fi.Erasure.BlockSize buffer if the incoming data is smaller.
    		buffer = make([]byte, size, 2*size+int64(fi.Erasure.ParityBlocks+fi.Erasure.DataBlocks-1))
    	}
    
    	if len(buffer) > int(fi.Erasure.BlockSize) {
    		buffer = buffer[:fi.Erasure.BlockSize]
    	}
    	writers := make([]io.Writer, len(onlineDisks))
    	for i, disk := range onlineDisks {
    		if disk == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top