Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 869 for measure (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    In order to ensure that the inputs and outputs are properly declared use integration tests (for example using TestKit) to check that a task produces the same outputs for identical inputs and captures all output files for the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/match.go

    //     en-AU vs en-US, for example.
    // [5] In CLDR a locale inherits fields that are unspecified for this locale
    //     from its parent. Therefore, if a locale is a parent of another locale,
    //     it is a strong measure for closeness, especially when no other tie
    //     breaker rule applies. One could also argue it is inconsistent, for
    //     example, when pt-AO matches pt (which CLDR equates with pt-BR), even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    	}
    
    	if hs.c.config.CipherSuites == nil && !needFIPS() && rsaKexCiphers[hs.suite.id] {
    		tlsrsakex.Value() // ensure godebug is initialized
    		tlsrsakex.IncNonDefault()
    	}
    	if hs.c.config.CipherSuites == nil && !needFIPS() && tdesCiphers[hs.suite.id] {
    		tls3des.Value() // ensure godebug is initialized
    		tls3des.IncNonDefault()
    	}
    
    	hs.c.cipherSuite = hs.suite.id
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top