Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 356 for 0_80 (2.09 sec)

  1. platforms/documentation/docs/src/snippets/java/toolchain-foojay/groovy/settings.gradle

    // tag::plugin-application[]
    plugins {
        id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 144 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoreadjusttyp_string.go

    	0x2,    /* initFuncAdj */
    	0x4,    /* inLoopAdj */
    	0x8,    /* passConstToIfAdj */
    	0x10,   /* passConstToNestedIfAdj */
    	0x20,   /* passConcreteToItfCallAdj */
    	0x40,   /* passConcreteToNestedItfCallAdj */
    	0x80,   /* passFuncToIndCallAdj */
    	0x100,  /* passFuncToNestedIndCallAdj */
    	0x200,  /* passInlinableFuncToIndCallAdj */
    	0x400,  /* passInlinableFuncToNestedIndCallAdj */
    	0x800,  /* returnFeedsConstToIfAdj */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 21:13:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/runtime/debuglog.go

    	} else {
    		u = (uint64(x) << 1) // do not complement i, bit 0 is 0
    	}
    	l.uvarint(u)
    }
    
    //go:nosplit
    func (l *debugLogWriter) uvarint(u uint64) {
    	i := 0
    	for u >= 0x80 {
    		l.buf[i] = byte(u) | 0x80
    		u >>= 7
    		i++
    	}
    	l.buf[i] = byte(u)
    	i++
    	l.bytes(l.buf[:i])
    }
    
    type debugLogReader struct {
    	data *debugLogBuf
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/syscall/const_plan9.go

    	RFPROC   = 1 << 4
    	RFMEM    = 1 << 5
    	RFNOWAIT = 1 << 6
    	RFCNAMEG = 1 << 10
    	RFCENVG  = 1 << 11
    	RFCFDG   = 1 << 12
    	RFREND   = 1 << 13
    	RFNOMNT  = 1 << 14
    )
    
    // Qid.Type bits
    const (
    	QTDIR    = 0x80
    	QTAPPEND = 0x40
    	QTEXCL   = 0x20
    	QTMOUNT  = 0x10
    	QTAUTH   = 0x08
    	QTTMP    = 0x04
    	QTFILE   = 0x00
    )
    
    // Dir.Mode bits
    const (
    	DMDIR    = 0x80000000
    	DMAPPEND = 0x40000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/debug/dwarf/buf.go

    	}
    	return b.order.Uint64(a)
    }
    
    // Read a varint, which is 7 bits per byte, little endian.
    // the 0x80 bit means read another byte.
    func (b *buf) varint() (c uint64, bits uint) {
    	for i := 0; i < len(b.data); i++ {
    		byte := b.data[i]
    		c |= uint64(byte&0x7F) << bits
    		bits += 7
    		if byte&0x80 == 0 {
    			b.off += Offset(i + 1)
    			b.data = b.data[i+1:]
    			return c, bits
    		}
    	}
    	return 0, 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat_test.go

    		y:        0xFFFF_FFFF_FFFF_FFFF,
    		expected: []byte{10},
    	}, {
    		m:        []byte{0x06, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d},
    		x:        make([]byte, 9),
    		y:        0xFFFF_FFFF_FFFF_FFFF,
    		expected: []byte{0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    	}, {
    		m:        []byte{0x06, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d},
    		x:        []byte{0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/crypto/md5/md5.go

    	return append(in, hash[:]...)
    }
    
    func (d *digest) checkSum() [Size]byte {
    	// Append 0x80 to the end of the message and then append zeros
    	// until the length is a multiple of 56 bytes. Finally append
    	// 8 bytes representing the message length in bits.
    	//
    	// 1 byte end marker :: 0-63 padding bytes :: 8 byte length
    	tmp := [1 + 63 + 8]byte{0x80}
    	pad := (55 - d.len) % 64                     // calculate number of padding bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/siginfo_linux.go

    	_CLD_KILLED          = 2
    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    	_CLD_CONTINUED       = 6
    
    	// These are the same as in syscall/syscall_linux.go.
    	core      = 0x80
    	stopped   = 0x7f
    	continued = 0xffff
    )
    
    // WaitStatus converts SiginfoChild, as filled in by the waitid syscall,
    // to syscall.WaitStatus.
    func (s *SiginfoChild) WaitStatus() (ws syscall.WaitStatus) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. internal/bucket/bandwidth/monitor_gen.go

    	// map header, size 0
    	_ = z
    	err = en.Append(0x80)
    	if err != nil {
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z BucketBandwidthReport) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 0
    	_ = z
    	o = append(o, 0x80)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	TIOCM_LOOP                       = 0x8000
    	TIOCM_OUT1                       = 0x2000
    	TIOCM_OUT2                       = 0x4000
    	TIOCM_RI                         = 0x80
    	TIOCM_RNG                        = 0x80
    	TIOCM_SR                         = 0x10
    	TIOCM_ST                         = 0x8
    	TIOCNOTTY                        = 0x5422
    	TIOCNXCL                         = 0x540d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top