Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for spsz (0.17 sec)

  1. src/debug/plan9obj/file.go

    		f.LoadAddress = 0x200000
    		f.HdrSize += 8
    	}
    
    	var sects = []struct {
    		name string
    		size uint32
    	}{
    		{"text", ph.Text},
    		{"data", ph.Data},
    		{"syms", ph.Syms},
    		{"spsz", ph.Spsz},
    		{"pcsz", ph.Pcsz},
    	}
    
    	f.Sections = make([]*Section, 5)
    
    	off := uint32(f.HdrSize)
    
    	for i, sect := range sects {
    		s := new(Section)
    		s.SectionHeader = SectionHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/CoreLibConstants.java

        public static final Charset CHARSET_UTF_8 = Charset.forName(UTF_8);
    
        public static final String DATE_FORMAT_ISO_8601_BASIC = "yyyyMMdd'T'HHmmss.SSSZ";
    
        public static final String DATE_FORMAT_ISO_8601_EXTEND = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
    
        public static final String DATE_FORMAT_ISO_8601_EXTEND_UTC = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
    
        public static final String DATE_FORMAT_DIGIT_ONLY = "yyyyMMddHHmmss";
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/archive/tar/reader_test.go

    	populateSparseMap := func(sa sparseArray, sps []string) []string {
    		for i := 0; len(sps) > 0 && i < sa.maxEntries(); i++ {
    			copy(sa.entry(i), sps[0])
    			sps = sps[1:]
    		}
    		if len(sps) > 0 {
    			copy(sa.isExtended(), "\x80")
    		}
    		return sps
    	}
    
    	makeInput := func(format Format, size string, sps ...string) (out []byte) {
    		// Write the initial GNU header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  4. tests/serializer_test.go

    }
    
    func (*SerializerPostgresStruct) TableName() string { return "serializer_structs" }
    
    func adaptorSerializerModel(s *SerializerStruct) interface{} {
    	if DB.Dialector.Name() == "postgres" {
    		sps := SerializerPostgresStruct(*s)
    		return &sps
    	}
    	return s
    }
    
    type Roles []string
    
    type Job struct {
    	Title    string
    	Number   int
    	Location string
    	IsIntern bool
    }
    
    type EncryptedString string
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/StyledTextOutputBackedRenderer.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Normal;
    
    public class StyledTextOutputBackedRenderer implements OutputEventListener {
        public static final String ISO_8601_DATE_TIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
    
        private final OutputEventTextOutputImpl textOutput;
        private boolean debugOutput;
        private SimpleDateFormat dateFormat;
        private RenderableOutputEvent lastEvent;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEventLogger.kt

            eventLoop.accept(now() to event)
        }
    
        private
        val eventLoop = EventLoop<Pair<Date, ResolverEvent>> { poll ->
    
            val format = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
    
            bufferedAppendWriter().use { writer ->
    
                fun write(timestamp: Date, e: ResolverEvent) {
                    try {
                        writer.write("${format.format(timestamp)} - ${prettyPrint(e)}\n\n")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. src/runtime/arena_test.go

    		for i := range mpos {
    			mpos[i] = *mpo
    		}
    		runSubTestUserArenaSlice(t, mpos, true)
    
    		sps := make([]smallPointer, UserArenaChunkBytes/unsafe.Sizeof(smallPointer{})+1)
    		for i := range sps {
    			sps[i] = *sp
    		}
    		// Not in parallel because we don't want to hold this large allocation live.
    		runSubTestUserArenaSlice(t, sps, false)
    
    		// Test zero-sized types.
    		t.Run("struct{}", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    	Addr   uintptr
    	Value  [8]byte
    	_      [40]byte
    }
    
    type Sigset_t struct {
    	Val [4]uint32
    }
    
    type Reg struct {
    	X    [30]uint64
    	Lr   uint64
    	Sp   uint64
    	Elr  uint64
    	Spsr uint32
    	_    [4]byte
    }
    
    type FpReg struct {
    	Q  [32][16]uint8
    	Sr uint32
    	Cr uint32
    	_  [8]byte
    }
    
    type FpExtendedPrecision struct{}
    
    type PtraceIoDesc struct {
    	Op   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. docs/debugging/xl-meta/main.go

    		if err != nil {
    			return nil, err
    		}
    		if len(b) < 32 {
    			return nil, fmt.Errorf("file %s too short", file)
    		}
    
    		// Extract block data.
    		ssz := shardSize(ei.V2Obj.EcBSize, ei.V2Obj.EcM)
    		b, err = bitrot(b, blockNum*ssz, ssz)
    		if err != nil {
    			return nil, err
    		}
    
    		if m.mapped == nil {
    			m.mapped = make([]byte, m.size)
    			m.filled = make([]byte, m.size)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/phi.go

    // of the appropriate phi or definition.
    // TODO: make this part of cmd/compile/internal/ssa somehow?
    func (s *state) insertPhis() {
    	if len(s.f.Blocks) <= smallBlocks {
    		sps := simplePhiState{s: s, f: s.f, defvars: s.defvars}
    		sps.insertPhis()
    		return
    	}
    	ps := phiState{s: s, f: s.f, defvars: s.defvars}
    	ps.insertPhis()
    }
    
    type phiState struct {
    	s       *state                   // SSA state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
Back to top