User Data/Local State
{"ntp":{"activate_hide_shortcuts_field_trial":false}}| // The simplest possible sbt build file is just one line: | |
| scalaVersion := "2.13.3" | |
| // That is, to create a valid sbt build, all you've got to do is define the | |
| // version of Scala you'd like your project to use. | |
| addCompilerPlugin("org.typelevel" % "kind-projector" % "0.11.3" cross CrossVersion.full) | |
| // ============================================================================ |
| import sys | |
| import re | |
| from email.parser import BytesParser, Parser | |
| from email.policy import default | |
| from pathlib import Path | |
| from urllib.parse import urlparse | |
| from html.parser import HTMLParser | |
| class URLConverter(HTMLParser): | |
| def __init__(self, mapping): |
User Data/Local State
{"ntp":{"activate_hide_shortcuts_field_trial":false}}| #include <iomanip> | |
| #include <iostream> | |
| #include <sstream> | |
| #include <algorithm> | |
| #include <numeric> | |
| #include <limits> | |
| #include <bitset> | |
| #include <map> | |
| #include <set> | |
| #include <queue> |
| https://stackoverflow.com/a/38043447 |
| /**************************************************************************/ | |
| /* */ | |
| /* This file is part of WP plug-in of Frama-C. */ | |
| /* */ | |
| /* Copyright (C) 2007-2018 */ | |
| /* CEA (Commissariat a l'energie atomique et aux energies */ | |
| /* alternatives) */ | |
| /* */ | |
| /* you can redistribute it and/or modify it under the terms of the GNU */ | |
| /* Lesser General Public License as published by the Free Software */ |
| diff -ur Win32-Ldd-0.02-orig/Ldd.xs Win32-Ldd-0.02/Ldd.xs | |
| --- Win32-Ldd-0.02-orig/Ldd.xs 2017-06-26 21:57:35.000000000 +0900 | |
| +++ Win32-Ldd-0.02/Ldd.xs 2018-05-09 21:23:20.769338100 +0900 | |
| @@ -62,7 +62,7 @@ | |
| static struct DepTreeElement * | |
| build_dep_tree(char *pe_file, | |
| SearchPaths *search_paths, | |
| - int datarelocs, int recursive, int functionrelocs) { | |
| + int recursive, int datarelocs, int functionrelocs) { | |
| /* warn("build_dep_tree(%s, %p, %d, %d)", pe_file, search_paths, datarelocs, functionrelocs); */ |
| --- origsrc/subversion-1.10.0/subversion/libsvn_subr/io.c 2018-04-24 15:58:49.920742300 +0900 | |
| +++ src/subversion-1.10.0/subversion/libsvn_subr/io.c 2018-04-24 21:16:56.215447100 +0900 | |
| @@ -4294,6 +4294,7 @@ svn_io_file_rename2(const char *from_pat | |
| status = apr_file_rename(from_path_apr, to_path_apr, pool); | |
| } | |
| #elif defined (__CYGWIN__) | |
| + status = apr_file_rename(from_path_apr, to_path_apr, pool); | |
| WIN32_RETRY_LOOP(status, apr_file_rename(from_path_apr, to_path_apr, pool)); | |
| #else | |
| status = apr_file_rename(from_path_apr, to_path_apr, pool); |