Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for 0x7fff (0.08 sec)

  1. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            dst[ dstIndex++ ] = (byte) ( ( this.wordCount / 2 ) & 0xFF );
            dstIndex += this.wordCount;
            this.wordCount /= 2;
            this.byteCount = writeBytesWireFormat(dst, dstIndex + 2);
            dst[ dstIndex++ ] = (byte) ( this.byteCount & 0xFF );
            dst[ dstIndex++ ] = (byte) ( ( this.byteCount >> 8 ) & 0xFF );
            dstIndex += this.byteCount;
    
            this.length = dstIndex - start;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            for (int i = 0; i < sz; i++) {
                char ch = str.charAt(i);
    
                // handle unicode
                if (ch > 0xfff) {
                    out.write("\\u" + hex(ch));
                } else if (ch > 0xff) {
                    out.write("\\u0" + hex(ch));
                } else if (ch > 0x7f) {
                    out.write("\\u00" + hex(ch));
                } else if (ch < 32) {
                    switch (ch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    			return
    		} else if length > 0xffffff {
    			lenLen = 5
    			lenByte = 0x80 | 4
    		} else if length > 0xffff {
    			lenLen = 4
    			lenByte = 0x80 | 3
    		} else if length > 0xff {
    			lenLen = 3
    			lenByte = 0x80 | 2
    		} else if length > 0x7f {
    			lenLen = 2
    			lenByte = 0x80 | 1
    		} else {
    			lenLen = 1
    			lenByte = uint8(length)
    			length = 0
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                }
                resolveOrder = new int[i];
                System.arraycopy( tmp, 0, resolveOrder, 0, i );
            }
        }
    
        int getNextNameTrnId() {
            if(( ++nextNameTrnId & 0xFFFF ) == 0 ) {
                nextNameTrnId = 1;
            }
            return nextNameTrnId;
        }
        void ensureOpen( int timeout ) throws IOException {
            closeTimeout = 0;
            if( SO_TIMEOUT != 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  5. src/net/http/socks_bundle.go

    	host, port, err := net.SplitHostPort(address)
    	if err != nil {
    		return "", 0, err
    	}
    	portnum, err := strconv.Atoi(port)
    	if err != nil {
    		return "", 0, err
    	}
    	if 1 > portnum || portnum > 0xffff {
    		return "", 0, errors.New("port number out of range " + port)
    	}
    	return host, portnum, nil
    }
    
    // A Command represents a SOCKS command.
    type socksCommand int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. src/unicode/letter_test.go

    	0xfa30,
    	0xffda,
    	0xffdc,
    	0x10000,
    	0x10300,
    	0x10400,
    	0x20000,
    	0x2f800,
    	0x2fa1d,
    }
    
    var notletterTest = []rune{
    	0x20,
    	0x35,
    	0x375,
    	0x619,
    	0x700,
    	0x1885,
    	0xfffe,
    	0x1ffff,
    	0x10ffff,
    }
    
    // Contains all the special cased Latin-1 chars.
    var spaceTest = []rune{
    	0x09,
    	0x0a,
    	0x0b,
    	0x0c,
    	0x0d,
    	0x20,
    	0x85,
    	0xA0,
    	0x2000,
    	0x3000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

        val length = source.readMedium()
        if (length > INITIAL_MAX_FRAME_SIZE) {
          throw IOException("FRAME_SIZE_ERROR: $length")
        }
        val type = source.readByte() and 0xff
        val flags = source.readByte() and 0xff
        val streamId = source.readInt() and 0x7fffffff // Ignore reserved bit.
        if (type != TYPE_WINDOW_UPDATE && logger.isLoggable(FINE)) {
          logger.fine(frameLog(true, streamId, length, type, flags))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	SOCK_CLOEXEC                     = 0x80000
    	SOCK_DGRAM                       = 0x1
    	SOCK_NONBLOCK                    = 0x80
    	SOCK_STREAM                      = 0x2
    	SOL_SOCKET                       = 0xffff
    	SO_ACCEPTCONN                    = 0x1009
    	SO_ATTACH_BPF                    = 0x32
    	SO_ATTACH_REUSEPORT_CBPF         = 0x33
    	SO_ATTACH_REUSEPORT_EBPF         = 0x34
    	SO_BINDTODEVICE                  = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    		start := f.fset.Position(block.startByte)
    		end := f.fset.Position(block.endByte)
    
    		start, end = dedup(start, end)
    
    		fmt.Fprintf(w, "\t\t%d, %d, %#x, // [%d]\n", start.Line, end.Line, (end.Column&0xFFFF)<<16|(start.Column&0xFFFF), i)
    	}
    
    	// Close the position array.
    	fmt.Fprintf(w, "\t},\n")
    
    	// Initialize the position array field.
    	fmt.Fprintf(w, "\tNumStmt: [%d]uint16{\n", len(f.blocks))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	SOCK_CLOEXEC                     = 0x80000
    	SOCK_DGRAM                       = 0x1
    	SOCK_NONBLOCK                    = 0x80
    	SOCK_STREAM                      = 0x2
    	SOL_SOCKET                       = 0xffff
    	SO_ACCEPTCONN                    = 0x1009
    	SO_ATTACH_BPF                    = 0x32
    	SO_ATTACH_REUSEPORT_CBPF         = 0x33
    	SO_ATTACH_REUSEPORT_EBPF         = 0x34
    	SO_BINDTODEVICE                  = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top