Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 221 for Boundary (0.18 sec)

  1. src/go/doc/doc_test.go

    	return strings.ReplaceAll(strings.TrimSpace(buf.String()), "\n", "\n\t")
    }
    
    func synopsisFmt(s string) string {
    	const n = 64
    	if len(s) > n {
    		// cut off excess text and go back to a word boundary
    		s = s[0:n]
    		if i := strings.LastIndexAny(s, "\t\n "); i >= 0 {
    			s = s[0:i]
    		}
    		s = strings.TrimSpace(s) + " ..."
    	}
    	return "// " + strings.ReplaceAll(s, "\n", " ")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_ppc64x.s

    	RET
    
    check0_7:
    	CMP	R5,$0
    	MOVD	$1, R3
    	BEQLR		// return if len == 0
    
    	// Check < 8B loads with a single compare, but select the load address
    	// such that it cannot cross a page boundary. Load a few bytes from the
    	// lower address if that does not cross the lower page. Or, load a few
    	// extra bytes from the higher addresses. And align those values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/runtime/memclr_amd64.s

    	// for a memory subsystem as the GC requires this.
    	MOVQ	BX, CX
    	SHRQ	$3, CX
    	ANDQ	$7, BX
    	REP;	STOSQ
    	JMP	tail
    
    loop_preheader_avx2_huge:
    	// Align to 32 byte boundary
    	VMOVDQU  Y0, 0(DI)
    	MOVQ	DI, SI
    	ADDQ	$32, DI
    	ANDQ	$~31, DI
    	SUBQ	DI, SI
    	ADDQ	SI, BX
    loop_avx2_huge:
    	VMOVNTDQ	Y0, 0(DI)
    	VMOVNTDQ	Y0, 32(DI)
    	VMOVNTDQ	Y0, 64(DI)
    	VMOVNTDQ	Y0, 96(DI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    		// If that boundary is within our current candidate, then we may be breaking
    		// a huge page.
    		if hugePageAbove <= end {
    			// Compute the huge page boundary below our candidate.
    			hugePageBelow := uint(alignDown(uintptr(start), pagesPerHugePage))
    
    			if hugePageBelow >= end-run {
    				// We're in danger of breaking apart a huge page since start+size crosses
    				// a huge page boundary and rounding down start to the nearest huge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    ropdown form",y=".dropdown-menu",C=".navbar-nav",I=".dropdown-menu .dropdown-item:not(.disabled)",A="top-start",b="top-end",D="bottom-start",S="bottom-end",w="right-start",N="left-start",O={offset:0,flip:!0,boundary:"scrollParent"},k={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)"},L=function(){function a(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    func parseNotes(reader io.Reader, alignment int, order binary.ByteOrder) ([]elfNote, error) {
    	r := bufio.NewReader(reader)
    
    	// padding returns the number of bytes required to pad the given size to an
    	// alignment boundary.
    	padding := func(size int) int {
    		return ((size + (alignment - 1)) &^ (alignment - 1)) - size
    	}
    
    	var notes []elfNote
    	for {
    		noteHeader := make([]byte, 12) // 3 4-byte words
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/runtime/arena_test.go

    			t.Parallel()
    		}
    
    		// Allocate and write data, enough to exhaust the arena.
    		//
    		// This is an underestimate, likely leaving some space in the arena. That's a good thing,
    		// because it gives us coverage of boundary cases.
    		n := int(UserArenaChunkBytes / unsafe.Sizeof(*value))
    		if n == 0 {
    			n = 1
    		}
    
    		// Create a new arena and do a bunch of operations on it.
    		arena := NewUserArena()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/completion.go

            # Leave out first character
            printf %q "${1:1}"
        else
        	printf %q "$1"
        fi
    }
    
    autoload -U +X bashcompinit && bashcompinit
    
    # use word boundary patterns for BSD or GNU sed
    LWORD='[[:<:]]'
    RWORD='[[:>:]]'
    if sed --version 2>&1 | grep -q GNU; then
    	LWORD='\<'
    	RWORD='\>'
    fi
    
    __kubeadm_convert_bash_to_zsh() {
    	sed \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/mime/mediatype_test.go

    		{";foo=bar", "foo", "bar", ""},
    		{";FOO=bar", "foo", "bar", ""},
    		{`;foo="bar"`, "foo", "bar", ""},
    		{`;foo="bar"; `, "foo", "bar", "; "},
    		{`;foo="bar"; foo=baz`, "foo", "bar", "; foo=baz"},
    		{` ; boundary=----CUT;`, "boundary", "----CUT", ";"},
    		{` ; key=value;  blah="value";name="foo" `, "key", "value", `;  blah="value";name="foo" `},
    		{`;  blah="value";name="foo" `, "blah", "value", `;name="foo" `},
    		{`;name="foo" `, "name", "foo", ` `},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. src/cmd/cover/html.go

    }
    
    // htmlGen generates an HTML coverage report with the provided filename,
    // source code, and tokens, and writes it to the given Writer.
    func htmlGen(w io.Writer, src []byte, boundaries []cover.Boundary) error {
    	dst := bufio.NewWriter(w)
    	for i := range src {
    		for len(boundaries) > 0 && boundaries[0].Offset == i {
    			b := boundaries[0]
    			if b.Start {
    				n := 0
    				if b.Count > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top