Check for cases where addition should be performed in the absl::Time
domain.
When adding two values, and one is known to be an absl::Time
, we can infer
that the other should be interpreted as an absl::Duration
of a similar
scale, and make that inference explicit.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User's Manual | |
~~~~~~~~~~~~~ | |
RAR 6.02 console version | |
~~~~~~~~~~~~~~~~~~~~~~~~ | |
=-=-=-=-=-=-=-=-=-=-=-=-=-=- | |
Welcome to the RAR Archiver! | |
-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
Introduction |
C++11 includes the following new language features:
C++11 includes the following new language features:
Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words.
C++14 includes the following new language features:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root=true | |
[*] | |
indent_style=tab | |
indent_size=tab | |
tab_width=2 | |
#end_of_line=lf | |
charset=utf-8 | |
trim_trailing_whitespace=true | |
#insert_final_newline=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "1.45-133-g291f2709", | |
"bin": [ | |
[ | |
"rclone.exe", | |
"rclone-beta" | |
] | |
], | |
"architecture": { | |
"64bit": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<unistd.h> | |
extern char **environ; | |
int main(int argc, char **argv) { | |
char *args[argc+2]; | |
args[0] = "icc"; | |
args[1] = "-E"; | |
args[argc+1] = 0; | |
if (argc > 1) { | |
for (int a = argc-2; a >= 0; --a) { | |
args[a+2] = argv[a+1]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[README] | |
# html= | |
# A html file (HTML fragment) which is included on the gitweb project | |
# "summary" page inside `<div>` block element. You can use it for longer | |
# description of a project, to provide links (for example to project's | |
# homepage), etc. This is recognized only if XSS prevention is off | |
# (`$prevent_xss` is false, see linkgit:gitweb.conf[5]); a way to include | |
# a README safely when XSS prevention is on may be worked out in the | |
# future. |
NewerOlder