Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for learner (0.75 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	TWOSTOPBITS  = 2
    )
    
    // EscapeCommFunction constants. See https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-escapecommfunction.
    const (
    	SETXOFF  = 1
    	SETXON   = 2
    	SETRTS   = 3
    	CLRRTS   = 4
    	SETDTR   = 5
    	CLRDTR   = 6
    	SETBREAK = 8
    	CLRBREAK = 9
    )
    
    // PurgeComm constants. See https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-purgecomm.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // linux/if_pppox.h causes some declaration conflicts with other
    // includes (linux/if_pppox.h includes linux/in.h, which conflicts
    // with netinet/in.h). Given that we only need a single zero constant
    // out of that file, it's cleaner to just define it by hand here.
    const px_proto_oe = 0
    
    type SockaddrPPPoE struct {
    	SID    uint16
    	Remote []byte
    	Dev    string
    	raw    RawSockaddrPPPoX
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    )
    
    type SlotID int32
    type VarID int32
    
    // A FuncDebug contains all the debug information for the variables in a
    // function. Variables are identified by their LocalSlot, which may be
    // the result of decomposing a larger variable.
    type FuncDebug struct {
    	// Slots is all the slots used in the debug info, indexed by their SlotID.
    	Slots []LocalSlot
    	// The user variables, indexed by VarID.
    	Vars []*ir.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		// first/last functions for moduledata.
    		argv = append(argv, "-Wl,-bnoobjreorder")
    		// mcmodel=large is needed for every gcc generated files, but
    		// ld still need -bbigtoc in order to allow larger TOC.
    		argv = append(argv, "-mcmodel=large")
    		argv = append(argv, "-Wl,-bbigtoc")
    	}
    
    	// On PPC64, verify the external toolchain supports Power10. This is needed when
    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/ld/elf.go

     */
    
    var elfstrdat, elfshstrdat []byte
    
    /*
     * Total amount of space to reserve at the start of the file
     * for Header, PHeaders, SHeaders, and interp.
     * May waste some.
     * On FreeBSD, cannot be larger than a page.
     */
    const (
    	ELFRESERVE = 4096
    )
    
    /*
     * We use the 64-bit data structures on both 32- and 64-bit machines
     * in order to write the code just once.  The 64-bit data structure is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    	// that we have fetched module source code (and, importantly, checksums for
    	// that source code) for all modules that are necessary to ensure that imports
    	// are unambiguous. That also produces clearer diagnostics, since we can say
    	// exactly what happened to the package if it became ambiguous or disappeared
    	// entirely.
    	//
    	// We re-resolve the packages in parallel because this process involves disk
    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/bytes/bytes_test.go

    		actual := LastIndexByte([]byte(test.a), test.b[0])
    		if actual != test.i {
    			t.Errorf("LastIndexByte(%q,%c) = %v; want %v", test.a, test.b[0], actual, test.i)
    		}
    	}
    }
    
    // test a larger buffer with different sizes and alignments
    func TestIndexByteBig(t *testing.T) {
    	var n = 1024
    	if testing.Short() {
    		n = 128
    	}
    	b := make([]byte, n)
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    		}
    
    		fatalf("unresolved names")
    	}
    
    	return needType
    }
    
    // loadDWARF parses the DWARF debug information generated
    // by gcc to learn the details of the constants, variables, and types
    // being referred to as C.xxx.
    func (p *Package) loadDWARF(f *File, conv *typeConv, names []*Name) {
    	// Extract the types from the DWARF section of an object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		// When we branched from parent we learned a new set of
    		// restrictions. Update the factsTable accordingly.
    		d := tr.d
    		if d == signed && ft.isNonNegative(c.Args[0]) && ft.isNonNegative(c.Args[1]) {
    			d |= unsigned
    		}
    		switch c.Op {
    		case OpIsInBounds, OpIsSliceInBounds:
    			// 0 <= a0 < a1 (or 0 <= a0 <= a1)
    			//
    			// On the positive branch, we learn:
    			//   signed: 0 <= a0 < a1 (or 0 <= a0 <= a1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - *const instructions may use a constant larger than the instruction can encode.
    //    In this case the assembler expands to multiple instructions and uses tmp
    //    register (R27).
    //  - All 32-bit Ops will zero the upper 32 bits of the destination register.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top