Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for isQtext (0.15 sec)

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

    		// alignment has not yet been set.
    		return 0
    	}
    	// TODO: would it make sense to return an arch-specific
    	// alignment depending on section type? E.g. STEXT => 32,
    	// SDATA => 1, etc?
    	abits := l.align[i]
    	if abits == 0 {
    		return 0
    	}
    	return int32(1 << (abits - 1))
    }
    
    // SetSymAlign sets the alignment for a symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		// TODO(mwhudson): presumably the behavior should actually be the same on both arm and 386.
    		if target.Arch.Family == sys.I386 && cgoexp && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else if target.Arch.Family == sys.ARM && cgoeDynamic && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_OBJECT)
    		}
    		d.AddUint8(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(cssText){if(node.selector){text+=node.selector+' '+this.OPEN_BRACE+'\n';}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

             <artifact name="fastutil-8.5.2.jar">
                <pgp value="0CB5871FB7BF3B351614BBF6CA85FFE638D4407A"/>
             </artifact>
          </component>
          <component group="itext" name="itext" version="2.0.8">
             <artifact name="itext-2.0.8.jar">
                <sha256 value="d6e41bfa732ecc84ba6c0850a4e36d57ee665a9b8eb1184ba5c4ef8d301f24bd" reason="Artifact is not signed"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. .space/CODEOWNERS

    /compiler/testData/friendPaths/ "Kotlin Compiler Core"
    # UNKNOWN: /compiler/testData/integration/
    /compiler/testData/ir/closureAnnotator/ "Kotlin JVM"
    /compiler/testData/ir/interpreter/ "Kotlin Common Backend"
    /compiler/testData/ir/irText/ "Kotlin Compiler Core" "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/testData/ir/klibLayout/ "Kotlin Common Backend"
    /compiler/testData/ir/sourceRanges/ "Kotlin Compiler Core"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/dwarf.go

    func isDwarf64(ctxt *Link) bool {
    	return ctxt.Headtype == objabi.Haix
    }
    
    func (ctxt *Link) dwarfSym(s *LSym) (dwarfInfoSym, dwarfLocSym, dwarfRangesSym, dwarfAbsFnSym, dwarfDebugLines *LSym) {
    	if s.Type != objabi.STEXT {
    		ctxt.Diag("dwarfSym of non-TEXT %v", s)
    	}
    	fn := s.Func()
    	if fn.dwarfInfoSym == nil {
    		fn.dwarfInfoSym = &LSym{
    			Type: objabi.SDWARFFCN,
    		}
    		if ctxt.Flag_locationlists {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    	case "FUNCDATA":
    		p.asmFuncData(operands)
    	case "GLOBL":
    		p.asmGlobl(operands)
    	case "PCDATA":
    		p.asmPCData(operands)
    	case "PCALIGN":
    		p.asmPCAlign(operands)
    	case "TEXT":
    		p.asmText(operands)
    	default:
    		return false
    	}
    	return true
    }
    
    // symDefRef scans a line for potential text symbol definitions and
    // references and writes symabis information to w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            file('fis-abs.txt').text = 'fis-abs'
            buildFile '''
                providers.fileContents(layout.projectDirectory.file("provider.txt")).with { provider ->
                    println("provider = ${provider.asText.get()}")
                }
    
                new FileInputStream("fis-path.txt").withCloseable { fis ->
                    println("fis = ${fis.text}")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. doc/asm.html

    </p>
    
    <pre>
    $ cat x.go
    package main
    
    func main() {
    	println(3)
    }
    $ GOOS=linux GOARCH=amd64 go tool compile -S x.go        # or: go build -gcflags -S x.go
    "".main STEXT size=74 args=0x0 locals=0x10
    	0x0000 00000 (x.go:3)	TEXT	"".main(SB), $16-0
    	0x0000 00000 (x.go:3)	MOVQ	(TLS), CX
    	0x0009 00009 (x.go:3)	CMPQ	SP, 16(CX)
    	0x000d 00013 (x.go:3)	JLS	67
    	0x000f 00015 (x.go:3)	SUBQ	$16, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    						"subRule": {
    							Type: "object",
    							XValidations: apiextensions.ValidationRules{
    								{
    									Rule:    "self.isTest == true",
    									Message: "isTest should be true.",
    								},
    							},
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"isTest": {
    									Type: "boolean",
    								},
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top