Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,482 for qtext (0.05 sec)

  1. src/cmd/link/internal/ld/ld.go

    	}
    	amd := ctxt.loader.LookupOrCreateSym("runtime.addmoduledata", 0)
    	if ctxt.loader.SymType(amd) == sym.STEXT && ctxt.BuildMode != BuildModePlugin {
    		// we're linking a module containing the runtime -> no need for
    		// an init function
    		return nil, 0
    	}
    	ctxt.loader.SetAttrReachable(amd, true)
    
    	// Create a new init func text symbol. Caller will populate this
    	// sym with arch-specific content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/compress/flate/testdata/huffman-text-shift.wb.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 231 bytes
    - Viewed (0)
  3. src/compress/flate/testdata/huffman-text-shift.dyn.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 231 bytes
    - Viewed (0)
  4. src/runtime/plugin.go

    		}
    
    		if inRange(pmd.text, pmd.etext, md.text, md.etext) ||
    			inRange(pmd.bss, pmd.ebss, md.bss, md.ebss) ||
    			inRange(pmd.data, pmd.edata, md.data, md.edata) ||
    			inRange(pmd.types, pmd.etypes, md.types, md.etypes) {
    			println("plugin: new module data overlaps with previous moduledata")
    			println("\tpmd.text-etext=", hex(pmd.text), "-", hex(pmd.etext))
    			println("\tpmd.bss-ebss=", hex(pmd.bss), "-", hex(pmd.ebss))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/runtime/debuglog.go

    	if len(x) > 4 && datap.etext <= uintptr(unsafe.Pointer(strData)) && uintptr(unsafe.Pointer(strData)) < datap.end {
    		// String constants are in the rodata section, which
    		// isn't recorded in moduledata. But it has to be
    		// somewhere between etext and end.
    		l.w.byte(debugLogConstString)
    		l.w.uvarint(uint64(len(x)))
    		l.w.uvarint(uint64(uintptr(unsafe.Pointer(strData)) - datap.etext))
    	} else {
    		l.w.byte(debugLogString)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning_test.go

    			args:   []args{{agent: "myagent", text: "mytext"}},
    			expect: []string{`299 myagent "mytext"`},
    		},
    		{
    			name: "duplicate text",
    			args: []args{
    				{agent: "myagent", text: "mytext"},
    				{agent: "myagent2", text: "mytext"},
    			},
    			expect: []string{`299 myagent "mytext"`},
    		},
    		{
    			name: "multiple",
    			args: []args{
    				{agent: "", text: "mytext1"},
    				{agent: "", text: "mytext2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/sym.go

    		}
    	}
    	lists := [][]*LSym{ctxt.Text, ctxt.Data}
    	files := ctxt.PosTable.FileTable()
    	for _, list := range lists {
    		for _, s := range list {
    			if flag&traverseDefs != 0 {
    				fn(s)
    			}
    			if flag&traverseRefs != 0 {
    				for _, r := range s.R {
    					fnNoNil(r.Sym)
    				}
    			}
    			if flag&traverseAux != 0 {
    				fnNoNil(s.Gotype)
    				if s.Type == objabi.STEXT {
    					f := func(parent *LSym, aux *LSym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/html/escape_test.go

    	"testing"
    )
    
    type unescapeTest struct {
    	// A short description of the test case.
    	desc string
    	// The HTML text.
    	html string
    	// The unescaped text.
    	unescaped string
    }
    
    var unescapeTests = []unescapeTest{
    	// Handle no entities.
    	{
    		"copy",
    		"A\ttext\nstring",
    		"A\ttext\nstring",
    	},
    	// Handle simple named entities.
    	{
    		"simple",
    		"&amp; &gt; &lt;",
    		"& > <",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    		if ldr.SymPkg(x) != "" || strings.Contains(name, "-tramp") || strings.HasPrefix(name, "runtime.text.") {
    			// Function within a file
    			syms = xfile.writeSymbolFunc(ctxt, x)
    		} else {
    			// Only runtime.text and runtime.etext come through this way
    			if name != "runtime.text" && name != "runtime.etext" && name != "go:buildid" {
    				Exitf("putaixsym: unknown text symbol %s", name)
    			}
    			s := &XcoffSymEnt64{
    				Nsclass: C_HIDEXT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top