Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 288 for growing (0.3 sec)

  1. src/strings/strings.go

    	// larger chunks as the source of the write, as when the source
    	// is too large we are basically just thrashing the CPU D-cache.
    	// So if the result length is larger than an empirically-found
    	// limit (8KB), we stop growing the source string once the limit
    	// is reached and keep reusing the same source string - that
    	// should therefore be always resident in the L1 cache - until we
    	// have completed the construction of the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    		break
    	}
    
    	i := 0
    	for {
    		// Look ahead for ] - can only happen on first iteration.
    		d.scanWhile(scanSkipSpace)
    		if d.opcode == scanEndArray {
    			break
    		}
    
    		// Expand slice length, growing the slice if necessary.
    		if v.Kind() == reflect.Slice {
    			if i >= v.Cap() {
    				v.Grow(1)
    			}
    			if i >= v.Len() {
    				v.SetLen(i + 1)
    			}
    		}
    
    		if i < v.Len() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one.go

    	if !sched.hasExtenderFilters() && !sched.hasScoring(fwk) {
    		numNodesToFind = 1
    	}
    
    	// Create feasible list with enough space to avoid growing it
    	// and allow assigning.
    	feasibleNodes := make([]*framework.NodeInfo, numNodesToFind)
    
    	if !fwk.HasFilterPlugins() {
    		for i := range feasibleNodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    		// remains true, since otherwise the second readMetricsLocked below could
    		// allocate before it returns.
    		readMetricsLocked(samplesp, len, cap)
    
    		// Read memstats first. It's going to flush
    		// the mcaches which readMetrics does not do, so
    		// going the other way around may result in
    		// inconsistent statistics.
    		readmemstats_m(memStats)
    
    		// Read metrics again. We need to be sure we're on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    			// mark the object.
    			//
    			// Note that it's possible for findObject to
    			// fail if obj points to a just-allocated heap
    			// object because of a race with growing the
    			// heap. In this case, we know the object was
    			// just allocated and hence will be marked by
    			// allocation itself.
    			if obj, span, objIndex := findObject(obj, b, addr-b); obj != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	// 1.  Grow. This triggers two reallocations in Map.
    	maxRune := func(rune) rune { return unicode.MaxRune }
    	m := Map(maxRune, a)
    	expect := tenRunes(unicode.MaxRune)
    	if m != expect {
    		t.Errorf("growing: expected %q got %q", expect, m)
    	}
    
    	// 2. Shrink
    	minRune := func(rune) rune { return 'a' }
    	m = Map(minRune, tenRunes(unicode.MaxRune))
    	expect = a
    	if m != expect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    			"-m", "conntrack",
    			"!", "--ctstate", "RELATED,ESTABLISHED,DNAT",
    			"-j", "DROP",
    		)
    	}
    
    	// Accumulate NAT chains to keep.
    	activeNATChains := sets.New[utiliptables.Chain]()
    
    	// To avoid growing this slice, we arbitrarily set its size to 64,
    	// there is never more than that many arguments for a single line.
    	// Note that even if we go over 64, it will still be correct - it
    	// is just for efficiency, not correctness.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    	// 1.  Grow. This triggers two reallocations in Map.
    	maxRune := func(r rune) rune { return unicode.MaxRune }
    	m := Map(maxRune, []byte(a))
    	expect := tenRunes(unicode.MaxRune)
    	if string(m) != expect {
    		t.Errorf("growing: expected %q got %q", expect, m)
    	}
    
    	// 2. Shrink
    	minRune := func(r rune) rune { return 'a' }
    	m = Map(minRune, []byte(tenRunes(unicode.MaxRune)))
    	expect = a
    	if string(m) != expect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	//   slice = <some new slice>
    	// you should always do one of the below:
    	//   slice = slice[:0] // and then append to it
    	//   slice = append(slice[:0], ...)
    	// To avoid growing this slice, we arbitrarily set its size to 64,
    	// there is never more than that many arguments for a single line.
    	// Note that even if we go over 64, it will still be correct - it
    	// is just for efficiency, not correctness.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    // So far, this mirrors how out of clusters work (address set means to use existing IP, unset means to provision one),
    // and there has been growing consensus on this model for in cluster deployments.
    //
    // Currently, the supported options are:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top