Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for 0x4506 (0.07 sec)

  1. android/guava-tests/test/com/google/common/primitives/CharsTest.java

          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      @GwtIncompatible // Chars.fromByteArray
      public void testFromByteArray() {
        assertThat(Chars.fromByteArray(new byte[] {0x23, 0x45, (byte) 0xDC})).isEqualTo('\u2345');
        assertThat(Chars.fromByteArray(new byte[] {(byte) 0xFE, (byte) 0xDC})).isEqualTo('\uFEDC');
      }
    
      @GwtIncompatible // Chars.fromByteArray
      public void testFromByteArrayFails() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        protected static final short SMB2_TREE_CONNECT = 0x0003;
        protected static final short SMB2_TREE_DISCONNECT = 0x0004;
        protected static final short SMB2_CREATE = 0x0005;
        protected static final short SMB2_CLOSE = 0x0006;
        protected static final short SMB2_FLUSH = 0x0007;
        protected static final short SMB2_READ = 0x0008;
        protected static final short SMB2_WRITE = 0x0009;
        protected static final short SMB2_LOCK = 0x000A;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmUtil.java

            NtlmUtil.E(p21, challenge, p24);
            return p24;
        }
    
        // KGS!@#$%
        static final byte[] S8 = {
            (byte) 0x4b, (byte) 0x47, (byte) 0x53, (byte) 0x21, (byte) 0x40, (byte) 0x23, (byte) 0x24, (byte) 0x25
        };
    
    
        /*
         * Accepts key multiple of 7
         * Returns enc multiple of 8
         * Multiple is the same like: 21 byte key gives 24 byte result
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  4. cmd/batch-handlers_gen.go

    			return
    		}
    	} else {
    		err = z.KeyRotate.EncodeMsg(en)
    		if err != nil {
    			err = msgp.WrapError(err, "KeyRotate")
    			return
    		}
    	}
    	// write "Expire"
    	err = en.Append(0xa6, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65)
    	if err != nil {
    		return
    	}
    	if z.Expire == nil {
    		err = en.WriteNil()
    		if err != nil {
    			return
    		}
    	} else {
    		err = z.Expire.EncodeMsg(en)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v1_gen.go

    	// map header, size 9
    	// write "Version"
    	err = en.Append(0x89, 0xa7, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Version)
    	if err != nil {
    		err = msgp.WrapError(err, "Version")
    		return
    	}
    	// write "Format"
    	err = en.Append(0xa6, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74)
    	if err != nil {
    		return
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. internal/grid/msg_gen.go

    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z muxConnectError) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 1
    	// write "Error"
    	err = en.Append(0x81, 0xa5, 0x45, 0x72, 0x72, 0x6f, 0x72)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Error)
    	if err != nil {
    		err = msgp.WrapError(err, "Error")
    		return
    	}
    	return
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jul 25 21:07:21 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/DES.java

                encrypt(cipherText, i*8, clearText, i*8);
    
            return clearText;
        }
    
    
        // Tables, permutations, S-boxes, etc.
    
        private static byte[] bytebit = {
            (byte)0x80, (byte)0x40, (byte)0x20, (byte)0x10,
            (byte)0x08, (byte)0x04, (byte)0x02, (byte)0x01
        };
        private static int[] bigbyte = {
            0x800000, 0x400000, 0x200000, 0x100000,
            0x080000, 0x040000, 0x020000, 0x010000,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        static final byte SMB_COM_DELETE_DIRECTORY   = (byte)0x01;
        static final byte SMB_COM_CLOSE              = (byte)0x04;
        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;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  9. cmd/bucket-replication-metrics_gen.go

    // EncodeMsg implements msgp.Encodable
    func (z ReplicationMRFStats) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 3
    	// write "LastFailedCount"
    	err = en.Append(0x83, 0xaf, 0x4c, 0x61, 0x73, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74)
    	if err != nil {
    		return
    	}
    	err = en.WriteUint64(z.LastFailedCount)
    	if err != nil {
    		err = msgp.WrapError(err, "LastFailedCount")
    		return
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

        private static LogStream log = LogStream.getInstance();
    
        // KGS!@#$%
        private static final byte[] S8 = {
            (byte)0x4b, (byte)0x47, (byte)0x53, (byte)0x21,
            (byte)0x40, (byte)0x23, (byte)0x24, (byte)0x25
        };
        /* Accepts key multiple of 7
         * Returns enc multiple of 8
         * Multiple is the same like: 21 byte key gives 24 byte result
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
Back to top