Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 133 for 0xfff0 (0.07 sec)

  1. src/main/java/jcifs/netbios/NodeStatusResponse.java

        int readRDataWireFormat ( byte[] src, int srcIndex ) {
            int start = srcIndex;
            this.numberOfNames = src[ srcIndex ] & 0xFF;
            int namesLength = this.numberOfNames * 18;
            int statsLength = this.rDataLength - namesLength - 1;
            this.numberOfNames = src[ srcIndex++ ] & 0xFF;
            // gotta read the mac first so we can populate addressArray with it
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected InetAddress broadcastAddress;
        protected List<ResolverType> resolverOrder;
        protected int maximumBufferSize = 0x10000;
        protected int transactionBufferSize = 0xFFFF - 512;
        protected int bufferCacheSize = 16;
        protected int smbListSize = 65435;
        protected int smbListCount = 200;
        protected long smbAttributeExpiration = 5000L;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

        }
        int readRDataWireFormat( byte[] src, int srcIndex ) {
            int start = srcIndex;
            numberOfNames = src[srcIndex] & 0xFF;
            int namesLength = numberOfNames * 18;
            int statsLength = rDataLength - namesLength - 1;
            numberOfNames = src[srcIndex++] & 0xFF;
            // gotta read the mac first so we can populate addressArray with it
            System.arraycopy( src, srcIndex + namesLength, macAddress, 0, 6 );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0xfff2" type="string" offset="0"/> <!-- V2, L3, CRC -->
          <match value="0xfff3" type="string" offset="0"/> <!-- V2, L3      -->
          <match value="0xfff4" type="string" offset="0"/> <!-- V2, L2, CRC -->
          <match value="0xfff5" type="string" offset="0"/> <!-- V2, L2      -->
          <match value="0xfff6" type="string" offset="0"/> <!-- V2, L1, CRC -->
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. src/archive/tar/strconv.go

    		// data bytes and treat the value as an unsigned number.
    		var inv byte // 0x00 if positive or zero, 0xff if negative
    		if b[0]&0x40 != 0 {
    			inv = 0xff
    		}
    
    		var x uint64
    		for i, c := range b {
    			c ^= inv // Inverts c only if inv is 0xff, otherwise does nothing
    			if i == 0 {
    				c &= 0x7f // Ignore signal bit in first byte
    			}
    			if (x >> 56) > 0 {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

            for (int i = 0; i < sz; i++) {
                char ch = str.charAt(i);
                // handle unicode
                if (ch > 0xfff) {
                    out.append("\\u").append(hex(ch));
                } else if (ch > 0xff) {
                    out.append("\\u0").append(hex(ch));
                } else if (ch > 0x7f) {
                    out.append("\\u00").append(hex(ch));
                } else if (ch < 32) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            attributeOptions.add(color & 0xff);
            return this;
        }
    
        public Ansi fgRgb(int color) {
            return fgRgb(color >> 16, color >> 8, color);
        }
    
        public Ansi fgRgb(int r, int g, int b) {
            attributeOptions.add(38);
            attributeOptions.add(2);
            attributeOptions.add(r & 0xff);
            attributeOptions.add(g & 0xff);
            attributeOptions.add(b & 0xff);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

            bufferIndex += 8;
            this.numberOfLinks = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.deletePending = ( buffer[ bufferIndex++ ] & 0xFF ) > 0;
            this.directory = ( buffer[ bufferIndex++ ] & 0xFF ) > 0;
            return bufferIndex - start;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Encodable#size()
         */
        @Override
        public int size () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

        for (int i = 0; i <= 0xff; i++) {
          assertThat(UnsignedBytes.toString((byte) i)).isEqualTo(Integer.toString(i));
        }
      }
    
      public void testToStringWithRadix() {
        // We can easily afford to test this exhaustively.
        for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) {
          for (int i = 0; i <= 0xff; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

            bufferIndex += 8;
            info.numberOfLinks = readInt4( buffer, bufferIndex );
            bufferIndex += 4;
            info.deletePending = ( buffer[bufferIndex++] & 0xFF ) > 0;
            info.directory = ( buffer[bufferIndex++] & 0xFF ) > 0;
            this.info = info;
    
            return bufferIndex - start;
        }
        int readSmbQueryFileBasicInfoWireFormat( byte[] buffer, int bufferIndex ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top