Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 157 of 157 for 0xc3 (0.74 sec)

  1. cmd/xl-storage-format-v2_gen.go

    		o = append(o, 0xa6, 0x45, 0x63, 0x41, 0x6c, 0x67, 0x6f)
    		o = msgp.AppendUint8(o, uint8(z.ErasureAlgorithm))
    		// string "EcM"
    		o = append(o, 0xa3, 0x45, 0x63, 0x4d)
    		o = msgp.AppendInt(o, z.ErasureM)
    		// string "EcN"
    		o = append(o, 0xa3, 0x45, 0x63, 0x4e)
    		o = msgp.AppendInt(o, z.ErasureN)
    		// string "EcBSize"
    		o = append(o, 0xa7, 0x45, 0x63, 0x42, 0x53, 0x69, 0x7a, 0x65)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Dec 15 22:50:12 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        public static final byte SMB_COM_NEGOTIATE = (byte) 0x72;
    
        /**
         * SMB command to setup a session with extended attributes.
         */
        public static final byte SMB_COM_SESSION_SETUP_ANDX = (byte) 0x73;
    
        /**
         * SMB command to logoff from a session with extended attributes.
         */
        public static final byte SMB_COM_LOGOFF_ANDX = (byte) 0x74;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	LDAXR (R15), R21                           // f5fd5fc8
    	LDAXRB (R19), R16                          // 70fe5f08
    	LDAXRH (R5), R8                            // a8fc5f48
    	//TODO LDNP 0xcc(RSP), ZR, R12             // ecff5928
    	//TODO LDNP 0x40(R28), R9, R5              // 852744a8
    	//TODO LDPSW -0xd0(R2), R0, R12            // 4c00e668
    	//TODO LDPSW 0x5c(R4), R8, R5              // 85a0cb69
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                try (MockedStatic<Smb3KeyDerivation> mockedKeyDerivation = mockStatic(Smb3KeyDerivation.class)) {
                    byte[] derivedKey = new byte[16];
                    Arrays.fill(derivedKey, (byte) 0xCC);
                    mockedKeyDerivation.when(
                            () -> Smb3KeyDerivation.deriveSigningKey(eq(Smb2Constants.SMB2_DIALECT_0300), any(byte[].class), any(byte[].class)))
                            .thenReturn(derivedKey);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    		file: "testdata/sparse-formats.tar",
    		headers: []*Header{{
    			Name:     "sparse-gnu",
    			Mode:     420,
    			Uid:      1000,
    			Gid:      1000,
    			Size:     200,
    			ModTime:  time.Unix(1392395740, 0),
    			Typeflag: 0x53,
    			Linkname: "",
    			Uname:    "david",
    			Gname:    "david",
    			Devmajor: 0,
    			Devminor: 0,
    			Format:   FormatGNU,
    		}, {
    			Name:     "sparse-posix-0.0",
    			Mode:     420,
    			Uid:      1000,
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  6. cmd/storage-datatypes_gen.go

    	o = append(o, 0x82, 0xa5, 0x46, 0x69, 0x6c, 0x65, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.Files)))
    	for za0001 := range z.Files {
    		o, err = z.Files[za0001].MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Files", za0001)
    			return
    		}
    	}
    	// string "IsTruncated"
    	o = append(o, 0xab, 0x49, 0x73, 0x54, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x64)
    	o = msgp.AppendBool(o, z.IsTruncated)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 25 05:41:04 UTC 2025
    - 152K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * @see       java.io.File
     */
    
    public class SmbFile extends URLConnection implements SmbConstants {
    
        static final int O_RDONLY = 0x01;
        static final int O_WRONLY = 0x02;
        static final int O_RDWR = 0x03;
        static final int O_APPEND = 0x04;
    
        // Open Function Encoding
        // create if the file does not exist
        static final int O_CREAT = 0x0010;
        // fail if the file exists
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top