Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for coffsets (0.13 sec)

  1. src/main/webapp/js/admin/bootstrap.min.js

    .hasClass(Wt)&&(e=$t),e},t._detectNavbar=function(){return 0<g(this._element).closest(".navbar").length},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,{},e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._c...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  2. src/main/webapp/js/bootstrap.min.js

    .hasClass(Wt)&&(e=$t),e},t._detectNavbar=function(){return 0<g(this._element).closest(".navbar").length},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,{},e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._c...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	}
    
    	return false
    }
    
    // overlap reports whether the ranges given by the given offset and
    // size pairs overlap.
    func overlap(offset1, size1, offset2, size2 int64) bool {
    	if offset1 >= offset2 && offset2+size2 > offset1 {
    		return true
    	}
    	if offset2 >= offset1 && offset1+size1 > offset2 {
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	Lstlen   uint32 // Length of string table
    	Limpoff  uint64 // Offset to start of import file IDs
    	Lstoff   uint64 // Offset to start of string table
    	Lsymoff  uint64 // Offset to start of symbol table
    	Lrldoff  uint64 // Offset to start of relocation entries
    }
    
    // Loader Symbol
    type XcoffLdSym64 struct {
    	Lvalue  uint64 // Address field
    	Loffset uint32 // Byte offset into string table of symbol name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVDaddr", argLength: 1, reg: addr, aux: "SymOff", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxint + offset encoded in aux
    		{name: "MOVDaddridx", argLength: 2, reg: addridx, aux: "SymOff", symEffect: "Addr"},                    // arg0 + arg1 + auxint + aux
    
    		// auxint+aux == add auxint and the offset of the symbol in aux (if any) to the effective address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    		return
    	}
    	if len(text) == 1 {
    		sa[0] = 0
    		return
    	}
    
    	// Establish slices indexed by text character
    	// holding character frequency and bucket-sort offsets.
    	// If there's only enough tmp for one slice,
    	// we make it the bucket offsets and recompute
    	// the character frequency each time we need it.
    	var freq, bucket []int64
    	if len(tmp) >= 2*textMax {
    		freq, bucket = tmp[:textMax], tmp[textMax:2*textMax]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Indexed ops generate indexed load or store instructions for all GOPPC64 values.
    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    // and on power8 and power9, a multiple of 4 is required for MOVW and MOVD ops.
    // On power10, prefixed loads and stores can be used for offsets > 16 bits and <= 32 bits.
    // and support for PC relative addressing must be available if relocation is needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/time/time_test.go

    		t.Errorf("sec = %d, nsec = %d, want sec = %d, nsec = 0", t2.Second(), t2.Nanosecond(), sec)
    	}
    }
    
    func equalTimeAndZone(a, b Time) bool {
    	aname, aoffset := a.Zone()
    	bname, boffset := b.Zone()
    	return a.Equal(b) && aoffset == boffset && aname == bname
    }
    
    var gobTests = []Time{
    	Date(0, 1, 2, 3, 4, 5, 6, UTC),
    	Date(7, 8, 9, 10, 11, 12, 13, FixedZone("", 0)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    					p.AddRestSource(obj.Addr{Type: obj.TYPE_CONST, Offset: p.To.Offset, Sym: p.To.Sym})
    					p.From = obj.Addr{Type: obj.TYPE_CONST, Offset: 0}
    					p.Reg = obj.REG_NONE
    					p.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_TMP}
    
    					rescan = true
    					break
    				}
    				offset := p.To.Target().Pc - p.Pc
    				if offset < -(1<<20) || (1<<20) <= offset {
    					// Replace with 2-instruction sequence. This assumes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		// offsets that are a multiple of 4. If the offset is not a multiple of 4,
    		// then the address of the symbol to be loaded is computed (base + offset)
    		// and used as the new base register and the offset field in the instruction
    		// can be set to zero.
    
    		// This same problem can happen with gostrings since the final offset is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top