Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for growing (0.12 sec)

  1. operator/pkg/tpath/tree.go

    		return nil
    	}
    	return setPathContext(nc.Parent, nc.Parent.Node, false) // note: tail recursive
    }
    
    // setValueContext writes the given value to the Node in the given PathContext.
    // If setting the value requires growing the final slice, grows it.
    func setValueContext(nc *PathContext, value any, merge bool) (bool, error) {
    	if nc.Parent == nil {
    		return false, nil
    	}
    
    	vv, mapFromString := tryToUnmarshalStringToYAML(value)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	if (err == nil && pSrc == len(s)) ||
    		(err != nil && err != ErrShortDst && err != ErrShortSrc) {
    		return string(dst[:pDst]), pSrc, err
    	}
    
    	// Transform the remaining input, growing dst and src buffers as necessary.
    	for {
    		n := copy(src, s[pSrc:])
    		atEOF := pSrc+n == len(s)
    		nDst, nSrc, err := t.Transform(dst[pDst:], src[:n], atEOF)
    		pDst += nDst
    		pSrc += nSrc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/transform/transform.go

    	if (err == nil && pSrc == len(s)) ||
    		(err != nil && err != ErrShortDst && err != ErrShortSrc) {
    		return string(dst[:pDst]), pSrc, err
    	}
    
    	// Transform the remaining input, growing dst and src buffers as necessary.
    	for {
    		n := copy(src, s[pSrc:])
    		atEOF := pSrc+n == len(s)
    		nDst, nSrc, err := t.Transform(dst[pDst:], src[:n], atEOF)
    		pDst += nDst
    		pSrc += nSrc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

    // grouping control dependencies. We don't want to report warnings for these
    // ops, unless they belong to a control path between two side-effecting ops that
    // should not have any dependencies.
    bool IsIntermediateOp(IslandOp island) {
      // These two side-effect-free ops are known to be used for control dependency
      // grouping (e.g., in `BreakUpIslands` pass).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/EnumTest.java

                            System.err.println(serv.getName());
                        }
                    }
                }
            }
            catch ( SmbUnsupportedOperationException e ) {
                Assume.assumeTrue("Browsing unsupported", false);
            }
        }
    
    
        @Test
        public void testBrowseDomain () throws MalformedURLException, CIFSException {
            CIFSContext ctx = withAnonymousCredentials();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    	"strings"
    )
    
    // ParseResourceArg takes the common style of string which may be either `resource.group.com` or `resource.version.group.com`
    // and parses it out into both possibilities.  This code takes no responsibility for knowing which representation was intended
    // but with a knowledge of all GroupVersions, calling code can take a very good guess.  If there are only two segments, then
    // `*GroupVersionResource` is nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top