Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for vtoc (0.07 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

        }
    
        .appendix .toc > dl > dt,
        .appendix .toc > dl > dt:last-of-type
        .book .home .toc > dl > dt,
        .book .home .toc > dl > dt:last-of-type
        .chapter .toc > dl > dt,
        .chapter .toc > dl > dt:last-of-type {
            padding: 0.5rem 0;
            margin: 0;
        }
    
        .appendix .toc a,
        .book .home .toc a,
        .chapter .toc a {
            padding-left: 10px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    #toc>ul>li:last-of-type {
    	padding-bottom: 0;
    }
    
    #toc a {
    	font-style: normal;
    }
    
    #toc a:hover,
    #toc a:focus,
    #toc a:hover code,
    #toc a:focus code {
    	color: #1DA2BD;
    }
    
    #toc a:active {
    	text-decoration: none;
    }
    
    /* Site header specific styles */
    .hamburger {
    	background-color: transparent;
    	background-image: none;
    	border: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    		// becomes
    		//     MOVD runtime.duffxxx@TOC, R12
    		//     ADD $offset, R12
    		//     MOVD R12, LR
    		//     BL (LR)
    		var sym *obj.LSym
    		if p.As == obj.ADUFFZERO {
    			sym = c.ctxt.Lookup("runtime.duffzero")
    		} else {
    			sym = c.ctxt.Lookup("runtime.duffcopy")
    		}
    		// Retrieve or create the TOC anchor.
    		symtoc := c.ctxt.LookupInit("TOC."+sym.Name, func(s *obj.LSym) {
    			s.Type = objabi.SDATA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            Elements h23elements = document.select("h2,h3");
            for (Element h23element: h23elements) {
                String tag = h23element.tagName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/go/types/example_test.go

    	var files []*ast.File
    	for _, src := range []string{
    		`package main
    import "fmt"
    func main() {
    	freezing := FToC(-18)
    	fmt.Println(freezing, Boiling) }
    `,
    		`package main
    import "fmt"
    type Celsius float64
    func (c Celsius) String() string { return fmt.Sprintf("%g°C", c) }
    func FToC(f float64) Celsius { return Celsius(f - 32 / 9 * 5) }
    const Boiling Celsius = 100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTask.kt

        }
    
        /**
         * It appears there is no way to configure Gson to use 4 spaces instead of 2 for indentation.
         *
         * See: https://github.com/google/gson/blob/master/UserGuide.md#TOC-Compact-Vs.-Pretty-Printing-for-JSON-Output-Format
         */
        private
        fun adjustIndentation(initalJsonString: String): String {
            val indentationRegex = """^\s+""".toRegex(RegexOption.MULTILINE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    //
    // When dynamically linking Go, it can be returned to from a function
    // implemented in a different module and so needs to reload the TOC pointer
    // from the stack (although this function declares that it does not set up x-a
    // frame, newproc1 does in fact allocate one for goexit and saves the TOC
    // pointer in the correct place).
    // goexit+_PCQuantum is halfway through the usual global entry point prologue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/sym.go

    		panic("NumberSyms called without package path")
    	}
    
    	if ctxt.Headtype == objabi.Haix {
    		// Data must be in a reliable order for reproducible builds.
    		// The original entries are in a reliable order, but the TOC symbols
    		// that are added in Progedit are added by different goroutines
    		// that can be scheduled independently. We need to reorder those
    		// symbols reliably. Sort by name but use a stable sort, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    		}
    		for i := range ctxt.DotTOC {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    			if toc := ldr.Lookup(".TOC.", i); toc != 0 {
    				ldr.SetSymValue(toc, tocAddr)
    			}
    		}
    	}
    
    	return order
    }
    
    // layout assigns file offsets and lengths to the segments in order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  10. src/cmd/link/internal/ld/lib.go

    	if ctxt.IsPPC64() {
    		ctxt.mkArchSym("TOC", 0, &ctxt.TOC)
    
    		ctxt.DotTOC = make([]loader.Sym, ctxt.MaxVersion()+1)
    		for i := 0; i <= ctxt.MaxVersion(); i++ {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    			ctxt.mkArchSymVec(".TOC.", i, ctxt.DotTOC)
    		}
    	}
    	if ctxt.IsElf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top