Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for shentsize (0.32 sec)

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

    		if elf.Machine(eh.Machine) == elf.EM_X86_64 {
    			sh.Entsize = 16
    		} else if elf.Machine(eh.Machine) == elf.EM_S390 {
    			sh.Entsize = 32
    		} else if elf.Machine(eh.Machine) == elf.EM_PPC64 {
    			// On ppc64, this is just a table of addresses
    			// filled by the dynamic linker
    			sh.Type = uint32(elf.SHT_NOBITS)
    
    			sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    			sh.Entsize = 8
    		} else {
    			sh.Entsize = 4
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			Link:      0xFF10,
    			Info:      0x02,
    			Addralign: 0x04,
    			Entsize:   0x10,
    		})
    		// .symtab_shndx
    		binary.Write(&buf, binary.LittleEndian, Section32{
    			Name:      0x0CF3AD,
    			Type:      uint32(SHT_SYMTAB_SHNDX),
    			Off:       0x13ED1C,
    			Size:      0x03FC28,
    			Link:      0xFF0E,
    			Addralign: 0x04,
    			Entsize:   0x04,
    		})
    		// .strtab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            SearchResponse response = option.apply(client.prepareSearch(index).setScroll(scrollForUpdate).setSize(sizeForUpdate)
                    .setPreference(Constants.SEARCH_PREFERENCE_LOCAL)).execute().actionGet(fessConfig.getIndexScrollSearchTimeout());
    
            int count = 0;
            String scrollId = response.getScrollId();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		// contents in symtab.go:symtab().
    		mdsb.SetSize(0)
    
    		// In addition, on ARM, the runtime depends on the linker
    		// recording the value of GOARM.
    		if ctxt.Arch.Family == sys.ARM {
    			goarm := ctxt.loader.LookupOrCreateSym("runtime.goarm", 0)
    			sb := ctxt.loader.MakeSymbolUpdater(goarm)
    			sb.SetType(sym.SDATA)
    			sb.SetSize(0)
    			sb.AddUint8(uint8(buildcfg.GOARM.Version))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    		// The dynamic linker stores the address of the
    		// dynamic resolver and the DSO identifier in the two
    		// doublewords at the beginning of the .plt section
    		// before the PLT array. Reserve space for these.
    		plt.SetSize(16)
    	}
    }
    
    func machoreloc1(*sys.Arch, *ld.OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool {
    	return false
    }
    
    // Return the value of .TOC. for symbol s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	for name, size := range outerSymSize {
    		sym := ldr.Lookup(name, 0)
    		if sym == 0 {
    			Errorf(nil, "unknown outer symbol with name %s", name)
    		} else {
    			s := ldr.MakeSymbolUpdater(sym)
    			s.SetSize(size)
    		}
    	}
    
    	// These symbols won't show up in the first loop below because we
    	// skip sym.STEXT symbols. Normal sym.STEXT symbols are emitted by walking textp.
    	s := ldr.Lookup("runtime.text", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                stream(parameter.getSuggestFields()).of(stream -> stream.forEach(builder::addField));
                roleQueryHelper.build(SearchRequestType.SUGGEST).stream().forEach(builder::addRole);
                builder.setSize(parameter.getNum());
                stream(langs).of(stream -> stream.forEach(builder::addLang));
    
                stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    			sect.Length = uint64(len(z.compressed))
    			sect.Compressed = true
    			newSym := ldr.MakeSymbolBuilder(compressedSegName)
    			ldr.SetAttrReachable(s, true)
    			newSym.SetData(z.compressed)
    			newSym.SetSize(int64(len(z.compressed)))
    			ldr.SetSymSect(newSym.Sym(), sect)
    			ds := dwarfSecInfo{syms: []loader.Sym{newSym.Sym()}}
    			newDwarfp = append(newDwarfp, ds)
    
    			// compressed symbols are no longer needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top