-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sync origin #12
sync origin #12
Commits on Feb 8, 2014
-
Configuration menu - View commit details
-
Copy full SHA for 2c6f99d - Browse repository at this point
Copy the full SHA 2c6f99dView commit details -
Merge pull request #510 from square/jwilson_0203_gzip_beginnings
GzipSource beginnings.
Configuration menu - View commit details
-
Copy full SHA for 1b25214 - Browse repository at this point
Copy the full SHA 1b25214View commit details -
Should we later support random access for other primitives or random bulk access, I'd like the prefix to stay constant (getByte, getInt, getLong, getBytes) vs. the suffix (byteAt, intAt, longAt). Prefixing may work better for autocomplete in IDEs, particularly since we already use a prefix for our consuming reads (readByte, readInt, readLong).
Configuration menu - View commit details
-
Copy full SHA for 1f97e6b - Browse repository at this point
Copy the full SHA 1f97e6bView commit details -
GzipSource exceptions used six hex digits instead of 8 to print ints. readUtf8 always did an extra copy of the bytes being read. Moving bytes between buffers crashed when the destination was empty and the source was a prefix. InputStream reading returned values in -128..127 instead of in 0..255.
Configuration menu - View commit details
-
Copy full SHA for cd16580 - Browse repository at this point
Copy the full SHA cd16580View commit details -
Merge pull request #516 from square/jwilson_0208_byte_at_to_get_byte
Rename byteAt to getByte.
Adrian Cole committedFeb 8, 2014 Configuration menu - View commit details
-
Copy full SHA for 4c8ce7c - Browse repository at this point
Copy the full SHA 4c8ce7cView commit details -
Merge pull request #517 from square/jwilson_0208_buffer_fixes
Fix some OkBuffer bugs.
Adrian Cole committedFeb 8, 2014 Configuration menu - View commit details
-
Copy full SHA for 1151c98 - Browse repository at this point
Copy the full SHA 1151c98View commit details -
Configuration menu - View commit details
-
Copy full SHA for acd45e1 - Browse repository at this point
Copy the full SHA acd45e1View commit details -
Merge pull request #514 from square/jw/okcurl
Initial implementation of an OkHttp-backed curl clone.
Configuration menu - View commit details
-
Copy full SHA for de6d505 - Browse repository at this point
Copy the full SHA de6d505View commit details
Commits on Feb 9, 2014
-
fix #184: OkHttp no longer uses default ssl context.
Adrian Cole committedFeb 9, 2014 Configuration menu - View commit details
-
Copy full SHA for 5d7fdba - Browse repository at this point
Copy the full SHA 5d7fdbaView commit details -
Merge pull request #518 from square/adrian.okclient-provided-sslcontext
OkHttp no longer uses default ssl context.
Configuration menu - View commit details
-
Copy full SHA for f11832d - Browse repository at this point
Copy the full SHA f11832dView commit details
Commits on Feb 11, 2014
-
Add -X to okcurl, permitting HEAD requests.
Adrian Cole committedFeb 11, 2014 Configuration menu - View commit details
-
Copy full SHA for 6587a86 - Browse repository at this point
Copy the full SHA 6587a86View commit details -
Merge pull request #522 from square/adrian.curl-X
Add -X to okcurl, permitting HEAD requests
Configuration menu - View commit details
-
Copy full SHA for 12f7e64 - Browse repository at this point
Copy the full SHA 12f7e64View commit details -
Use OkBuffer in spdy/3 source stream.
This isn't quite as simple as I had hoped. We still lack something like DataInputStream/BufferedInputStream that combines a buffer with a Source. That means there's a bunch of methods that must manually refill the buffer before acting upon it. I'm going to continue to migrate code, and will follow up with changes to simplify this interaction.
Configuration menu - View commit details
-
Copy full SHA for d60d8e1 - Browse repository at this point
Copy the full SHA d60d8e1View commit details -
Merge pull request #519 from square/jwilson_0209_okbuffer_in_spdy3_so…
…urce Use OkBuffer in spdy/3 source stream.
Configuration menu - View commit details
-
Copy full SHA for a2cb34d - Browse repository at this point
Copy the full SHA a2cb34dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 72d5fae - Browse repository at this point
Copy the full SHA 72d5faeView commit details -
Merge pull request #523 from square/jwilson_0211_okbuffer_in_http2_so…
…urce Use OkBuffer in http/2 source stream
Configuration menu - View commit details
-
Copy full SHA for 545807e - Browse repository at this point
Copy the full SHA 545807eView commit details
Commits on Feb 12, 2014
-
The Source API is nice for source implementors: no annoying skip method, no annoying available() method, just one API to supply bytes to the caller. But it isn't as nice of an API for source callers. It lacks convenient APIs! This bridges the gap. Calling code should use BufferedSource, and implementing code should implement Source.
Configuration menu - View commit details
-
Copy full SHA for 9c6a433 - Browse repository at this point
Copy the full SHA 9c6a433View commit details -
Merge pull request #524 from square/jwilson_0211_buffered_source
BufferedSource.
Adrian Cole committedFeb 12, 2014 Configuration menu - View commit details
-
Copy full SHA for c40cb63 - Browse repository at this point
Copy the full SHA c40cb63View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8507d0 - Browse repository at this point
Copy the full SHA c8507d0View commit details -
Merge pull request #526 from square/jwilson_0212_okbuffer_in_spdystream
Use OkBuffer in SpdyStream.
Configuration menu - View commit details
-
Copy full SHA for 8720ab4 - Browse repository at this point
Copy the full SHA 8720ab4View commit details