Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 121 for 0_80 (0.2 sec)

  1. src/main/java/jcifs/spnego/NegTokenInit.java

    import jcifs.util.Hexdump;
    
    
    /**
     * SPNEGO initial token
     */
    @SuppressWarnings ( "javadoc" )
    public class NegTokenInit extends SpnegoToken {
    
        public static final int DELEGATION = 0x80;
        public static final int MUTUAL_AUTHENTICATION = 0x40;
        public static final int REPLAY_DETECTION = 0x20;
        public static final int SEQUENCE_CHECKING = 0x10;
        public static final int ANONYMITY = 0x08;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/syscall/ztypes_netbsd_386.go

    	Sendpipe uint64
    	Ssthresh uint64
    	Rtt      uint64
    	Rttvar   uint64
    	Expire   int64
    	Pksent   int64
    }
    
    type Mclpool [0]byte
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x80
    	SizeofBpfProgram = 0x8
    	SizeofBpfInsn    = 0x8
    	SizeofBpfHdr     = 0x14
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  3. src/syscall/ztypes_netbsd_amd64.go

    	Sendpipe uint64
    	Ssthresh uint64
    	Rtt      uint64
    	Rttvar   uint64
    	Expire   int64
    	Pksent   int64
    }
    
    type Mclpool [0]byte
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x80
    	SizeofBpfProgram = 0x10
    	SizeofBpfInsn    = 0x8
    	SizeofBpfHdr     = 0x20
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. src/syscall/ztypes_netbsd_arm.go

    	Sendpipe uint64
    	Ssthresh uint64
    	Rtt      uint64
    	Rttvar   uint64
    	Expire   int64
    	Pksent   int64
    }
    
    type Mclpool [0]byte
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x80
    	SizeofBpfProgram = 0x8
    	SizeofBpfInsn    = 0x8
    	SizeofBpfHdr     = 0x14
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/pe.go

    				return nil, fmt.Errorf("invalid section number in symbol table")
    			}
    			sect := f.pe.Sections[s.SectionNumber-1]
    			const (
    				text  = 0x20
    				data  = 0x40
    				bss   = 0x80
    				permW = 0x80000000
    			)
    			ch := sect.Characteristics
    			switch {
    			case ch&text != 0:
    				sym.Code = 'T'
    			case ch&data != 0:
    				if ch&permW == 0 {
    					sym.Code = 'R'
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/punycode.go

    	output := make([]byte, len(prefix), len(prefix)+1+2*len(s))
    	copy(output, prefix)
    	delta, n, bias := int32(0), initialN, initialBias
    	b, remaining := int32(0), int32(0)
    	for _, r := range s {
    		if r < 0x80 {
    			b++
    			output = append(output, byte(r))
    		} else {
    			remaining++
    		}
    	}
    	h := b
    	if b > 0 {
    		output = append(output, '-')
    	}
    	overflow := false
    	for remaining != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. src/syscall/asm_plan9_amd64.s

    	LEAQ	a1+8(FP), SI
    	LEAQ	trap+0(FP), DI
    	CLD
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	SYSCALL
    	MOVQ	AX, r1+32(FP)
    	MOVQ	AX, r2+40(FP)
    	MOVQ	AX, err+48(FP)
    	RET
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    	MOVQ	trap+0(FP), BP	// syscall entry
    	// slide args down on top of system call number
    	LEAQ	a1+8(FP), SI
    	LEAQ	trap+0(FP), DI
    	CLD
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 01:29:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. src/syscall/ztypes_openbsd_ppc64.go

    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWUSR  = 0x80
    	S_IXUSR  = 0x40
    	S_IRWXG  = 0x38
    	S_IRWXO  = 0x7
    )
    
    type Stat_t struct {
    	Mode           uint32
    	Dev            int32
    	Ino            uint64
    	Nlink          uint32
    	Uid            uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_dragonfly_amd64.go

    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWUSR  = 0x80
    	S_IXUSR  = 0x40
    	S_IRWXG  = 0x38
    	S_IRWXO  = 0x7
    )
    
    type Stat_t struct {
    	Ino      uint64
    	Nlink    uint32
    	Dev      uint32
    	Mode     uint16
    	Padding1 uint16
    	Uid      uint32
    	Gid      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		if len(msg) >= TagSize {
    			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(msg[0:8]), 0)
    			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(msg[8:16]), c)
    			h2 += c + 1
    
    			msg = msg[TagSize:]
    		} else {
    			var buf [TagSize]byte
    			copy(buf[:], msg)
    			buf[len(msg)] = 1
    
    			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(buf[0:8]), 0)
    			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(buf[8:16]), c)
    			h2 += c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top