Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,585 for room (0.15 sec)

  1. src/main/resources/fess_label.properties

    labels.homePhone=Home Phone
    labels.user_homePostalAddress=Home Postal Address
    labels.homePostalAddress=Home Postal Address
    labels.user_labeledURI=labeledURI
    labels.labeledURI=labeledURI
    labels.user_roomNumber=Room Number
    labels.roomNumber=Room Number
    labels.user_description=Description
    labels.description=Description
    labels.user_title=Title
    labels.title=Title
    labels.user_pager=Pager
    labels.pager=Pager
    labels.user_street=Street
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/obj7.go

    	AMSR:   true,
    }
    
    func (c *ctxt7) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {
    	if c.ctxt.Flag_maymorestack != "" {
    		p = c.cursym.Func().SpillRegisterArgs(p, c.newprog)
    
    		// Save LR and make room for FP, REGCTXT. Leave room
    		// for caller's saved FP.
    		const frameSize = 32
    		p = obj.Appendp(p, c.newprog)
    		p.As = AMOVD
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REGLINK
    		p.To.Type = obj.TYPE_MEM
    		p.Scond = C_XPRE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  3. src/runtime/asm_mipsx.s

    	BNE	g, R1, 2(PC)
    	JMP	runtime·badmcall(SB)
    	MOVW	fn+0(FP), REGCTXT	// context
    	MOVW	0(REGCTXT), R4	// code pointer
    	MOVW	(g_sched+gobuf_sp)(g), R29	// sp = m->g0->sched.sp
    	ADDU	$-8, R29	// make room for 1 arg and fake LR
    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    	JAL	(R4)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// and is otherwise unrelated to h.curArena.base.
    	end := h.curArena.base + ask
    	nBase := alignUp(end, physPageSize)
    	if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
    		// Not enough room in the current arena. Allocate more
    		// arena space. This may not be contiguous with the
    		// current arena, so we have to request the full ask.
    		av, asize := h.sysAlloc(ask, &h.arenaHints, true)
    		if av == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. pkg/credentialprovider/plugin/plugin.go

    	}
    
    	stdout := &bytes.Buffer{}
    	stderr := &bytes.Buffer{}
    	stdin := bytes.NewBuffer(data)
    
    	// Use a catch-all timeout of 1 minute for all exec-based plugins, this should leave enough
    	// head room in case a plugin needs to retry a failed request while ensuring an exec plugin
    	// does not run forever. In the future we may want this timeout to be tweakable from the plugin
    	// config file.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) insertOrdered(info Properties) {
    	n := rb.nrune
    	b := rb.rune[:]
    	cc := info.ccc
    	if cc > 0 {
    		// Find insertion position + move elements to make room.
    		for ; n > 0; n-- {
    			if b[n-1].ccc <= cc {
    				break
    			}
    			b[n] = b[n-1]
    		}
    	}
    	rb.nrune += 1
    	pos := uint8(rb.nbyte)
    	rb.nbyte += utf8.UTFMax
    	info.pos = pos
    	b[n] = info
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/test2json.go

    			// Emit it as the beginning (or continuation) of a partial line.
    			t := trimUTF8(l.b)
    			l.part(l.b[:t])
    			l.b = l.b[:copy(l.b, l.b[t:])]
    			l.mid = true
    		}
    
    		// There's room for more input.
    		// Slide it down in hope of completing the line.
    		if i > 0 {
    			l.b = l.b[:copy(l.b, l.b[i:])]
    		}
    	}
    }
    
    // indexEOL finds the index of a line ending,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows.go

    		// ST(0). In fastcall, they're returned in XMM0.
    		// Either way, it's not AX.
    		panic("compileCallback: float results not supported")
    	}
    	if intArgRegs == 0 {
    		// Make room for the uintptr-sized result.
    		// If there are argument registers, the return value will
    		// be passed in the first register.
    		abiMap.dstStackSize += goarch.PtrSize
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/slices/slices.go

    	return IndexFunc(s, f) >= 0
    }
    
    // Insert inserts the values v... into s at index i,
    // returning the modified slice.
    // The elements at s[i:] are shifted up to make room.
    // In the returned slice r, r[i] == v[0],
    // and r[i+len(v)] == value originally at r[i].
    // Insert panics if i is out of range.
    // This function is O(len(s) + len(v)).
    func Insert[S ~[]E, E any](s S, i int, v ...E) S {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          if (a.y != b.y) return a.y - b.y;
          return a.x - b.x;
        });
    
        // Adjust Y coordinates so that zero is at top.
        let adjust = (list.length > 0) ? list[0].y : 0;
        adjust -= ROW + 2*PADDING;  // Room for details
    
        const divs = [];
        for (const box of list) {
          box.y -= adjust;
          divs.push(drawBox(xscale, box));
        }
        divs.push(drawSep(-adjust, posTotal, negTotal));
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top