Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for seg3 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	j := 0
    	d := i.multiSeg
    	for j < len(d) {
    		info := i.rb.f.info(input{bytes: d}, j)
    		if info.BoundaryBefore() {
    			i.rb.compose()
    			seg := i.buf[:i.rb.flushCopy(i.buf[:])]
    			i.rb.insertUnsafe(input{bytes: d}, j, info)
    			i.multiSeg = d[j+int(info.size):]
    			return seg
    		}
    		i.rb.insertUnsafe(input{bytes: d}, j, info)
    		j += int(info.size)
    	}
    	i.multiSeg = nil
    	i.next = nextComposed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/iter.go

    	j := 0
    	d := i.multiSeg
    	for j < len(d) {
    		info := i.rb.f.info(input{bytes: d}, j)
    		if info.BoundaryBefore() {
    			i.rb.compose()
    			seg := i.buf[:i.rb.flushCopy(i.buf[:])]
    			i.rb.insertUnsafe(input{bytes: d}, j, info)
    			i.multiSeg = d[j+int(info.size):]
    			return seg
    		}
    		i.rb.insertUnsafe(input{bytes: d}, j, info)
    		j += int(info.size)
    	}
    	i.multiSeg = nil
    	i.next = nextComposed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    			offset += zeroEnd
    		}
    	}
    
    	writeUleb128(ctxt.Out, uint64(len(segments))) // number of data entries
    	for _, seg := range segments {
    		writeUleb128(ctxt.Out, 0) // memidx
    		writeI32Const(ctxt.Out, seg.offset)
    		ctxt.Out.WriteByte(0x0b) // end
    		writeUleb128(ctxt.Out, uint64(len(seg.data)))
    		ctxt.Out.Write(seg.data)
    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. pkg/volume/util/subpath/subpath_linux.go

    	currentPath := base
    
    	// Follow the segments one by one using openat() to make
    	// sure the user cannot change already existing directories into symlinks.
    	for _, seg := range segments {
    		var deviceStat unix.Stat_t
    
    		currentPath = filepath.Join(currentPath, seg)
    		if !mount.PathWithinBase(currentPath, base) {
    			return -1, fmt.Errorf("path %s is outside of allowed base %s", currentPath, base)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_test.go

    	set1 := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	set3 := newStatefulSet(3)
    	set3.Name = "foo3"
    	set3.Spec.Selector.MatchLabels = map[string]string{"foo3": "bar"}
    	pod := newStatefulSetPod(set1, 0)
    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    	om.setsIndexer.Add(set3)
    
    	// Make pod an orphan. Expect matching sets to be queued.
    	pod.OwnerReferences = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    	if !strings.Contains(s, "/") {
    		return resourceTuple{}, false, nil
    	}
    	seg := strings.Split(s, "/")
    	if len(seg) != 2 {
    		return resourceTuple{}, false, fmt.Errorf("arguments in resource/name form may not have more than one slash")
    	}
    	resource, name := seg[0], seg[1]
    	if len(resource) == 0 || len(name) == 0 || len(SplitResourceArgument(resource)) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  7. src/runtime/race_s390x.s

    TEXT	racecallatomic<>(SB), NOSPLIT, $0
    	MOVD	24(R15), R5			// Address (arg1, after 2xBL).
    	// If we pass an invalid pointer to the TSan runtime, it will cause a
    	// "fatal error: unknown caller pc". So trigger a SEGV here instead.
    	MOVB	(R5), R0
    	MOVD	runtime·racearenastart(SB), R0
    	CMPUBLT	R5, R0, racecallatomic_data	// Before racearena start?
    	MOVD	runtime·racearenaend(SB), R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/runtime/race_arm64.s

    	// R0 = *ThreadState
    	// R1 = caller pc
    	// R2 = pc
    	// R3 = addr of incoming arg list
    
    	// Trigger SIGSEGV early.
    	MOVD	40(RSP), R3	// 1st arg is addr. after two times BL, get it at 40(RSP)
    	MOVB	(R3), R13	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    	MOVD	runtime·racearenastart(SB), R10
    	CMP	R10, R3
    	BLT	racecallatomic_data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. test/escape_reflect.go

    func set2(x int) int64 {
    	var a int // ERROR "moved to heap: a"
    	v := reflect.ValueOf(&a).Elem()
    	vx := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	v.Set(vx)
    	return v.Int()
    }
    
    func set3(v reflect.Value, x int) { // ERROR "v does not escape"
    	v.SetInt(int64(x))
    }
    
    func set4(x int) int {
    	var a int
    	v := reflect.ValueOf(&a).Elem() // a should not escape, no error printed
    	v.SetInt(int64(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/runtime/race_ppc64le.s

    // R8 contains addr of target function.
    TEXT	racecallatomic<>(SB), NOSPLIT, $0-0
    	// Trigger SIGSEGV early if address passed to atomic function is bad.
    	MOVD	(R6), R7	// 1st arg is addr
    	MOVB	(R7), R9	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    	MOVD	runtime·racearenastart(SB), R9
    	CMP	R7, R9
    	BLT	racecallatomic_data
    	MOVD	runtime·racearenaend(SB), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top