Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for 0x1c1 (0.08 sec)

  1. src/compress/lzw/reader_test.go

    	if nBits != 43255 {
    		t.Fatalf("nBits: got %v, want %v", nBits, 43255)
    	}
    
    	// Construct our input of 43255 zero bits (which gets d.hi and d.width up
    	// to 4095 and 12), followed by 0xfff (4095) as 12 bits, followed by 0x101
    	// (EOF) as 12 bits.
    	//
    	// 43255 = 5406*8 + 7, and codes are read in LSB order. The final bytes are
    	// therefore:
    	//
    	// xwwwwwww xxxxxxxx yyyyyxxx zyyyyyyy
    	// 10000000 11111111 00001111 00001000
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class Trans2SetFileInformation extends SmbComTransaction {
    
        static final int SMB_FILE_BASIC_INFO = 0x101;
    
        private int fid;
        private int attributes;
        private long createTime, lastWriteTime;
    
        Trans2SetFileInformation( int fid, int attributes, long createTime, long lastWriteTime ) {
            this.fid = fid;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables_linux.go

    	var rules []*netlink.Rule
    	families := []int{unix.AF_INET}
    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

        static final int SMB_INFO_QUERY_EA_SIZE            = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST      = 3;
        static final int SMB_FIND_FILE_DIRECTORY_INFO      = 0x101;
        static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102;
        static final int SMB_FILE_NAMES_INFO               = 0x103;
        static final int SMB_FILE_BOTH_DIRECTORY_INFO      = 0x104;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/tables.go

    // whether the intelligibility goes one or both ways.
    var matchLang = []mutualIntelligibility{ // 113 elements
    	0:   {want: 0x1d1, have: 0xb7, distance: 0x4, oneway: false},
    	1:   {want: 0x407, have: 0xb7, distance: 0x4, oneway: false},
    	2:   {want: 0x407, have: 0x1d1, distance: 0x4, oneway: false},
    	3:   {want: 0x407, have: 0x432, distance: 0x4, oneway: false},
    	4:   {want: 0x43a, have: 0x1, distance: 0x4, oneway: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

    import java.util.Date;
    
    import jcifs.smb1.util.Hexdump;
    
    class Trans2QueryPathInformationResponse extends SmbComTransactionResponse {
    
        // information levels
        static final int SMB_QUERY_FILE_BASIC_INFO    = 0x101;
        static final int SMB_QUERY_FILE_STANDARD_INFO = 0x102;
    
        class SmbQueryFileBasicInfo implements Info {
            long createTime;
            long lastAccessTime;
            long lastWriteTime;
            long changeTime;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

        // information levels
    
        static final int SMB_INFO_STANDARD = 1;
        static final int SMB_INFO_QUERY_EA_SIZE = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3;
        static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101;
        static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102;
        static final int SMB_FILE_NAMES_INFO = 0x103;
        static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104;
    
        private int sid;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

        // information levels
    
        static final int SMB_INFO_STANDARD = 1;
        static final int SMB_INFO_QUERY_EA_SIZE = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3;
        static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101;
        static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102;
        static final int SMB_FILE_NAMES_INFO = 0x103;
        static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104;
    
    
        /**
         * 
         * @param config
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  9. src/image/png/writer.go

    						//
    						// The multiplier m combines 0x101 (which converts
    						// 8-bit color to 16-bit color) and 0xffff (which, when
    						// combined with the division-by-a, converts from
    						// alpha-premultiplied to non-alpha-premultiplied).
    						const m = 0x101 * 0xffff
    						a := uint32(s[3]) * 0x101
    						d[0] = uint8((uint32(s[0]) * m / a) >> 8)
    						d[1] = uint8((uint32(s[1]) * m / a) >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go

    	BPF_T_MICROTIME_MONOTONIC_FAST = 0x300
    	BPF_T_MONOTONIC                = 0x200
    	BPF_T_MONOTONIC_FAST           = 0x300
    	BPF_T_NANOTIME                 = 0x1
    	BPF_T_NANOTIME_FAST            = 0x101
    	BPF_T_NANOTIME_MONOTONIC       = 0x201
    	BPF_T_NANOTIME_MONOTONIC_FAST  = 0x301
    	BPF_T_NONE                     = 0x3
    	BPF_T_NORMAL                   = 0x0
    	BPF_W                          = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
Back to top