<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/stdlib/src, branch OTP-21.3.8.3</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Prepare release</title>
<updated>2019-06-03T09:34:58+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-06-03T09:34:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=66b955a11f808d85437cc790909718cad5941c31'/>
<id>66b955a11f808d85437cc790909718cad5941c31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stdlib: Fix a bug concerning io_lib option 'chars_limit'</title>
<updated>2019-05-29T11:13:28+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-05-28T07:38:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=8bdcb96c3c33afd7f85fc2953970b6709f04a74a'/>
<id>8bdcb96c3c33afd7f85fc2953970b6709f04a74a</id>
<content type='text'>
See also https://bugs.erlang.org/browse/ERL-957.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See also https://bugs.erlang.org/browse/ERL-957.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2019-05-06T15:09:17+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-05-06T15:09:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5aa950086a5fa036f27e670517a5c743e0610128'/>
<id>5aa950086a5fa036f27e670517a5c743e0610128</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'raimo/stdlib/gen_statem-sync-timer-cancel/OTP-15295' into maint-21</title>
<updated>2019-05-06T15:09:07+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-05-06T15:09:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=b5b58e69d2495e6e98d728f7899b61882498ce1b'/>
<id>b5b58e69d2495e6e98d728f7899b61882498ce1b</id>
<content type='text'>
* raimo/stdlib/gen_statem-sync-timer-cancel/OTP-15295:
  Rewrite to use synchronous timer cancel
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* raimo/stdlib/gen_statem-sync-timer-cancel/OTP-15295:
  Rewrite to use synchronous timer cancel
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite to use synchronous timer cancel</title>
<updated>2019-04-17T13:55:21+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2019-04-17T13:29:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=b43e29ede13952890dce6982d69fc4fb4012862c'/>
<id>b43e29ede13952890dce6982d69fc4fb4012862c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2019-03-29T18:25:50+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-03-29T18:25:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=dc1176e39125148f6592bbd44585a1b5c7122443'/>
<id>dc1176e39125148f6592bbd44585a1b5c7122443</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_tar: Use read_ahead when reading compressed tar files</title>
<updated>2019-03-28T11:05:15+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2019-03-28T10:59:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=46e1565e73bc4490d29f0193146d4d75d9dba226'/>
<id>46e1565e73bc4490d29f0193146d4d75d9dba226</id>
<content type='text'>
Jumping around in a compressed file is nowhere near as cheap as
for uncompressed files, as it requires reading and decompressing
up until the desired position. Using read_ahead will improve
performance slightly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Jumping around in a compressed file is nowhere near as cheap as
for uncompressed files, as it requires reading and decompressing
up until the desired position. Using read_ahead will improve
performance slightly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2019-03-11T10:52:56+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-03-11T10:52:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=9780184b2cf76eced1ef987408073e96cc29f3bb'/>
<id>9780184b2cf76eced1ef987408073e96cc29f3bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stdlib: Correct and optimize pretty printing of strings</title>
<updated>2019-03-05T11:02:25+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-02-26T09:11:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=cd5dbd5204a783743c72116d81e993ec041b7396'/>
<id>cd5dbd5204a783743c72116d81e993ec041b7396</id>
<content type='text'>
Avoid traversing all of the list/string when only part of it will be
used. An explicit check that the list is flat is needed since
string:slice() accepts deep lists and more.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Avoid traversing all of the list/string when only part of it will be
used. An explicit check that the list is flat is needed since
string:slice() accepts deep lists and more.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'hasse/stdlib/optimize_calendar_rfc3339/OTP-15630' into maint</title>
<updated>2019-03-04T11:41:12+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-03-04T11:41:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=069bf45930346e31869362df5e1527d8616f7db1'/>
<id>069bf45930346e31869362df5e1527d8616f7db1</id>
<content type='text'>
* hasse/stdlib/optimize_calendar_rfc3339/OTP-15630:
  stdlib: Optimize calendar:system_time_to_rfc3339()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* hasse/stdlib/optimize_calendar_rfc3339/OTP-15630:
  stdlib: Optimize calendar:system_time_to_rfc3339()
</pre>
</div>
</content>
</entry>
</feed>
