Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for little32 (0.16 sec)

  1. src/cmd/go/internal/work/exec.go

    	{0xFE, 0xED, 0xFA, 0xCF},                  // Mach-O big-endian 64-bit
    	{0xCE, 0xFA, 0xED, 0xFE},                  // Mach-O little-endian 32-bit
    	{0xCF, 0xFA, 0xED, 0xFE},                  // Mach-O little-endian 64-bit
    	{0x4d, 0x5a, 0x90, 0x00, 0x03, 0x00},      // PE (Windows) as generated by 6l/8l and gcc
    	{0x4d, 0x5a, 0x78, 0x00, 0x01, 0x00},      // PE (Windows) as generated by llvm for dll
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    // Data is found in Header.Ident[EI_DATA] and Header.Data.
    type Data byte
    
    const (
    	ELFDATANONE Data = 0 /* Unknown data format. */
    	ELFDATA2LSB Data = 1 /* 2's complement little-endian. */
    	ELFDATA2MSB Data = 2 /* 2's complement big-endian. */
    )
    
    var dataStrings = []intName{
    	{0, "ELFDATANONE"},
    	{1, "ELFDATA2LSB"},
    	{2, "ELFDATA2MSB"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	ab.buf[ab.off+2] = z
    	ab.buf[ab.off+3] = w
    	ab.off += 4
    }
    
    // PutInt16 writes v into the buffer using little-endian encoding.
    func (ab *AsmBuf) PutInt16(v int16) {
    	ab.buf[ab.off+0] = byte(v)
    	ab.buf[ab.off+1] = byte(v >> 8)
    	ab.off += 2
    }
    
    // PutInt32 writes v into the buffer using little-endian encoding.
    func (ab *AsmBuf) PutInt32(v int32) {
    	ab.buf[ab.off+0] = byte(v)
    	ab.buf[ab.off+1] = byte(v >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    			if tc.wantRequeued {
    				verifyEmptyQueueAndAwaitForQueueLen(ctx, t, manager, 1)
    			} else {
    				// We advance the clock to make sure there are not items awaiting
    				// to be added into the queue. We also sleep a little to give the
    				// delaying queue time to move the potential items from pre-queue
    				// into the queue asynchronously.
    				manager.clock.Sleep(fastJobApiBackoff)
    				time.Sleep(time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	// it in the other module.)
    	//
    	// To work around this we lay out the symbls whose
    	// addresses are vital for multi-module programs to work
    	// as normal symbols, and give them a little size.
    	//
    	// On AIX, as all DATA sections are merged together, ld might not put
    	// these symbols at the beginning of their respective section if there
    	// aren't real symbols, their alignment might not match the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    					Username:          "CSR Requestor",
    					SignerName:        "example.com/test-signer",
    					ExpirationSeconds: csr.DurationToExpirationSeconds(7*24*time.Hour + time.Hour), // a little bit more than a week
    				},
    				Status: certificates.CertificateSigningRequestStatus{
    					Conditions: []certificates.CertificateSigningRequestCondition{
    						{
    							Type: certificates.CertificateApproved,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    			return
    		}
    		nc, brw, err := w.(Hijacker).Hijack()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer nc.Close()
    		nc.Write([]byte("HTTP/1.1 200 OK\r\n\r\n"))
    		// Switch to a little protocol that capitalize its input lines:
    		for {
    			line, err := brw.ReadString('\n')
    			if err != nil {
    				if err != io.EOF {
    					t.Error(err)
    				}
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    }
    
    func TestCallMethodJump(t *testing.T) {
    	// In reflect.Value.Call, trigger a garbage collection after reflect.call
    	// returns but before the args frame has been discarded.
    	// This is a little clumsy but makes the failure repeatable.
    	*CallGC = true
    
    	p := &Outer{Inner: new(Inner)}
    	p.Inner.X = p
    	ValueOf(p).Method(0).Call(nil)
    
    	// Stop garbage collecting during reflect.call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top