- Sort Score
- Result 10 results
- Languages All
Results 71 - 79 of 79 for 0xF8 (0.04 sec)
-
src/archive/zip/writer.go
// even when compressing an empty string. fh.Method = Store fh.Flags &^= 0x8 // we will not write a data descriptor // Explicitly clear sizes as they have no meaning for directories. fh.CompressedSize = 0 fh.CompressedSize64 = 0 fh.UncompressedSize = 0 fh.UncompressedSize64 = 0 ow = dirWriter{} } else { fh.Flags |= 0x8 // we will write a data descriptor fw = &fileWriter{ zipw: w.cw,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* {@code ByteBuffer.allocate(8).putLong(value).array()}. For example, the input value {@code * 0x1213141516171819L} would yield the byte array {@code {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, * 0x18, 0x19}}. * * <p>If you need to convert and concatenate several values (possibly even of different types), * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 29.3K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Longs.java
* {@code ByteBuffer.allocate(8).putLong(value).array()}. For example, the input value {@code * 0x1213141516171819L} would yield the byte array {@code {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, * 0x18, 0x19}}. * * <p>If you need to convert and concatenate several values (possibly even of different types), * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 29K bytes - Viewed (0) -
src/archive/zip/struct.go
func (h *FileHeader) isZip64() bool { return h.CompressedSize64 >= uint32max || h.UncompressedSize64 >= uint32max } func (h *FileHeader) hasDataDescriptor() bool { return h.Flags&0x8 != 0 } func msdosModeToFileMode(m uint32) (mode fs.FileMode) { if m&msdosDir != 0 { mode = fs.ModeDir | 0777 } else { mode = 0666 } if m&msdosReadOnly != 0 { mode &^= 0222 }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
static final byte SMB_COM_DELETE = (byte)0x06; static final byte SMB_COM_RENAME = (byte)0x07; static final byte SMB_COM_QUERY_INFORMATION = (byte)0x08; static final byte SMB_COM_WRITE = (byte)0x0B; static final byte SMB_COM_CHECK_DIRECTORY = (byte)0x10; static final byte SMB_COM_TRANSACTION = (byte)0x25;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
/** * */ public static final byte SMB_COM_RENAME = (byte) 0x07; /** * */ public static final byte SMB_COM_QUERY_INFORMATION = (byte) 0x08; /** * */ public static final byte SMB_COM_SET_INFORMATION = (byte) 0x09; /** * */ public static final byte SMB_COM_WRITE = (byte) 0x0B; /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0) -
cmd/storage-datatypes_gen.go
return } err = za0002.EncodeMsg(en) if err != nil { err = msgp.WrapError(err, "LastMinute", za0001) return } } // write "APICalls" err = en.Append(0xa8, 0x41, 0x50, 0x49, 0x43, 0x61, 0x6c, 0x6c, 0x73) if err != nil { return } err = en.WriteMapHeader(uint32(len(z.APICalls))) if err != nil { err = msgp.WrapError(err, "APICalls") return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 150.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
*/ public static final int ATTR_SYSTEM = 0x04; /** * A file with this bit on as returned by <tt>getAttributes()</tt> is * a volume */ public static final int ATTR_VOLUME = 0x08; /** * A file with this bit on as returned by <tt>getAttributes()</tt> is * a directory */ public static final int ATTR_DIRECTORY = 0x10; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)