Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for isQtext (0.26 sec)

  1. src/cmd/internal/obj/sym.go

    			}
    			if flag&traverseAux != 0 {
    				fnNoNil(s.Gotype)
    				if s.Type == objabi.STEXT {
    					f := func(parent *LSym, aux *LSym) {
    						fn(aux)
    					}
    					ctxt.traverseFuncAux(flag, s, f, files)
    				} else if v := s.VarInfo(); v != nil {
    					fnNoNil(v.dwarfInfoSym)
    				}
    			}
    			if flag&traversePcdata != 0 && s.Type == objabi.STEXT {
    				fi := s.Func().Pcln
    				fnNoNil(fi.Pcsp)
    				fnNoNil(fi.Pcfile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    	}
    
    	/* text */
    	v := Rnd(int64(uint64(HEADR)+Segtext.Length), *FlagRound)
    
    	var mstext *MachoSeg
    	if ctxt.LinkMode != LinkExternal {
    		ms = newMachoSeg("__TEXT", 20)
    		ms.vaddr = uint64(va)
    		ms.vsize = uint64(v)
    		ms.fileoffset = 0
    		ms.filesize = uint64(v)
    		ms.prot1 = 7
    		ms.prot2 = 5
    		mstext = ms
    	}
    
    	for _, sect := range Segtext.Sections {
    		machoshbits(ctxt, ms, sect, "__TEXT")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    def acceptedViolations = AcceptedApiChanges.parse(apiChangesJsonDirectory.asFile.listFiles()
        .findAll { it.name.endsWith(".json") }
        .collect { providers.fileContents(apiChangesJsonDirectory.file(it.name)).asText.get() }
    )
    
    def compatibilityBaselineVersion = moduleIdentity.releasedVersions.get().mostRecentRelease.version
    
    def ARTIFACT_TYPE = Attribute.of('artifactType', String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    				if ldr.SymType(r.Sym()) == sym.STEXT {
    					// This should be an mtctr instruction. Turn it into a nop.
    					su := ldr.MakeSymbolUpdater(s)
    					const MASK_OP_MTCTR = 63<<26 | 0x3FF<<11 | 0x1FF<<1
    					rewritetonop(&ctxt.Target, ldr, su, int64(r.Off()), MASK_OP_MTCTR, OP_MTCTR)
    				}
    			case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLTCALL):
    				if ldr.SymType(r.Sym()) == sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            }
    
            @Override
            String toString() {
                return descriptor.displayName
            }
    
            boolean isTest() {
                return descriptor instanceof TestOperationDescriptor
            }
    
            boolean isTestClassOrMethod() {
                return isTest() && (descriptor.className || descriptor.methodName)
            }
    
            boolean isTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    func (af *atomicLoadPkgFlags) has(cond loadPkgFlags) bool {
    	return loadPkgFlags(af.bits.Load())&cond == cond
    }
    
    // isTest reports whether pkg is a test of another package.
    func (pkg *loadPkg) isTest() bool {
    	return pkg.testOf != nil
    }
    
    // fromExternalModule reports whether pkg was loaded from a module other than
    // the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadmacho/ldmacho.go

    			bld.SetReadOnly(readOnly)
    			bld.SetData(dat[sect.addr-c.seg.vmaddr:][:sect.size])
    		}
    		bld.SetSize(int64(len(bld.Data())))
    
    		if sect.segname == "__TEXT" {
    			if sect.name == "__text" {
    				bld.SetType(sym.STEXT)
    			} else {
    				bld.SetType(sym.SRODATA)
    			}
    		} else {
    			if sect.name == "__bss" {
    				bld.SetType(sym.SNOPTRBSS)
    				bld.SetData(nil)
    			} else {
    				bld.SetType(sym.SNOPTRDATA)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	fileX    int64
    	buildIDX int64
    
    	// Name of the kernel relocation symbol ("_text" or "_stext"), extracted from File.
    	// For linux kernel mappings generated by some tools, correct symbolization depends
    	// on knowing which of the two possible relocation symbols was used for `Start`.
    	// This is given to us as a suffix in `File` (e.g. "[kernel.kallsyms]_stext").
    	//
    	// Note, this public field is not persisted in the proto. For the purposes of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

            }
    
            listener.testPlanExecutionFinished(testPlan);
        }
    
        private void dryRun(TestIdentifier testIdentifier, TestPlan testPlan, TestExecutionListener listener) {
            if (testIdentifier.isTest()) {
                listener.executionSkipped(testIdentifier, "Gradle test execution dry run");
            } else {
                listener.executionStarted(testIdentifier);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    	} else {
    		segro = &Segtext
    	}
    
    	state.datsize = 0
    
    	/* read-only executable ELF, Mach-O sections */
    	if len(state.data[sym.STEXT]) != 0 {
    		culprit := ldr.SymName(state.data[sym.STEXT][0])
    		Errorf(nil, "dodata found an sym.STEXT symbol: %s", culprit)
    	}
    	state.allocateSingleSymSections(&Segtext, sym.SELFRXSECT, sym.SRODATA, 05)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top