id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
625356233
Use license instead of licence Coverage remained the same at 98.506% when pulling 40c84a04409c51e848ffa7815ec565bd0fb48f4a on dota17:license into 852e11e4fbaae07d272102f453ea9cfd1684d99d on apache:master.
gharchive/pull-request
2020-05-27T03:54:13
2025-04-01T06:46:32.019509
{ "authors": [ "coveralls", "dota17" ], "repo": "apache/commons-csv", "url": "https://github.com/apache/commons-csv/pull/74", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
868583691
Revisit the design and usage of URL in Dubbo 3.0 The concept of URL-based design runs through Dubbo. There are two main threads, the provider and consumer. Provider registry-url: It provides all information related the registry center, which is built by RegistryConfig and the protocol begins with registry, such as : registry://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?application=dubbo-demo-api-provider&dubbo=2.0.2&pid=20855&registry=zookeeper&timestamp=1619492124796 And then, registry-url will be enhanced if the proxy has been customized by users. You can see ServicesConfig#doExportUrlsFor1Protocol // For providers, this is used to enable custom proxy to generate invoker String proxy = url.getParameter(PROXY_KEY); if (StringUtils.isNotEmpty(proxy)) { registryURL = registryURL.addParameter(PROXY_KEY, proxy); } Finally, there are some changes in registry-url as follows: registry-url's protocol will be updated from registry to zookeeper (if you use zookeeper as the registry center) registry-url will add the parameter export and its value is provider-url(see below) zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?application=dubbo-demo-api-provider&dubbo=2.0.2&export=dubbo%3A%2F%2F10.38.233.154%3A20880%2Forg.apache.dubbo.demo.DemoService%3Fanyhost%3Dtrue%26application%3Ddubbo-demo-api-provider%26bind.ip%3D10.38.233.154%26bind.port%3D20880%26default%3Dtrue%26deprecated%3Dfalse%26dubbo%3D2.0.2%26dynamic%3Dtrue%26generic%3Dfalse%26interface%3Dorg.apache.dubbo.demo.DemoService%26methods%3DsayHello%2CsayHelloAsync%26monitor%3Ddubbo%253A%252F%252Fmonitor-address%253A9090%253Fapplication%253Ddubbo-demo-api-provider%2526dubbo%253D2.0.2%2526interface%253Dorg.apache.dubbo.monitor.MonitorService%2526pid%253D20855%2526register.ip%253D10.38.233.154%2526timestamp%253D1619493040920%26pid%3D20855%26release%3D%26side%3Dprovider%26timestamp%3D1619492161107&pid=20855&timestamp=1619492124796 Call RegistoryProtocol#export to release the provider information in zookeeper's providers node dubbo://10.38.233.154:20880/org.apache.dubbo.demo.DemoService?anyhost=true&application=dubbo-demo-api-provider&default=true&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=org.apache.dubbo.demo.DemoService&methods=sayHello,sayHelloAsync&pid=20855&release=&side=provider&timestamp=1619492161107 monitor-url: It‘s designed for monitor and built by MonitorConfig and registry-url, which begins with dubbo, such as dubbo://monitor-address:9090?application=dubbo-demo-api-provider&dubbo=2.0.2&interface=org.apache.dubbo.monitor.MonitorService&pid=97749&register.ip=10.38.233.154&timestamp=1619514194521 local-url: It provides local-to-local call for debugging, which begins with injvm, such as injvm://127.0.0.1/org.apache.dubbo.demo.DemoService?anyhost=true&application=dubbo-demo-api-provider&bind.ip=10.38.233.154&bind.port=20880&default=true&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=org.apache.dubbo.demo.DemoService&methods=sayHello,sayHelloAsync&pid=97749&release=&side=provider&timestamp=1619514176258 provider-url: It's the core url, which is to describe the provider's information and begins with dubbo. Also it's will be changed at runtime. built by ServiceConfig first dubbo://10.38.233.154:20880/org.apache.dubbo.demo.DemoService?anyhost=true&application=dubbo-demo-api-provider&bind.ip=10.38.233.154&bind.port=20880&default=true&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=org.apache.dubbo.demo.DemoService&methods=sayHello,sayHelloAsync&pid=20855&release=&side=provider&timestamp=1619492161107 enhance customized parameters by configurator // You can customize Configurator to append extra parameters if (ExtensionLoader.getExtensionLoader(ConfiguratorFactory.class) .hasExtension(url.getProtocol())) { url = ExtensionLoader.getExtensionLoader(ConfiguratorFactory.class) .getExtension(url.getProtocol()).getConfigurator(url).configure(url); } add dynamic parameter if it's absent url = url.addParameterIfAbsent(DYNAMIC_KEY, registryURL.getParameter(DYNAMIC_KEY)); Append parameter as monitor and value as monitor-url if (monitorUrl != null) { url = url.addParameterAndEncoded(MONITOR_KEY, monitorUrl.toFullString()); } the url will be dubbo://10.38.233.154:20880/org.apache.dubbo.demo.DemoService?anyhost=true&application=dubbo-demo-api-provider&bind.ip=10.38.233.154&bind.port=20880&default=true&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=org.apache.dubbo.demo.DemoService&methods=sayHello,sayHelloAsync&monitor=dubbo%3A%2F%2Fmonitor-address%3A9090%3Fapplication%3Ddubbo-demo-api-provider%26dubbo%3D2.0.2%26interface%3Dorg.apache.dubbo.monitor.MonitorService%26pid%3D20855%26register.ip%3D10.38.233.154%26timestamp%3D1619493040920&pid=20855&release=&side=provider&timestamp=1619492161107 override-substribe-url: it used to avoid to cover subscription information when the provider subscribed // Subscribe the override data // FIXME When the provider subscribes, it will affect the scene : a certain JVM exposes the service and call // the same service. Because the subscribed is cached key with the name of the service, it causes the // subscription information to cover. final URL overrideSubscribeUrl = getSubscribedOverrideUrl(providerUrl); final OverrideListener overrideSubscribeListener = new OverrideListener(overrideSubscribeUrl, originInvoker); overrideListeners.put(overrideSubscribeUrl, overrideSubscribeListener); And the url begins with provider, such as provider://10.38.233.154:20880/org.apache.dubbo.demo.DemoService?anyhost=true&application=dubbo-demo-api-provider&bind.ip=10.38.233.154&bind.port=20880&category=configurators&check=false&default=true&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=org.apache.dubbo.demo.DemoService&methods=sayHello,sayHelloAsync&monitor=dubbo%3A%2F%2Fmonitor-address%3A9090%3Fapplication%3Ddubbo-demo-api-provider%26dubbo%3D2.0.2%26interface%3Dorg.apache.dubbo.monitor.MonitorService%26pid%3D20855%26register.ip%3D10.38.233.154%26timestamp%3D1619493040920&pid=20855&release=&side=provider&timestamp=1619492161107 cache-url: It saves in the disk and also will be updated if receive an notification of changes from registry center, which begins with empty, such as AbstractRegistry#notify(URL, NotifyListener, List) protected void notify(URL url, NotifyListener listener, List<URL> urls) { //omit some codes // keep every provider's category. Map<String, List<URL>> result = new HashMap<>(); for (URL u : urls) { if (UrlUtils.isMatch(url, u)) { String category = u.getParameter(CATEGORY_KEY, DEFAULT_CATEGORY); List<URL> categoryList = result.computeIfAbsent(category, k -> new ArrayList<>()); categoryList.add(u); } } //omit some codes for (Map.Entry<String, List<URL>> entry : result.entrySet()) { String category = entry.getKey(); List<URL> categoryList = entry.getValue(); categoryNotified.put(category, categoryList); listener.notify(categoryList); // We will update our cache file after each notification. // When our Registry has a subscribe failure due to network jitter, we can return at least the existing cache URL. saveProperties(url); } } The cache-url was in the dubbo-registry-dubbo-demo-api-provider-127.0.0.1-2181.cache file org.apache.dubbo.demo.DemoService=empty\://10.38.233.154\:20880/org.apache.dubbo.demo.DemoService?anyhost\=true&application\=dubbo-demo-api-provider&bind.ip\=10.38.233.154&bind.port\=20880&category\=configurators&check\=false&default\=true&deprecated\=false&dubbo\=2.0.2&dynamic\=true&generic\=false&interface\=org.apache.dubbo.demo.DemoService&methods\=sayHello,sayHelloAsync&monitor\=dubbo%3A%2F%2Fmonitor-address%3A9090%3Fapplication%3Ddubbo-demo-api-provider%26dubbo%3D2.0.2%26interface%3Dorg.apache.dubbo.monitor.MonitorService%26pid%3D70560%26register.ip%3D10.38.233.154%26timestamp%3D1619506379919&pid\=70560&release\=&side\=provider&timestamp\=1619506347010 Consumer local-url: It's for checking if it's in JVM, which begins with injvm injvm://127.0.0.1/org.apache.dubbo.rpc.service.GenericService?application=dubbo-demo-api-consumer&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&register.ip=10.38.233.154&release=&side=consumer&sticky=false&timestamp=1619520920163 registry-url: It provides registry center information, which is built by ReferenceConfig and begins with registry registry://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?application=dubbo-demo-api-consumer&dubbo=2.0.2&pid=20527&registry=zookeeper&timestamp=1619521528200 Also, it will be changed at runtime as follows: Solve compatible problem, see ConfigValidationUtils#genCompatibleRegistries(List, boolean) private static List<URL> genCompatibleRegistries(List<URL> registryList, boolean provider) { List<URL> result = new ArrayList<>(registryList.size()); registryList.forEach(registryURL -> { result.add(registryURL); if (provider) { // for registries enabled service discovery, automatically register interface compatible addresses. if (SERVICE_REGISTRY_PROTOCOL.equals(registryURL.getProtocol()) && registryURL.getParameter(REGISTRY_PUBLISH_INTERFACE_KEY, ConfigurationUtils.getDynamicGlobalConfiguration().getBoolean(DUBBO_PUBLISH_INTERFACE_DEFAULT_KEY, false)) && registryNotExists(registryURL, registryList, REGISTRY_PROTOCOL)) { URL interfaceCompatibleRegistryURL = URLBuilder.from(registryURL) .setProtocol(REGISTRY_PROTOCOL) .removeParameter(REGISTRY_TYPE_KEY) .build(); result.add(interfaceCompatibleRegistryURL); } } }); return result; } Add monitor-url if it exists (you can see above to how to generate monitor-url), also add parameter as refer and value as all configuration of ReferenceConfig // if protocols not injvm checkRegistry if (!LOCAL_PROTOCOL.equalsIgnoreCase(getProtocol())) { checkRegistry(); List<URL> us = ConfigValidationUtils.loadRegistries(this, false); if (CollectionUtils.isNotEmpty(us)) { for (URL u : us) { URL monitorUrl = ConfigValidationUtils.loadMonitor(this, u); if (monitorUrl != null) { map.put(MONITOR_KEY, URL.encode(monitorUrl.toFullString())); } urls.add(u.addParameterAndEncoded(REFER_KEY, StringUtils.toQueryString(map))); } } // omit some codes } such as registry://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?application=dubbo-demo-api-consumer&dubbo=2.0.2&pid=20527&refer=application%3Ddubbo-demo-api-consumer%26dubbo%3D2.0.2%26generic%3Dtrue%26interface%3Dorg.apache.dubbo.demo.DemoService%26pid%3D20527%26register.ip%3D10.38.233.154%26side%3Dconsumer%26sticky%3Dfalse%26timestamp%3D1619520920163&registry=zookeeper&timestamp=1619521528200 the protocol changes from registry to zookeeper(if you use zookeeper as the registry center) zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.RegistryService?application=dubbo-demo-api-consumer&dubbo=2.0.2&pid=20527&refer=application%3Ddubbo-demo-api-consumer%26dubbo%3D2.0.2%26generic%3Dtrue%26interface%3Dorg.apache.dubbo.demo.DemoService%26pid%3D20527%26register.ip%3D10.38.233.154%26side%3Dconsumer%26sticky%3Dfalse%26timestamp%3D1619520920163&timestamp=1619521528200 customer-url: it's generated from registry-url, which begins with consumer. There are two kinds of it as follows generic is set true consumer://10.38.233.154/org.apache.dubbo.rpc.service.GenericService?application=dubbo-demo-api-consumer&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&side=consumer&sticky=false&timestamp=1619520920163 or false consumer://10.38.233.154/org.apache.dubbo.demo.DemoService?application=dubbo-demo-api-consumer&category=providers,configurators,routers&dubbo=2.0.2&generic=false&interface=org.apache.dubbo.demo.DemoService&methods=sayHello,sayHelloAsync&pid=63583&side=consumer&sticky=false&timestamp=1619520920163 finally, its protocol will be changed, such as dubbo://10.38.233.154/org.apache.dubbo.demo.DemoService?application=dubbo-demo-api-consumer&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&register.ip=10.38.233.154&side=consumer&sticky=false&timestamp=1619520920163 directory-url: it's generated from registry-url, which begins with dubbo. private URL turnRegistryUrlToConsumerUrl(URL url) { return URLBuilder.from(url) .setHost(queryMap.get(REGISTER_IP_KEY) == null ? url.getHost() : queryMap.get(REGISTER_IP_KEY)) .setPort(0) .setProtocol(queryMap.get(PROTOCOL_KEY) == null ? DUBBO : queryMap.get(PROTOCOL_KEY)) .setPath(queryMap.get(INTERFACE_KEY)) .clearParameters() .addParameters(queryMap) .removeParameter(MONITOR_KEY) .build(); } such as dubbo://10.38.233.154/org.apache.dubbo.demo.DemoService?application=dubbo-demo-api-consumer&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&register.ip=10.38.233.154&side=consumer&sticky=false&timestamp=1619520920163 override-directory-url: it's generated from registry-url, which begins with dubbo. The override-directory-url is the same as directory-url first. dubbo://10.38.233.154/org.apache.dubbo.demo.DemoService?application=dubbo-demo-api-consumer&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&register.ip=10.38.233.154&side=consumer&sticky=false&timestamp=1619520920163 url-to-registry: It generated by all parameters in registry-url URL urlToRegistry = new URL(CONSUMER_PROTOCOL, parameters.remove(REGISTER_IP_KEY), 0, type.getName(), parameters); such as consumer://10.38.233.154/org.apache.dubbo.rpc.service.GenericService?application=dubbo-demo-api-consumer&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&side=consumer&sticky=false&timestamp=1619520920163 subscribed-url: It generated by url-to-registry and add parameter category public static URL toSubscribeUrl(URL url) { return url.addParameter(CATEGORY_KEY, PROVIDERS_CATEGORY + "," + CONFIGURATORS_CATEGORY + "," + ROUTERS_CATEGORY); } such as consumer://10.38.233.154/org.apache.dubbo.rpc.service.GenericService?application=dubbo-demo-api-consumer&category=providers,configurators,routers&dubbo=2.0.2&generic=true&interface=org.apache.dubbo.demo.DemoService&pid=20527&side=consumer&sticky=false&timestamp=1619520920163 Problem The responsibility for different URLs are unclear The same URL means different things in different places The names of URLs are irregularity It's very difficult to find the differences between two similar URLs There are some invalid parameters in URL We can find the same parameter timestamp in URL (such as provider-url) Are all the parameters necessary in URLs ? High maintenance costs, easy to cause problems Suggestion Define the boundaries or types of different URLs by protocols Define the necessary parameters of URLs for each of the different protocols Define the state changes relationship between different URLs with the same protocol Simplify the logic, use the way of pipeline or plugin to make every changes (URLs with the same protocol) clear Don't expose addParameter method to add parameter-value pair into the URL The sooner you refactor, the better
gharchive/issue
2021-04-27T08:07:43
2025-04-01T06:46:32.050441
{ "authors": [ "chickenlj", "pinxiong" ], "repo": "apache/dubbo", "url": "https://github.com/apache/dubbo/issues/7641", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
569480766
[FLINK-16243][docs] Update quickstarts to Log4j2 Looks good, +1
gharchive/pull-request
2020-02-23T11:27:54
2025-04-01T06:46:32.052304
{ "authors": [ "StephanEwen", "zentol" ], "repo": "apache/flink", "url": "https://github.com/apache/flink/pull/11193", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
494177332
[hotfix] [docs] Fixes in glossar Thanks for the update @afedulov. Will merge this.
gharchive/pull-request
2019-09-16T17:20:53
2025-04-01T06:46:32.053024
{ "authors": [ "afedulov", "fhueske" ], "repo": "apache/flink", "url": "https://github.com/apache/flink/pull/9694", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
420842915
HBASE-22042 add missing @Override annotation for RawAsyncTableImpl.scan @jainrish I dont think we use PR to accept changes for HBase yet. Please see http://hbase.apache.org/book.html#submitting.patches
gharchive/pull-request
2019-03-14T05:52:36
2025-04-01T06:46:32.054114
{ "authors": [ "jainrish", "willshen" ], "repo": "apache/hbase", "url": "https://github.com/apache/hbase/pull/108", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
675825799
test pre commit archive surefire reports :confetti_ball: +1 overall Vote Subsystem Runtime Comment +0 :ok: reexec 0m 26s Docker mode activated. -0 :warning: yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck _ Prechecks _ _ master Compile Tests _ +1 :green_heart: mvninstall 3m 41s master passed +1 :green_heart: compile 0m 26s master passed +1 :green_heart: shadedjars 5m 38s branch has no errors when building our shaded downstream artifacts. +1 :green_heart: javadoc 0m 25s master passed _ Patch Compile Tests _ +1 :green_heart: mvninstall 3m 28s the patch passed +1 :green_heart: compile 0m 25s the patch passed +1 :green_heart: javac 0m 25s the patch passed +1 :green_heart: shadedjars 5m 32s patch has no errors when building our shaded downstream artifacts. +1 :green_heart: javadoc 0m 21s the patch passed _ Other Tests _ +1 :green_heart: unit 1m 1s hbase-client in the patch passed. 22m 32s Subsystem Report/Notes Docker Client=19.03.12 Server=19.03.12 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/artifact/yetus-jdk8-hadoop3-check/output/Dockerfile GITHUB PR https://github.com/apache/hbase/pull/2225 Optional Tests javac javadoc unit shadedjars compile uname Linux 53f79c5e1afc 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux Build tool maven Personality dev-support/hbase-personality.sh git revision master / 7b099eaa75 Default Java 1.8.0_232 Test Results https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/testReport/ Max. process+thread count 340 (vs. ulimit of 12500) modules C: hbase-client U: hbase-client Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/console versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) Powered by Apache Yetus 0.11.1 https://yetus.apache.org This message was automatically generated. :confetti_ball: +1 overall Vote Subsystem Runtime Comment +0 :ok: reexec 0m 27s Docker mode activated. -0 :warning: yetus 0m 3s Unprocessed flag(s): --brief-report-file --spotbugs-strict-precheck --whitespace-eol-ignore-list --whitespace-tabs-ignore-list --quick-hadoopcheck _ Prechecks _ _ master Compile Tests _ +1 :green_heart: mvninstall 4m 27s master passed +1 :green_heart: compile 0m 32s master passed +1 :green_heart: shadedjars 6m 7s branch has no errors when building our shaded downstream artifacts. -0 :warning: javadoc 0m 31s hbase-client in master failed. _ Patch Compile Tests _ +1 :green_heart: mvninstall 4m 9s the patch passed +1 :green_heart: compile 0m 29s the patch passed +1 :green_heart: javac 0m 29s the patch passed +1 :green_heart: shadedjars 5m 58s patch has no errors when building our shaded downstream artifacts. -0 :warning: javadoc 0m 26s hbase-client in the patch failed. _ Other Tests _ +1 :green_heart: unit 1m 10s hbase-client in the patch passed. 25m 26s Subsystem Report/Notes Docker Client=19.03.12 Server=19.03.12 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/artifact/yetus-jdk11-hadoop3-check/output/Dockerfile GITHUB PR https://github.com/apache/hbase/pull/2225 Optional Tests javac javadoc unit shadedjars compile uname Linux 178cd10379c5 4.15.0-60-generic #67-Ubuntu SMP Thu Aug 22 16:55:30 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux Build tool maven Personality dev-support/hbase-personality.sh git revision master / 7b099eaa75 Default Java 2020-01-14 javadoc https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/artifact/yetus-jdk11-hadoop3-check/output/branch-javadoc-hbase-client.txt javadoc https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/artifact/yetus-jdk11-hadoop3-check/output/patch-javadoc-hbase-client.txt Test Results https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/testReport/ Max. process+thread count 276 (vs. ulimit of 12500) modules C: hbase-client U: hbase-client Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/console versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) Powered by Apache Yetus 0.11.1 https://yetus.apache.org This message was automatically generated. :confetti_ball: +1 overall Vote Subsystem Runtime Comment +0 :ok: reexec 4m 44s Docker mode activated. _ Prechecks _ +1 :green_heart: dupname 0m 0s No case conflicting files found. +1 :green_heart: hbaseanti 0m 0s Patch does not have any anti-patterns. +1 :green_heart: @author 0m 0s The patch does not contain any @author tags. _ master Compile Tests _ +1 :green_heart: mvninstall 4m 18s master passed +1 :green_heart: checkstyle 0m 30s master passed +1 :green_heart: spotbugs 1m 8s master passed _ Patch Compile Tests _ +1 :green_heart: mvninstall 3m 48s the patch passed +1 :green_heart: checkstyle 0m 28s the patch passed +1 :green_heart: whitespace 0m 0s The patch has no whitespace issues. +1 :green_heart: hadoopcheck 13m 32s Patch does not cause any errors with Hadoop 3.1.2 3.2.1. +1 :green_heart: spotbugs 1m 15s the patch passed _ Other Tests _ +1 :green_heart: asflicense 0m 14s The patch does not generate ASF License warnings. 38m 26s Subsystem Report/Notes Docker Client=19.03.12 Server=19.03.12 base: https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/artifact/yetus-general-check/output/Dockerfile GITHUB PR https://github.com/apache/hbase/pull/2225 Optional Tests dupname asflicense spotbugs hadoopcheck hbaseanti checkstyle uname Linux e9dff7ed4d00 4.15.0-58-generic #64-Ubuntu SMP Tue Aug 6 11:12:41 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux Build tool maven Personality dev-support/hbase-personality.sh git revision master / 7b099eaa75 Max. process+thread count 94 (vs. ulimit of 12500) modules C: hbase-client U: hbase-client Console output https://ci-hadoop.apache.org/job/HBase/job/HBase-PreCommit-GitHub-PR/job/PR-2225/1/console versions git=2.17.1 maven=(cecedd343002696d0abb50b32b541b8a6ba2883f) spotbugs=3.1.12 Powered by Apache Yetus 0.11.1 https://yetus.apache.org This message was automatically generated. Seems worked. We have test_logs.zip under the output for yetus-jdk11-hadoop3-check and yetus-jdk8-hadoop3-check.
gharchive/pull-request
2020-08-10T02:26:16
2025-04-01T06:46:32.107720
{ "authors": [ "Apache-HBase", "Apache9" ], "repo": "apache/hbase", "url": "https://github.com/apache/hbase/pull/2225", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
142485179
HAWQ 459 Enhanced metadata api to support multiple items We are introducing API change, so we should bump up pxfProtocolVersion in gradle.properties. @sansanichfb i don't think we need to increase the API version as v14 wasn't quite consumed by any user/customer @shivzone Really nice changes! Does it affect the way PXF interacts with HAWQ? IIRC we already assume the returned data will be a list of items, but I think the JSON field names are different now. I think since the JSON answer is different, the API should change. @sansanichfb is working on the related HAWQ changes to work with the new api +1, LGTM.
gharchive/pull-request
2016-03-21T22:07:09
2025-04-01T06:46:32.110408
{ "authors": [ "hornn", "sansanichfb", "shivzone" ], "repo": "apache/incubator-hawq", "url": "https://github.com/apache/incubator-hawq/pull/477", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
336399160
add tmaster physical plan endpoint Yes. It is weird this part is missing. Let me fix it.
gharchive/pull-request
2018-06-27T21:48:15
2025-04-01T06:46:32.111129
{ "authors": [ "yaoliclshlmch" ], "repo": "apache/incubator-heron", "url": "https://github.com/apache/incubator-heron/pull/2941", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
429364991
Change slack to Apache Coverage decreased (-0.002%) to 15.41% when pulling 32f1e2a67f90cfc375b7389a4d49ca7a3b9df41d on wu-sheng-patch-1 into b54d9ff6d1ee2ca72617910ebe093c9343138844 on master.
gharchive/pull-request
2019-04-04T16:09:28
2025-04-01T06:46:32.112697
{ "authors": [ "coveralls", "wu-sheng" ], "repo": "apache/incubator-skywalking", "url": "https://github.com/apache/incubator-skywalking/pull/2447", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
306220859
Kyligence weekly update Can one of the admins verify this patch? CI passed [root@sandbox kylin-master]# tail nohup.out [INFO] Apache Kylin - Tool Assembly ....................... SUCCESS [ 4.928 s] [INFO] Apache Kylin - Integration Test .................... SUCCESS [ 01:37 h] [INFO] Apache Kylin - Tomcat Extension .................... SUCCESS [ 0.462 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:44 h [INFO] Finished at: 2018-03-17T16:15:01+00:00 [INFO] Final Memory: 95M/1378M [INFO] ------------------------------------------------------------------------ [root@sandbox kylin-master]# git log | head commit b81d7a2df289029768edd6532e63eae251f28b41 Author: yiming.xu <100650920@qq.com> Date: Fri Mar 9 16:48:31 2018 +0800 KYLIN-3149 Calcite's ReduceExpressionsRule.PROJECT_INSTANCE not working as expected Pull Request Test Coverage Report for Build 3050 23 of 131 (17.56%) changed or added relevant lines in 20 files are covered. 4 unchanged lines in 4 files lost coverage. Overall coverage decreased (-0.007%) to 23.846% Changes Missing Coverage Covered Lines Changed/Added Lines % server-base/src/main/java/org/apache/kylin/rest/service/AdminService.java 0 1 0.0% query/src/main/java/org/apache/kylin/query/relnode/OLAPUnionRel.java 0 1 0.0% query/src/main/java/org/apache/kylin/query/optrule/OLAPAggregateRule.java 0 1 0.0% engine-mr/src/main/java/org/apache/kylin/engine/mr/steps/CreateDictionaryJob.java 0 1 0.0% query/src/main/java/org/apache/kylin/query/optrule/OLAPWindowRule.java 0 2 0.0% core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java 0 2 0.0% query/src/main/java/org/apache/kylin/query/optrule/OLAPJoinRule.java 0 2 0.0% server-base/src/main/java/org/apache/kylin/rest/security/PasswordPlaceholderConfigurer.java 0 3 0.0% core-common/src/main/java/org/apache/kylin/common/QueryContext.java 0 3 0.0% query/src/main/java/org/apache/kylin/query/optrule/OLAPValuesRule.java 0 5 0.0% Files with Coverage Reduction New Missed Lines % query/src/main/java/org/apache/kylin/query/relnode/OLAPProjectRel.java 1 0.0% core-cube/src/main/java/org/apache/kylin/cube/cuboid/TreeCuboidScheduler.java 1 68.5% server-base/src/main/java/org/apache/kylin/rest/security/PasswordPlaceholderConfigurer.java 1 0.0% query/src/main/java/org/apache/kylin/query/optrule/OLAPProjectRule.java 1 0.0% Totals Change from base Build 3032: -0.007% Covered Lines: 14323 Relevant Lines: 60064 💛 - Coveralls
gharchive/pull-request
2018-03-18T07:57:01
2025-04-01T06:46:32.131293
{ "authors": [ "asfgit", "coveralls", "liyang-gmt8" ], "repo": "apache/kylin", "url": "https://github.com/apache/kylin/pull/118", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
426108238
PHOENIX-5197: Use extraOptions to set the configuration for Spark Workers WIP. Need to add tests. Please take a look at the initial PR @twdsilva Is there a way to add a test to verify that if you pass in a property in via the options in the datasource it will be used? A couple of problems that we will run into: DataSourceOptions converts all keys in the options map to lowercase. When creating a reader or writer, we create a DataSourceOptions object which is passed in all options. See createReader and createWriter. This is a problem for passing in a lot of Phoenix configurations like phoenix.query.timeoutMs which are case-sensitive. -> We can potentially get past this issue by serializing all configs against a single key in the options map and passing that to the workers. I can look into setting some small values for upsert batch size or query timeouts from the driver to see if the workers honor these values. FYI @twdsilva @ChinmaySKulkarni After talking offline, there isn't a clean way to test this, so its fine to not include a test. Regarding DataSourceOptions converting all the keys to lower case, we should come up with a serialization format to store the key value pairs as a value so that we can preserve the case. @twdsilva Please review now. I have added a unit test and separate logging properties for IT, src and test directories as well. Thanks for the review @twdsilva. I will commit this today.
gharchive/pull-request
2019-03-27T18:03:25
2025-04-01T06:46:32.136546
{ "authors": [ "ChinmaySKulkarni", "twdsilva" ], "repo": "apache/phoenix-connectors", "url": "https://github.com/apache/phoenix-connectors/pull/2", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
269426009
More header_rewrite examples This didn't cherry pick cleanly to 7.1.x branch. Miles, if we want to add this to that branch, can you make another PR against the branch please?
gharchive/pull-request
2017-10-29T19:13:48
2025-04-01T06:46:32.137736
{ "authors": [ "mlibbey", "zwoop" ], "repo": "apache/trafficserver", "url": "https://github.com/apache/trafficserver/pull/2723", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
657727428
slice plugin: fix throttle not work [approve ci] Cherry-picked to v9.0.x branch.
gharchive/pull-request
2020-07-15T23:32:42
2025-04-01T06:46:32.138693
{ "authors": [ "randall", "zds05", "zwoop" ], "repo": "apache/trafficserver", "url": "https://github.com/apache/trafficserver/pull/7008", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
622872759
Retry for STARTS_WITH This is up to date with cmu-db/master causing the big diff This can be closed and replaced with #1101
gharchive/pull-request
2020-05-22T00:40:40
2025-04-01T06:46:32.141461
{ "authors": [ "eppingere", "jkosh44" ], "repo": "apavlo/terrier", "url": "https://github.com/apavlo/terrier/pull/20", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
93794949
Added image rotation functionality. Cleaned up repository to improve builds. @collinprice Hi collin, Is there anyway you could build your module into a distribution zip with these changes. I really need the image rotation changes. I'm building an app and on android portrait images are showing as landscape. @jwogan5 This seems like an old PR. Not sure how fast the author will reply but you could make this into a distribution zip on your own based on this guide http://docs.appcelerator.com/platform/latest/#!/guide/Android_Module_Project @ashcoding Thanks for the link to the documentation. I haven't built a module yet but im looking forward to using the doc to build some other modules. I actually did find the link to collins build of 2.3.1 and it works great. https://github.com/collinprice/ti.imagefactory/releases Great to hear @jwogan5 how to rotate an image ? thanks @julien9999 I am using an exif js file to get the rotation needed to flip the image correctly. Here is the code not including that library that I am using to rotate images. var rotate = 90; // Just a sample rotate integer degree. var rotatedImage = ImageFactory.imageWithRotation(e.media, {degrees: rotate}); Here is a gist I just created with the exif.js file and a sample.js file: https://gist.github.com/jwogan5/24d622a7f670ab57fcf983ab3ff2ecd8 @collinprice Hey man! I think it's about time to integrate this :-) Can you resolve the merge conflicts or should one of our devs help? @hansemannn Yay! I resolved the merge conflicts but it looks like travis failed for a different reason. Merging now and will adjust the version and changelog afterwards.
gharchive/pull-request
2015-07-08T13:51:28
2025-04-01T06:46:32.154651
{ "authors": [ "ashcoding", "collinprice", "hansemannn", "julien9999", "jwogan5" ], "repo": "appcelerator-modules/ti.imagefactory", "url": "https://github.com/appcelerator-modules/ti.imagefactory/pull/15", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
440658098
chore(release): release iOS v2.1.0 Warnings :warning: :mag: Can't find junit reports at ./TESTS-*.xml, skipping generating JUnit Report. Generated by :no_entry_sign: dangerJS against 2ffe05e4acc09b4e5f6df57896739220cedcf774
gharchive/pull-request
2019-05-06T11:41:08
2025-04-01T06:46:32.156904
{ "authors": [ "build", "janvennemann" ], "repo": "appcelerator-modules/titanium-socketio", "url": "https://github.com/appcelerator-modules/titanium-socketio/pull/22", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
218286352
Index: compare interface types of potential witnesses to make sure we handle overloads properly. @swift-ci please smoke test and merge
gharchive/pull-request
2017-03-30T18:26:22
2025-04-01T06:46:32.167141
{ "authors": [ "nkcsgexi" ], "repo": "apple/swift", "url": "https://github.com/apple/swift/pull/8434", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
197594605
Fix rendering with textured area lights Can you update the ref image of the osl test scene 07 - emission.appleseed test scene?
gharchive/pull-request
2016-12-26T14:44:16
2025-04-01T06:46:32.167971
{ "authors": [ "dictoon", "est77" ], "repo": "appleseedhq/appleseed", "url": "https://github.com/appleseedhq/appleseed/pull/1181", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
293363265
Appsembler/extracare dogwood amir email certificate (12) ExtraCare: email certificates without mailto
gharchive/pull-request
2018-02-01T00:35:31
2025-04-01T06:46:32.169692
{ "authors": [ "amirtds" ], "repo": "appsembler/edx-theme", "url": "https://github.com/appsembler/edx-theme/pull/76", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
936388026
Deno 1.10 and 1.11 with Official base image I think we should also drop deno 1.8 with this version. What do you think?
gharchive/pull-request
2021-07-04T06:23:58
2025-04-01T06:46:32.173465
{ "authors": [ "lohanidamodar" ], "repo": "appwrite/php-runtimes", "url": "https://github.com/appwrite/php-runtimes/pull/13", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
38270799
aptible restore Noticed this wasn't closed; this now exits (backup:restore).
gharchive/issue
2014-07-21T00:54:28
2025-04-01T06:46:32.174193
{ "authors": [ "fancyremarker", "krallin" ], "repo": "aptible/aptible-cli", "url": "https://github.com/aptible/aptible-cli/issues/41", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
355475350
issue 458.4: retrieve the system database via the SystemDatabaseFeature http://jenkins01.arangodb.biz:8080/job/arangodb-matrix-pr/883/
gharchive/pull-request
2018-08-30T08:19:41
2025-04-01T06:46:32.183579
{ "authors": [ "vasiliy-arangodb" ], "repo": "arangodb/arangodb", "url": "https://github.com/arangodb/arangodb/pull/6299", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
301744772
upgrade aioredis to 1.1.0 Hi @jairhenrique is there any reason why you're setting minimum version to 1.1.0? I'm -1 on being that breaking upgrading dependencies. I would start putting a warning if someone is using below 1.0 and in next release we could enforce >1.0 @argaen aioredis is a dependency of aiocache, in my opinion, if someone uses aiocache defining which version of aioredis they will use, it is wrong. So, I do not see a problem in updating the dependency that should only be internal to aiocache. I don't agree, in general its good to leave dependencies open until a reasonable point. Some reasons: What if another package has also a dependency with aioredis? If you force strict dependencies you as a user have big changes of having version clashes between your libraries Version upgrades should be done smoothly so users can upgrade easily. I.e. having a release where you warn users versions <1 are not supported anymore and in the next release you enforce >1. In general its a good practice to leave dependencies as open as possible and consider upgrading when: Supporting all versions becomes painful because of many breaking changes from that dependency. Doesn't make sense anymore to support older versions (I don't think a reasonable time has passed yet since 1.0 was released for aioredis)
gharchive/pull-request
2018-03-02T12:03:02
2025-04-01T06:46:32.249082
{ "authors": [ "argaen", "jairhenrique" ], "repo": "argaen/aiocache", "url": "https://github.com/argaen/aiocache/pull/382", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
350964723
chore(package): update github-repository-provider to version 2.1.5 Coverage decreased (-0.1%) to 81.633% when pulling df020771999e8ce67af3aac380e4f29916cf66e4 on greenkeeper/github-repository-provider-2.1.5 into 6253b1bf398c1396b4477e6f51d95a452ee68124 on master. :tada: This PR is included in version 7.4.6 :tada: The release is available on: npm package (@latest dist-tag) GitHub release Your semantic-release bot :package::rocket:
gharchive/pull-request
2018-08-15T20:58:23
2025-04-01T06:46:32.252913
{ "authors": [ "arlac77", "coveralls" ], "repo": "arlac77/npm-template-sync", "url": "https://github.com/arlac77/npm-template-sync/pull/406", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
434998481
fix start-stop bug followed code style, removed binaries and bug is fixed in another branch
gharchive/pull-request
2019-04-18T23:35:19
2025-04-01T06:46:32.271885
{ "authors": [ "HazemGabr232" ], "repo": "ash753/tearobot", "url": "https://github.com/ash753/tearobot/pull/26", "license": "Unlicense", "license_type": "permissive", "license_source": "github-api" }
101961547
Updating Commands doc. :watch: @anurse Please review Adding @victorhurdugaci to review as well. Done reviewing :watch: Updates complete. @victorhurdugaci or @daroth please review. Looks good :shipit: a3179309ab5ba54814e161f7ec7aea17eb772292
gharchive/pull-request
2015-08-19T18:08:01
2025-04-01T06:46:32.277512
{ "authors": [ "Erikre", "danroth27", "victorhurdugaci" ], "repo": "aspnet/Docs", "url": "https://github.com/aspnet/Docs/pull/389", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
312272239
Minor DefaultHubLifetimeManager improvements Need to see some performance numbers. @JamesNK do a micro benchmark run. Method | WriteSlow | Mean | Error | StdDev | Op/s | Gen 0 | Allocated | --------------------- |---------- |-----------:|----------:|----------:|----------:|-------:|----------:| SendAllAsync | False | 21.321 us | 0.0827 us | 0.0733 us | 46,902.0 | 0.0610 | 576 B | SendGroupAsync | False | 4.130 us | 0.0950 us | 0.0933 us | 242,137.1 | 0.0763 | 728 B | SendGroupsAsync | False | 26.472 us | 0.1952 us | 0.1630 us | 37,776.0 | 0.2747 | 2712 B | SendGroupExceptAsync | False | 3.142 us | 0.0397 us | 0.0371 us | 318,219.6 | 0.0305 | 304 B | SendAllExceptAsync | False | 53.166 us | 0.2579 us | 0.2413 us | 18,809.1 | 0.0610 | 664 B | SendConnectionAsync | False | 1.250 us | 0.0179 us | 0.0159 us | 799,903.9 | 0.0401 | 376 B | SendConnectionsAsync | False | 53.306 us | 0.2138 us | 0.2100 us | 18,759.7 | 0.0610 | 664 B | SendUserAsync | False | 8.996 us | 0.0810 us | 0.0718 us | 111,157.1 | 0.0610 | 664 B | SendUsersAsync | False | 37.060 us | 0.5291 us | 0.5197 us | 26,983.2 | 0.0610 | 664 B | SendAllAsync | True | 187.823 us | 4.6114 us | 4.3135 us | 5,324.2 | 3.6621 | 41172 B | SendGroupAsync | True | 21.467 us | 0.6089 us | 0.5981 us | 46,584.2 | 0.4883 | 4919 B | SendGroupsAsync | True | 198.029 us | 3.9110 us | 3.6583 us | 5,049.8 | 4.1504 | 43548 B | SendGroupExceptAsync | True | 3.501 us | 0.0695 us | 0.0650 us | 285,629.1 | 0.0305 | 304 B | SendAllExceptAsync | True | 102.889 us | 3.2404 us | 3.1825 us | 9,719.2 | 2.0752 | 21272 B | SendConnectionAsync | True | 3.332 us | 0.0994 us | 0.0976 us | 300,142.1 | 0.0725 | 753 B | SendConnectionsAsync | True | 113.021 us | 2.0027 us | 1.8733 us | 8,847.9 | 1.9531 | 21268 B | SendUserAsync | True | 18.380 us | 0.4294 us | 0.4217 us | 54,407.4 | 0.2747 | 2878 B | SendUsersAsync | True | 198.394 us | 5.3778 us | 5.2817 us | 5,040.5 | 3.9063 | 41594 B | Method | WriteSlow | Mean | Error | StdDev | Op/s | Gen 0 | Allocated | --------------------- |---------- |-----------:|----------:|----------:|----------:|-------:|----------:| SendAllAsync | False | 22.878 us | 0.2687 us | 0.2513 us | 43,710.3 | 0.0610 | 576 B | SendGroupAsync | False | 5.128 us | 0.0736 us | 0.0652 us | 194,993.3 | 0.1526 | 1392 B | SendGroupsAsync | False | 38.224 us | 0.7998 us | 0.7482 us | 26,161.8 | 0.9766 | 9128 B | SendGroupExceptAsync | False | 4.032 us | 0.0949 us | 0.0888 us | 247,994.3 | 0.0687 | 672 B | SendAllExceptAsync | False | 55.645 us | 0.6603 us | 0.6176 us | 17,970.9 | 0.0610 | 664 B | SendConnectionAsync | False | 1.670 us | 0.0416 us | 0.0408 us | 598,731.1 | 0.0553 | 512 B | SendConnectionsAsync | False | 55.243 us | 0.2127 us | 0.1989 us | 18,101.7 | 0.0610 | 664 B | SendUserAsync | False | 10.209 us | 0.0806 us | 0.0714 us | 97,953.0 | 0.0610 | 664 B | SendUsersAsync | False | 35.078 us | 0.3724 us | 0.3484 us | 28,508.3 | 0.0610 | 664 B | SendAllAsync | True | 188.096 us | 5.6237 us | 5.2604 us | 5,316.4 | 3.6621 | 41608 B | SendGroupAsync | True | 22.128 us | 0.9320 us | 0.9154 us | 45,191.9 | 0.4883 | 5116 B | SendGroupsAsync | True | 194.874 us | 4.4265 us | 4.3475 us | 5,131.5 | 4.3945 | 46214 B | SendGroupExceptAsync | True | 4.020 us | 0.1004 us | 0.0939 us | 248,760.4 | 0.0687 | 672 B | SendAllExceptAsync | True | 110.242 us | 5.1687 us | 5.0764 us | 9,071.0 | 1.9531 | 21273 B | SendConnectionAsync | True | 3.735 us | 0.2174 us | 0.2136 us | 267,735.1 | 0.0839 | 889 B | SendConnectionsAsync | True | 112.796 us | 1.1106 us | 1.0389 us | 8,865.5 | 2.1973 | 21360 B | SendUserAsync | True | 16.613 us | 0.8038 us | 0.7894 us | 60,192.2 | 0.2747 | 2874 B | SendUsersAsync | True | 191.812 us | 6.2831 us | 6.1709 us | 5,213.4 | 3.9063 | 41697 B |
gharchive/pull-request
2018-04-08T04:44:59
2025-04-01T06:46:32.279798
{ "authors": [ "JamesNK", "davidfowl" ], "repo": "aspnet/SignalR", "url": "https://github.com/aspnet/SignalR/pull/1904", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
250745593
revert 3b969e032a70fc00d3a5569d03acc5b8fd7ae25b @atheurer , @bmichalo
gharchive/pull-request
2017-08-16T20:12:23
2025-04-01T06:46:32.297799
{ "authors": [ "k-rister" ], "repo": "atheurer/dpdk-rhel-perf-tools", "url": "https://github.com/atheurer/dpdk-rhel-perf-tools/pull/18", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
105240529
Equivalent es index Couldn't we store the equivalent set id together with the content in ES, rather than resolve it every time?
gharchive/pull-request
2015-09-07T15:59:19
2025-04-01T06:46:32.300754
{ "authors": [ "mbst-jamie", "wwajerowicz" ], "repo": "atlasapi/atlas-deer", "url": "https://github.com/atlasapi/atlas-deer/pull/141", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
297096320
RELEASE: v.0.1.0-alpha.28 Coverage remained the same at 100.0% when pulling 756d158e0bb811025a11bd16386dd42ae05ef8ca on dev into 3158f0300d667d5b0eb99ee4a5b9bb51f71cbfd6 on next.
gharchive/pull-request
2018-02-14T13:31:43
2025-04-01T06:46:32.302956
{ "authors": [ "coveralls", "tpanitte" ], "repo": "atomservicesjs/atomservicescore", "url": "https://github.com/atomservicesjs/atomservicescore/pull/24", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
434372391
Text change AB#2 test
gharchive/pull-request
2019-04-17T16:20:45
2025-04-01T06:46:32.305241
{ "authors": [ "aliallshore", "attahameed" ], "repo": "attahameed/ContosoAir", "url": "https://github.com/attahameed/ContosoAir/pull/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
81178781
Added AKEqualizer presets There are a few things I'd like to change on these before moving forward. Will contact you on Screenhero later to resolve.
gharchive/pull-request
2015-05-26T23:14:37
2025-04-01T06:46:32.313409
{ "authors": [ "aure", "narner" ], "repo": "audiokit/AudioKit", "url": "https://github.com/audiokit/AudioKit/pull/163", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
183198761
utilzing -> utilizing Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
gharchive/pull-request
2016-10-15T09:09:41
2025-04-01T06:46:32.325843
{ "authors": [ "CLAassistant", "Sch3lp" ], "repo": "aurelia/templating", "url": "https://github.com/aurelia/templating/pull/480", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
250287091
Avoid deploy tests Coverage remained the same at 98.294% when pulling 3c9bd16a708be9b53525f1e08dff60ade4812e65 on avoid-deploy-tests into 5d0c6573924dae330338f909222e308ba80bd55c on master. Coverage increased (+0.01%) to 98.304% when pulling 12a3927377d3f8ac429f7a1ca0342d75370e43f8 on avoid-deploy-tests into 5d0c6573924dae330338f909222e308ba80bd55c on master.
gharchive/pull-request
2017-08-15T11:15:27
2025-04-01T06:46:32.362270
{ "authors": [ "coveralls", "mtabacman" ], "repo": "ba-st/Willow-JQueryUI", "url": "https://github.com/ba-st/Willow-JQueryUI/pull/8", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
238928875
Simplify DialogOpener logic Coverage remained the same at 98.291% when pulling 15af8abcd1bb4f1c4f8237de048589734901c162 on dialog_opener into 3089fcaeb55be765f2b6f379d3be4a3aa603a386 on master. Fixes #6 Coverage increased (+0.5%) to 98.81% when pulling 5ef38f156a5045d2942b53f68af7400493e91976 on dialog_opener into 3089fcaeb55be765f2b6f379d3be4a3aa603a386 on master. Coverage increased (+0.5%) to 98.81% when pulling ebdc41dd71ae71570bb917ac73516ef68337e4b7 on dialog_opener into 3089fcaeb55be765f2b6f379d3be4a3aa603a386 on master.
gharchive/pull-request
2017-06-27T17:41:43
2025-04-01T06:46:32.366100
{ "authors": [ "coveralls", "gcotelli" ], "repo": "ba-st/Willow", "url": "https://github.com/ba-st/Willow/pull/53", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
804356391
[Search] Extend scheduling process to be configurable Thanks @OrkoHunter! I think we got to the amount of configuration we wanted (per-index), so maybe we can keep this closed. But I definitely anticipate others will have ideas/suggestions/improvements which can come in new issues.
gharchive/issue
2021-02-09T09:09:03
2025-04-01T06:46:32.367120
{ "authors": [ "emmaindal", "iamEAP" ], "repo": "backstage/backstage", "url": "https://github.com/backstage/backstage/issues/4448", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
127628958
2016-01-19-openface-0.2.0: typo Thanks! Very nice post!
gharchive/pull-request
2016-01-20T08:25:08
2025-04-01T06:46:32.372414
{ "authors": [ "bamos", "deltheil" ], "repo": "bamos/bamos.github.io", "url": "https://github.com/bamos/bamos.github.io/pull/5", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
345684444
Make cluster profile defaults configurable Cluster profiles has been removed.
gharchive/issue
2018-07-30T09:41:47
2025-04-01T06:46:32.373052
{ "authors": [ "colin014", "sagikazarmark" ], "repo": "banzaicloud/pipeline", "url": "https://github.com/banzaicloud/pipeline/issues/766", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
375058937
Blog post for Bazel 0.19.0. Any further comments?
gharchive/pull-request
2018-10-29T14:59:40
2025-04-01T06:46:32.379949
{ "authors": [ "katre" ], "repo": "bazelbuild/bazel-blog", "url": "https://github.com/bazelbuild/bazel-blog/pull/131", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
469562209
Better pipelines bors r+
gharchive/pull-request
2019-07-18T04:13:17
2025-04-01T06:46:32.381146
{ "authors": [ "DilumAluthge" ], "repo": "bcbi/PredictMD.jl", "url": "https://github.com/bcbi/PredictMD.jl/pull/448", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
934910082
Does not seem to work with local func invocations, does it? With sls invoke local -f func No. It is intended to be used with sls offline start, which has lifecycle events which are used to start and stop the MongoDB instance. @DavidBeale appreciate if you made it work with local invocations as well! Hi. If you update to v1.2.0 then you can use sls mongodb start on the command line. Looks like a solution! But the convenience env var is still not injected on local invocations No, it won't be. You need to run in the same process of that to work. i.e. using serverless-offline
gharchive/issue
2021-07-01T14:30:18
2025-04-01T06:46:32.386244
{ "authors": [ "DavidBeale", "vadymhimself" ], "repo": "bealearts/serverless-mongodb-local", "url": "https://github.com/bealearts/serverless-mongodb-local/issues/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
125661501
Update build to remove netflixoss and add smartthings publishing :+1:
gharchive/pull-request
2016-01-08T18:00:47
2025-04-01T06:46:32.386909
{ "authors": [ "beckje01", "charliek" ], "repo": "beckje01/astyanax", "url": "https://github.com/beckje01/astyanax/pull/1", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
161252333
create /api/event/{event_id}/collaborators Added
gharchive/issue
2016-06-20T17:40:41
2025-04-01T06:46:32.387791
{ "authors": [ "neosergio" ], "repo": "belatrix/BackendAllStars", "url": "https://github.com/belatrix/BackendAllStars/issues/144", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
105281726
Get the Heroku tests running on Travis Closing because we already have an open issue about integration tests.
gharchive/issue
2015-09-08T01:03:49
2025-04-01T06:46:32.389895
{ "authors": [ "suchow" ], "repo": "berkeley-cocosci/Wallace", "url": "https://github.com/berkeley-cocosci/Wallace/issues/219", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
189229729
Materialization Loading updates Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/mango-prb/306/ Test FAILed. Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/mango-prb/307/ Test PASSed. Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/mango-prb/308/ Test PASSed. Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/mango-prb/309/ Test PASSed. Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/mango-prb/312/ Test PASSed. Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/mango-prb/313/ Test PASSed. One commit fix, other than that looks good @Georgehe4 . Thanks! Moved to #254
gharchive/pull-request
2016-11-14T21:21:35
2025-04-01T06:46:32.402072
{ "authors": [ "AmplabJenkins", "Georgehe4", "akmorrow13" ], "repo": "bigdatagenomics/mango", "url": "https://github.com/bigdatagenomics/mango/pull/252", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
911754499
Fix indeterminate styling on c-table and added state checking for c-td-check Coverage increased (+0.03%) to 72.727% when pulling ac5527728a3012f70e05c35229cb9f8e6c86657a on c-td-check-disable into 05638a39917b5f0b303456eda37969efe97fac7d on master.
gharchive/pull-request
2021-06-04T18:46:40
2025-04-01T06:46:32.414901
{ "authors": [ "coveralls", "m0ngr31" ], "repo": "bindable-ui/bindable", "url": "https://github.com/bindable-ui/bindable/pull/104", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
92166148
Implement nonzero for Sequence Ready for merge when tests pass
gharchive/pull-request
2015-06-30T18:31:20
2025-04-01T06:46:32.427301
{ "authors": [ "anderspitman", "jairideout" ], "repo": "biocore/scikit-bio", "url": "https://github.com/biocore/scikit-bio/pull/975", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
210337447
Added Bulgarian translation Awesome! Thank you very much!!
gharchive/pull-request
2017-02-26T18:31:31
2025-04-01T06:46:32.432333
{ "authors": [ "bitbeans", "rddim" ], "repo": "bitbeans/SimpleDnsCrypt", "url": "https://github.com/bitbeans/SimpleDnsCrypt/pull/118", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
537998695
feature/c++2a time to rock using feature/c++2a
gharchive/pull-request
2019-12-15T03:55:02
2025-04-01T06:46:32.434423
{ "authors": [ "dendisuhubdy" ], "repo": "bitwyre/template-cpp", "url": "https://github.com/bitwyre/template-cpp/pull/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
178743806
switch to React Hot Loader Wontfixing this because it (and/or React Transform, which it is supposedly an improved version of) adds too much complexity and doesn't add very much value when you're already using Redux and Webpack HMR. See Dan Abramov's comments/PR here. Aaaand Dan just came out and said react-hot-loader is dead so I think this was a good call.
gharchive/issue
2016-09-22T23:09:47
2025-04-01T06:46:32.438330
{ "authors": [ "bjacobel" ], "repo": "bjacobel/react-redux-boilerplate", "url": "https://github.com/bjacobel/react-redux-boilerplate/issues/3", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
112732972
homework02 老师好,上次就被close过一次,修改了一下,不过这次还是没通过,求老师指教。:) 老师好,上次就被close过一次,修改了一下,不过这次还是没通过,求老师指教。:) 老师好,上次就被close过一次,修改了一下,不过这次还是没通过,求老师指教。:)
gharchive/pull-request
2015-10-22T05:16:56
2025-04-01T06:46:32.442884
{ "authors": [ "LaiYizhou" ], "repo": "blighli/iPhone2015", "url": "https://github.com/blighli/iPhone2015/pull/136", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
222438878
cmd/bosun: pass stderr on error to user for save command This takes care of the bug part of https://github.com/bosun-monitor/bosun/issues/2061
gharchive/pull-request
2017-04-18T14:38:39
2025-04-01T06:46:32.479669
{ "authors": [ "kylebrandt" ], "repo": "bosun-monitor/bosun", "url": "https://github.com/bosun-monitor/bosun/pull/2063", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
69223321
Updating to 2.7.1_387 @adamenger if you wouldn't mind updating the test I would be more than happy to merge this. Thanks! Updated merged on #32, and released as 1.5.0.
gharchive/pull-request
2015-04-17T21:44:07
2025-04-01T06:46:32.481638
{ "authors": [ "adamenger", "lucasmazza", "tarebyte" ], "repo": "boxen/puppet-alfred", "url": "https://github.com/boxen/puppet-alfred/pull/31", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
426833571
update life sciences, poster in pdf, and submit date in index.html masih ada yg perlu diperbaiki sih
gharchive/pull-request
2019-03-29T06:14:41
2025-04-01T06:46:32.489177
{ "authors": [ "davieiycode", "imalavins" ], "repo": "bppugm/icst-2019", "url": "https://github.com/bppugm/icst-2019/pull/25", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
408529178
Brevent Server quits after screen locked on Sony Xperia XZ1 Compact(Android 9) don't allow "access data" when plug usb. tap "deny" or Back.
gharchive/issue
2019-02-10T12:15:03
2025-04-01T06:46:32.501142
{ "authors": [ "liudongmiao", "nirvanan" ], "repo": "brevent/Brevent", "url": "https://github.com/brevent/Brevent/issues/502", "license": "WTFPL", "license_type": "permissive", "license_source": "github-api" }
439173150
Use same name (self) to optionally bind weak self Thanks a lot for contribution!
gharchive/pull-request
2019-05-01T13:57:22
2025-04-01T06:46:32.629686
{ "authors": [ "burczyk", "shubham01" ], "repo": "burczyk/XcodeSwiftSnippets", "url": "https://github.com/burczyk/XcodeSwiftSnippets/pull/32", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
475633455
Upgrade steemconnect.js to v3 and use login() method to support steemconnect chrome extension Any ETA for this one? Thank you.
gharchive/issue
2019-08-01T11:39:21
2025-04-01T06:46:32.630329
{ "authors": [ "bonustrack", "varioso" ], "repo": "busyorg/busy", "url": "https://github.com/busyorg/busy/issues/2224", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
177308649
Updated to Swift 3, Xcode 8 Thanks you so much for this PR. I've updated using the built in migrator in Xcode. It caught a couple more files things that this PR missed. Closing.
gharchive/pull-request
2016-09-15T22:46:38
2025-04-01T06:46:32.631007
{ "authors": [ "andreyrd", "bvogelzang" ], "repo": "bvogelzang/SevenSwitch", "url": "https://github.com/bvogelzang/SevenSwitch/pull/56", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
241872212
update updated repository to current
gharchive/pull-request
2017-07-10T22:35:33
2025-04-01T06:46:32.632588
{ "authors": [ "bwhitn" ], "repo": "bwhitn/CyberChef", "url": "https://github.com/bwhitn/CyberChef/pull/3", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
369595069
added format to output Codecov Report Merging #1 into master will not change coverage. The diff coverage is 0%. @@ Coverage Diff @@ ## master #1 +/- ## ======================================= Coverage 26.29% 26.29% ======================================= Files 1 1 Lines 251 251 ======================================= Hits 66 66 Misses 185 185 Impacted Files Coverage Δ main.go 26.29% <0%> (ø) :arrow_up: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 90fa099...c547bd0. Read the comment docs.
gharchive/pull-request
2018-10-12T15:14:18
2025-04-01T06:46:32.640886
{ "authors": [ "cemilcelik", "codecov-io" ], "repo": "c1982/bomberman", "url": "https://github.com/c1982/bomberman/pull/1", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
142086841
Adding documentation to ExpnCd.expn_code and DebtCd.expn_code fields Coverage remained the same at 94.202% when pulling 5cb712918914214f3a84a854116c4bafeaa90958 on stevenrich:patch-7 into b5f7ecf54cab5b647ed8c76ffdc173b39c339b91 on california-civic-data-coalition:master.
gharchive/pull-request
2016-03-19T17:59:08
2025-04-01T06:46:32.649065
{ "authors": [ "coveralls", "stevenrich" ], "repo": "california-civic-data-coalition/django-calaccess-raw-data", "url": "https://github.com/california-civic-data-coalition/django-calaccess-raw-data/pull/1316", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
347856752
Session Issue Completed J'aime !
gharchive/pull-request
2018-08-06T09:57:57
2025-04-01T06:46:32.653281
{ "authors": [ "cbouvat", "lejvincent" ], "repo": "campus-digital-valence/projet_de_revv", "url": "https://github.com/campus-digital-valence/projet_de_revv/pull/4", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
157497301
Upgrade electron to latest version Any reason we need this?
gharchive/issue
2016-05-30T12:53:17
2025-04-01T06:46:32.653845
{ "authors": [ "nikku", "ricardomatias" ], "repo": "camunda/camunda-modeler", "url": "https://github.com/camunda/camunda-modeler/issues/311", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
374213145
Create documentation It seems parts of the code was "generated"? How was it done? In case the upstream REST API changes, how would this package be updated?
gharchive/issue
2018-10-26T03:30:37
2025-04-01T06:46:32.658383
{ "authors": [ "hasufell" ], "repo": "capital-match/docusign-base", "url": "https://github.com/capital-match/docusign-base/issues/3", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
181233909
Version bump develop to 4.0.0-SNAPSHOT 👍 lgtm
gharchive/pull-request
2016-10-05T18:42:29
2025-04-01T06:46:32.666005
{ "authors": [ "dereklwood", "wolf31o2" ], "repo": "caskdata/cdap-ambari-service", "url": "https://github.com/caskdata/cdap-ambari-service/pull/133", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
258972423
Update Google cloud libraries versions. Codecov Report Merging #648 into master will increase coverage by 0.02%. The diff coverage is 0%. @@ Coverage Diff @@ ## master #648 +/- ## ============================================ + Coverage 76.06% 76.09% +0.02% Complexity 716 716 ============================================ Files 130 130 Lines 3439 3439 Branches 320 320 ============================================ + Hits 2616 2617 +1 Misses 759 759 + Partials 64 63 -1 Impacted Files Coverage Δ Complexity Δ ...race/stackdriver/StackdriverV1ExporterHandler.java 0% <0%> (ø) 0 <0> (ø) :arrow_down: ...census/implcore/trace/export/SpanExporterImpl.java 91.66% <0%> (+1.66%) 6% <0%> (ø) :arrow_down: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 3002fec...5b53fe8. Read the comment docs. Coverage remained the same at 77.93% when pulling 5b53fe884130980bd42c90eb0f5db6241c6cf8e0 on bogdandrutu:versionupdate into 3002fec5ccc251a9c50dfbfc1e195bd6d2380d15 on census-instrumentation:master.
gharchive/pull-request
2017-09-19T21:37:54
2025-04-01T06:46:32.682748
{ "authors": [ "bogdandrutu", "codecov-io", "coveralls" ], "repo": "census-instrumentation/opencensus-java", "url": "https://github.com/census-instrumentation/opencensus-java/pull/648", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
629817744
make configparser a runtime dependency this should address the failure like https://jenkins.ceph.com/job/ceph-deploy-pull-requests/666/console Missing comma @koenkooi thanks for pointing this out. should be fixed by #499
gharchive/pull-request
2020-06-03T08:53:45
2025-04-01T06:46:32.686878
{ "authors": [ "tchaikov" ], "repo": "ceph/ceph-deploy", "url": "https://github.com/ceph/ceph-deploy/pull/498", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
375781450
Adding online resources Thank you so much for approving and giving me the opportunity to contribute. :)
gharchive/pull-request
2018-10-31T03:18:19
2025-04-01T06:46:32.704295
{ "authors": [ "bpkaur" ], "repo": "charlottebrf/coder-newbie-advice", "url": "https://github.com/charlottebrf/coder-newbie-advice/pull/44", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
159505107
Updating omnibus dependencies to take advantage of new msys2 toolchain @ksubrama I removed the Berksfile.lock files I added, since we don't lock anything that isn't going through CI :+1: The travis failure is expected - it's warning us of a vulnerability in nokogiri... and we are working around that for now. 👍 but let's not let the nokogiri thing fester :+1: agreed @danielsdeleo I have a nokogiri branch in the wings but like the idea of getting things green before adding that in.
gharchive/pull-request
2016-06-09T20:51:44
2025-04-01T06:46:32.711325
{ "authors": [ "danielsdeleo", "ksubrama", "mwrock", "tyler-ball" ], "repo": "chef/chef", "url": "https://github.com/chef/chef/pull/5014", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
174491046
Added update_resource_count attribute in log resource @btm, currently if update_resource_count=false, this message is show on running the recipe that contains log resource: Chef Client finished, 0/1 resources updated in 28 seconds So even though log resource is not counted in the updated resources, it is counted in the total no. of resources. Is that ok? @NimishaS yes, I think that is fine. it is still a resource, and it's probably more trouble than not to make it not be part of the total resource count. I believe the goal for the user is to be able to run chef-client twice in a row and always see 0 resources changed on the second run because there was nothing to change. :+1: I wonder if this would be more useful as a configuration setting than a per-resource attribute? It seems like it's more of a policy decision than a cookbook authoring decision. I'm 👍 on the code as it stands though @thommay yeah, I could see that. If I wanted this behavior I probably would always want it. @NimishaS we should see if anyone else has an opinion, but I'm leaning toward we should make this a configuration setting rather than a resource attribute. @btm , please confirm the final approach that we should take. @NimishaS please write this to be a configuration option instead of a resource attribute. https://github.com/chef/chef-server git failures should be fixed upstream, you can rebase and push again and it should fix travis. *suppress this isn't a knife setting, so it shouldn't go in Chef::Config[:knife]. How about Chef::Config[:count_log_resource_updates] and default to true, as that is the current behavior? You'll want to make an entry in chef\lib\chef-config\config.rb for the setting. @NimishaS You still need: You'll want to make an entry in chef\lib\chef-config\config.rb for the setting. :+1: @thommay, rereview?
gharchive/pull-request
2016-09-01T10:37:54
2025-04-01T06:46:32.717382
{ "authors": [ "NimishaS", "btm", "thommay" ], "repo": "chef/chef", "url": "https://github.com/chef/chef/pull/5267", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
89349362
Add analytics raw subcommand I made the suggested changes. Thanks @metadave . This looks useful. What's that status of it?
gharchive/pull-request
2015-06-18T17:25:59
2025-04-01T06:46:32.718562
{ "authors": [ "jeremiahsnapp", "pburkholder" ], "repo": "chef/knife-analytics", "url": "https://github.com/chef/knife-analytics/pull/3", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
348411354
pull Sorry. This was a mistake
gharchive/pull-request
2018-08-07T17:12:34
2025-04-01T06:46:32.722634
{ "authors": [ "JTrotta" ], "repo": "chkr1011/MQTTnet", "url": "https://github.com/chkr1011/MQTTnet/pull/389", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
66515200
Add support for Django 1.7 @naegelyd Do you have an idea of what needs to change in order to support 1.7, 1.8, 1.9? Do you think it's minor configuration and structure tweaks, or more major work that has to be done to accomodate API changes and other things in Django? @sgithens Avocado had support Django 1.7 for a while now. https://github.com/chop-dbhi/serrano/pull/283 makes a couple very minor changes to add Django 1.7 support to Serrano. After https://github.com/chop-dbhi/serrano/pull/283, I believe Harvest could be considered to have Django 1.7 support. Django 1.8 will be a little trickier. I know some work will need to be done with migrations. Also, there are some deprecation warnings triggered on 1.7 that will need to be addressed as they are breaking changes in 1.8. I do not have a full list of things that would need to be addressed for Django 1.8 though the two items above are issues I know for sure will need to be handled. I would think that the work will be pretty minor but could involve updates to other libraries like we saw in the case of django-preserialize. @bruth If Django 1.8 support was added, do you think we could drop support for Django 1.6(and with it, South style migrations) as it went out of extended support in April 2015. That might be a good 3.0 release for Avocado and Serrano. Yes. I think it is time to transition to supporting the latest two versions only. If older versions manage to work then great, but they won't be supported otherwise.
gharchive/issue
2015-04-06T03:18:51
2025-04-01T06:46:32.726720
{ "authors": [ "bruth", "naegelyd", "sgithens" ], "repo": "chop-dbhi/serrano", "url": "https://github.com/chop-dbhi/serrano/issues/274", "license": "bsd-2-clause", "license_type": "permissive", "license_source": "bigquery" }
793910541
Testing Jenkins CI :tada: This PR is included in version 1.0.5 :tada: The release is available on npm package (@latest dist-tag) Your semantic-release bot :package::rocket: :tada: This PR is included in version 1.0.5 :tada: The release is available on npm package (@latest dist-tag) Your semantic-release bot :package::rocket:
gharchive/pull-request
2021-01-26T04:05:29
2025-04-01T06:46:32.734285
{ "authors": [ "christroutner" ], "repo": "christroutner/npm-lib-boilerplate", "url": "https://github.com/christroutner/npm-lib-boilerplate/pull/3", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
631462394
doc: add "observing flows with Hubble Relay" to troubleshooting section Please, note that release binaries of Hubble CLI are not yet available. Version 0.6.1 should be published later today and include binaries for Linux, MacOS and Windows. cc @michi-covalent Coverage increased (+0.02%) to 36.958% when pulling 625f65689e5deef240dc85af243c5c530f1e3b84 on pr/rolinh/doc-troubleshooting-with-hubble-relay into 805bbb946ca7b1f9adac47e06f6df214e74ce567 on master. Coverage increased (+0.02%) to 36.958% when pulling 625f65689e5deef240dc85af243c5c530f1e3b84 on pr/rolinh/doc-troubleshooting-with-hubble-relay into 805bbb946ca7b1f9adac47e06f6df214e74ce567 on master.
gharchive/pull-request
2020-06-05T09:48:27
2025-04-01T06:46:32.739979
{ "authors": [ "Rolinh", "coveralls" ], "repo": "cilium/cilium", "url": "https://github.com/cilium/cilium/pull/11919", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
676208770
doc: Rename BPF to eBPF Coverage increased (+0.03%) to 37.136% when pulling e5cbffe2cfafeccc00cc6ed753eebb183a474dd8 on pr/tgraf/rename-bpf into 6d7d6110b2fcde2d0ce05b79ecd18ba16beba0dc on master.
gharchive/pull-request
2020-08-10T15:08:02
2025-04-01T06:46:32.741800
{ "authors": [ "coveralls", "tgraf" ], "repo": "cilium/cilium", "url": "https://github.com/cilium/cilium/pull/12836", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
181801868
Adding packaging @tgraf Fixed your issues. I've continued working on this branch so that we can create a rpm and deb package. Some notes for discussion: The omission of the policy-watcher and socket-proxy in systemd. The hardcode of linux-image-4.8.1-040801-generic (and not linux-image (>=4.8) ) in deb @aanm Regarding omission of socket-proxy and policy-watcher. That's fine.
gharchive/pull-request
2016-10-08T03:36:41
2025-04-01T06:46:32.743705
{ "authors": [ "aanm", "tgraf" ], "repo": "cilium/cilium", "url": "https://github.com/cilium/cilium/pull/162", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
389828846
fix typo Codecov Report Merging #1030 into master will increase coverage by 0.12%. The diff coverage is n/a. @@ Coverage Diff @@ ## master #1030 +/- ## ========================================== + Coverage 85.24% 85.37% +0.12% ========================================== Files 75 75 Lines 2386 2386 Branches 173 174 +1 ========================================== + Hits 2034 2037 +3 + Misses 352 349 -3 Impacted Files Coverage Δ ...re/shared/src/main/scala/io/circe/JsonNumber.scala 91.13% <0%> (ø) :arrow_up: ...rc/main/scala/io/circe/numbers/BiggerDecimal.scala 90.36% <0%> (+0.6%) :arrow_up: ...rc/main/scala/io/circe/shapes/SizedInstances.scala 92.85% <0%> (+14.28%) :arrow_up: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 7ec2f90...3762bb9. Read the comment docs. Thanks @mberndt123!
gharchive/pull-request
2018-12-11T15:50:27
2025-04-01T06:46:32.755449
{ "authors": [ "codecov-io", "mberndt123", "travisbrown" ], "repo": "circe/circe", "url": "https://github.com/circe/circe/pull/1030", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
300005998
Implement references in Model. All 69 fields in Reference now implemented! :tada:
gharchive/issue
2018-02-25T07:40:08
2025-04-01T06:46:32.759011
{ "authors": [ "hainesr" ], "repo": "citation-file-format/ruby-cff", "url": "https://github.com/citation-file-format/ruby-cff/issues/16", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
584957122
Add Fedora installation instructions Thanks! Will these instructions change once https://github.com/rust-psutil/rust-psutil/issues/75 is fixed? I plan on releasing a new version soon, I'm just currently away from the computer. Also can you explain what copr is and why that package would be more up to date? I'm not too familiar with fedora packaging... Also can you explain what copr Copr is part of official Fedora infrastructure. Since Rust stack packaged in ugliest and awkwardest way ever in Fedora, Copr is the only sane solution. Thanks! Will these instructions change once rust-psutil/rust-psutil#75 is fixed? Yes, but in very ugly way. And they are not relevant for Copr. For example ytop is still packaged only for Rawhide. Copr version available for all Fedora's 30+ and even CentOS 7 already. Can confirm that the installation instructions work. So I actually just updated the readme and I'm now using repology to show the available packages, which makes things easier, so I'm not sure if we need to add this to the readme. Except do you think we should add copr instruction since I don't think repology includes it? Repology will shows versions of current ytop releases for all Fedora branches where package available and as for today it still only available for Rawhide branch (0.5.1 version) Packaging and mainlining Rust software in Fedora is not only very time consuming due to lack of infrastructure and automation for Rust stack and because of some politics but sometimes not possible for non-Rawhide releases. Until all this will been fixed the COPR is life saver. So yes, definitely mention COPR link in README would be useful. It's also packaged for CentOS 7 now. That makes sense, if you want to update this pull request to mention the copr stuff then I would be happy to add that. Thanks!
gharchive/pull-request
2020-03-20T09:56:18
2025-04-01T06:46:32.772253
{ "authors": [ "cjbassi", "tijptjik", "tim77" ], "repo": "cjbassi/ytop", "url": "https://github.com/cjbassi/ytop/pull/50", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
125346960
Need flag to add US->UK or UK->US corrections UK->US conversion is more-or-less done. US->UK help wanted. I could reverse UK-US but I'm sure it will be missing items. US->UK: cheque->check would be incorrect. I haven't inspected the whole file, just spotted this at a glance. US->UK false positives... 2016/06/13 16:55:32 line 927: Found "Anglicize" in "Anglicize" ("Anglicise") 2016/06/13 16:55:33 line 1785: Found "Balk" in "Balkan" ("Baulk") 2016/06/13 16:55:33 line 1786: Found "Balk" in "Balkan's" ("Baulk") 2016/06/13 16:55:33 line 1787: Found "Balk" in "Balkans" ("Baulk") 2016/06/13 16:55:33 line 1788: Found "Balk" in "Balkans's" ("Baulk") 2016/06/13 16:55:33 line 1789: Found "Balk" in "Balkhash" ("Baulk") 2016/06/13 16:55:33 line 1790: Found "Balk" in "Balkhash's" ("Baulk") 2016/06/13 16:55:33 line 2829: Found "Breathalyze" in "Breathalyzer" ("Breathalyse") 2016/06/13 16:55:33 line 2829: Found "Breathalyzer" in "Breathalyzer" ("Breathalyser") 2016/06/13 16:55:33 line 3536: Found "arbor" in "Carborundum" ("arbour") 2016/06/13 16:55:33 line 3537: Found "arbor" in "Carborundum's" ("arbour") 2016/06/13 16:55:33 line 3610: Found "Caroling" in "Carolingian" ("Carolling") 2016/06/13 16:55:33 line 3611: Found "Caroling" in "Carolingian's" ("Carolling") 2016/06/13 16:55:33 line 4867: Found "siphon" in "Ctesiphon" ("syphon") 2016/06/13 16:55:33 line 4868: Found "siphon" in "Ctesiphon's" ("syphon") 2016/06/13 16:55:34 line 6793: Found "Fiber" in "Fiberglas" ("Fibre") 2016/06/13 16:55:34 line 6794: Found "Fiber" in "Fiberglas's" ("Fibre") 2016/06/13 16:55:34 line 7953: Found "Griffin" in "Griffin" ("Gryphon") 2016/06/13 16:55:34 line 7954: Found "Griffin" in "Griffin's" ("Gryphon") 2016/06/13 16:55:34 line 8107: Found "Gypsies" in "Gypsies" ("Gipsies") 2016/06/13 16:55:36 line 13354: Found "Mold" in "Moldavia" ("Mould") 2016/06/13 16:55:36 line 13355: Found "Mold" in "Moldavia's" ("Mould") 2016/06/13 16:55:36 line 13356: Found "Mold" in "Moldavian" ("Mould") 2016/06/13 16:55:36 line 13357: Found "Mold" in "Moldova" ("Mould") 2016/06/13 16:55:36 line 13358: Found "Mold" in "Moldova's" ("Mould") 2016/06/13 16:55:36 line 13359: Found "Mold" in "Moldovan" ("Mould") 2016/06/13 16:55:36 line 14967: Found "Paleolithic" in "Paleolithic's" ("Palaeolithic") 2016/06/13 16:55:37 line 17327: Found "Savior" in "Savior" ("Saviour") 2016/06/13 16:55:37 line 17328: Found "Savior" in "Savior's" ("Saviour") 2016/06/13 16:55:37 line 17358: Found "arbor" in "Scarborough" ("arbour") 2016/06/13 16:55:37 line 17359: Found "arbor" in "Scarborough's" ("arbour") 2016/06/13 16:55:37 line 18998: Found "Technicolor" in "Technicolor" ("Technicolour") 2016/06/13 16:55:37 line 18999: Found "Technicolor" in "Technicolor's" ("Technicolour") 2016/06/13 16:55:38 line 22763: Found "etiology" in "aetiology" ("aetiology") 2016/06/13 16:55:38 line 22764: Found "etiology" in "aetiology's" ("aetiology") 2016/06/13 16:55:38 line 23508: Found "liter" in "alliterate" ("litre") 2016/06/13 16:55:38 line 23509: Found "liter" in "alliterated" ("litre") 2016/06/13 16:55:38 line 23510: Found "liter" in "alliterates" ("litre") 2016/06/13 16:55:38 line 23511: Found "liter" in "alliterating" ("litre") 2016/06/13 16:55:38 line 23512: Found "liter" in "alliteration" ("litre") 2016/06/13 16:55:38 line 23513: Found "liter" in "alliteration's" ("litre") 2016/06/13 16:55:38 line 23514: Found "liter" in "alliterations" ("litre") 2016/06/13 16:55:38 line 23515: Found "liter" in "alliterative" ("litre") 2016/06/13 16:55:38 line 23516: Found "liter" in "alliteratively" ("litre") 2016/06/13 16:55:38 line 23577: Found "almanac" in "almanac" ("almanack") 2016/06/13 16:55:38 line 23578: Found "almanac" in "almanac's" ("almanack") 2016/06/13 16:55:38 line 23579: Found "almanac" in "almanack" ("almanack") 2016/06/13 16:55:38 line 23580: Found "almanac" in "almanacks" ("almanack") 2016/06/13 16:55:38 line 23581: Found "almanac" in "almanacs" ("almanack") 2016/06/13 16:55:38 line 23581: Found "almanacs" in "almanacs" ("almanacks") 2016/06/13 16:55:38 line 24106: Found "analog" in "analog" ("analogue") 2016/06/13 16:55:38 line 24107: Found "analog" in "analog's" ("analogue") 2016/06/13 16:55:38 line 24108: Found "analog" in "analogical" ("analogue") 2016/06/13 16:55:38 line 24109: Found "analog" in "analogically" ("analogue") 2016/06/13 16:55:38 line 24110: Found "analog" in "analogies" ("analogue") 2016/06/13 16:55:38 line 24111: Found "analog" in "analogise" ("analogue") 2016/06/13 16:55:38 line 24112: Found "analog" in "analogised" ("analogue") 2016/06/13 16:55:38 line 24113: Found "analog" in "analogises" ("analogue") 2016/06/13 16:55:38 line 24114: Found "analog" in "analogising" ("analogue") 2016/06/13 16:55:38 line 24115: Found "analog" in "analogous" ("analogue") 2016/06/13 16:55:38 line 24116: Found "analog" in "analogously" ("analogue") 2016/06/13 16:55:38 line 24117: Found "analog" in "analogousness" ("analogue") 2016/06/13 16:55:38 line 24118: Found "analog" in "analogousness's" ("analogue") 2016/06/13 16:55:38 line 24119: Found "analog" in "analogs" ("analogue") 2016/06/13 16:55:38 line 24119: Found "analogs" in "analogs" ("analogues") 2016/06/13 16:55:38 line 24120: Found "analog" in "analogue" ("analogue") 2016/06/13 16:55:38 line 24121: Found "analog" in "analogue's" ("analogue") 2016/06/13 16:55:38 line 24122: Found "analog" in "analogues" ("analogue") 2016/06/13 16:55:38 line 24123: Found "analog" in "analogy" ("analogue") 2016/06/13 16:55:38 line 24124: Found "analog" in "analogy's" ("analogue") 2016/06/13 16:55:39 line 24997: Found "appall" in "appalled" ("appal") 2016/06/13 16:55:39 line 24998: Found "appall" in "appalling" ("appal") 2016/06/13 16:55:39 line 24999: Found "appall" in "appallingly" ("appal") 2016/06/13 16:55:39 line 25357: Found "arbor" in "arboreal" ("arbour") 2016/06/13 16:55:39 line 25358: Found "arbor" in "arboreta" ("arbour") 2016/06/13 16:55:39 line 25359: Found "arbor" in "arboretum" ("arbour") 2016/06/13 16:55:39 line 25360: Found "arbor" in "arboretum's" ("arbour") 2016/06/13 16:55:39 line 25361: Found "arbor" in "arboretums" ("arbour") 2016/06/13 16:55:39 line 25362: Found "arbor" in "arborvitae" ("arbour") 2016/06/13 16:55:39 line 25363: Found "arbor" in "arborvitae's" ("arbour") 2016/06/13 16:55:39 line 25364: Found "arbor" in "arborvitaes" ("arbour") 2016/06/13 16:55:39 line 25421: Found "archeological" in "archeologically" ("archaeological") 2016/06/13 16:55:39 line 25421: Found "archeologically" in "archeologically" ("archaeologically") 2016/06/13 16:55:39 line 25597: Found "armor" in "armorial" ("armour") 2016/06/13 16:55:39 line 27218: Found "stories" in "backstories" ("storeys") 2016/06/13 16:55:39 line 27453: Found "balk" in "balk" ("baulk") 2016/06/13 16:55:39 line 27454: Found "balk" in "balk's" ("baulk") 2016/06/13 16:55:39 line 27455: Found "balk" in "balked" ("baulk") 2016/06/13 16:55:39 line 27455: Found "balked" in "balked" ("baulked") 2016/06/13 16:55:39 line 27456: Found "balk" in "balkier" ("baulk") 2016/06/13 16:55:39 line 27457: Found "balk" in "balkiest" ("baulk") 2016/06/13 16:55:39 line 27458: Found "balk" in "balking" ("baulk") 2016/06/13 16:55:39 line 27458: Found "balking" in "balking" ("baulking") 2016/06/13 16:55:39 line 27459: Found "balk" in "balks" ("baulk") 2016/06/13 16:55:39 line 27459: Found "balks" in "balks" ("baulks") 2016/06/13 16:55:39 line 27460: Found "balk" in "balky" ("baulk") 2016/06/13 16:55:39 line 27553: Found "luster" in "baluster" ("lustre") 2016/06/13 16:55:39 line 27554: Found "luster" in "baluster's" ("lustre") 2016/06/13 16:55:39 line 27555: Found "luster" in "balusters" ("lustre") 2016/06/13 16:55:39 line 27625: Found "wagon" in "bandwagon" ("waggon") 2016/06/13 16:55:39 line 27626: Found "wagon" in "bandwagon's" ("waggon") 2016/06/13 16:55:39 line 27627: Found "wagon" in "bandwagons" ("waggon") 2016/06/13 16:55:39 line 27627: Found "wagons" in "bandwagons" ("waggons") 2016/06/13 16:55:39 line 27651: Found "banister" in "banister" ("bannister") 2016/06/13 16:55:39 line 27652: Found "banister" in "banister's" ("bannister") 2016/06/13 16:55:39 line 27653: Found "banister" in "banisters" ("bannister") 2016/06/13 16:55:39 line 27653: Found "banisters" in "banisters" ("bannisters") 2016/06/13 16:55:40 line 30572: Found "luster" in "bluster" ("lustre") 2016/06/13 16:55:40 line 30573: Found "luster" in "bluster's" ("lustre") 2016/06/13 16:55:40 line 30574: Found "luster" in "blustered" ("lustre") 2016/06/13 16:55:40 line 30575: Found "luster" in "blusterer" ("lustre") 2016/06/13 16:55:40 line 30576: Found "luster" in "blusterer's" ("lustre") 2016/06/13 16:55:40 line 30577: Found "luster" in "blusterers" ("lustre") 2016/06/13 16:55:40 line 30578: Found "luster" in "blustering" ("lustre") 2016/06/13 16:55:40 line 30579: Found "luster" in "blusterous" ("lustre") 2016/06/13 16:55:40 line 30580: Found "luster" in "blusters" ("lustre") 2016/06/13 16:55:40 line 30581: Found "luster" in "blustery" ("lustre") 2016/06/13 16:55:40 line 31312: Found "bougainvillea" in "bougainvillea" ("bougainvillaea") 2016/06/13 16:55:40 line 31313: Found "bougainvillea" in "bougainvillea's" ("bougainvillaea") 2016/06/13 16:55:40 line 31314: Found "bougainvillea" in "bougainvilleas" ("bougainvillaea") 2016/06/13 16:55:40 line 31314: Found "bougainvilleas" in "bougainvilleas" ("bougainvillaeas") 2016/06/13 16:55:41 line 33584: Found "caliper" in "caliper" ("calliper") 2016/06/13 16:55:41 line 33585: Found "caliper" in "caliper's" ("calliper") 2016/06/13 16:55:41 line 33586: Found "caliper" in "calipered" ("calliper") 2016/06/13 16:55:41 line 33587: Found "caliper" in "calipering" ("calliper") 2016/06/13 16:55:41 line 33588: Found "caliper" in "calipers" ("calliper") 2016/06/13 16:55:41 line 33588: Found "calipers" in "calipers" ("callipers") 2016/06/13 16:55:41 line 33596: Found "calisthenics" in "calisthenics's" ("callisthenics") 2016/06/13 16:55:41 line 34270: Found "arbor" in "carborundum" ("arbour") 2016/06/13 16:55:41 line 34271: Found "arbor" in "carborundum's" ("arbour") 2016/06/13 16:55:41 line 34820: Found "catalog" in "catalogue" ("catalogue") 2016/06/13 16:55:41 line 34821: Found "catalog" in "catalogue's" ("catalogue") 2016/06/13 16:55:41 line 34822: Found "catalog" in "catalogued" ("catalogue") 2016/06/13 16:55:41 line 34823: Found "catalog" in "cataloguer" ("catalogue") 2016/06/13 16:55:41 line 34824: Found "catalog" in "cataloguer's" ("catalogue") 2016/06/13 16:55:41 line 34825: Found "catalog" in "cataloguers" ("catalogue") 2016/06/13 16:55:41 line 34826: Found "catalog" in "catalogues" ("catalogue") 2016/06/13 16:55:41 line 34827: Found "catalog" in "cataloguing" ("catalogue") 2016/06/13 16:55:42 line 36005: Found "checks" in "checks" ("cheques") 2016/06/13 16:55:42 line 36006: Found "checks" in "checksum" ("cheques") 2016/06/13 16:55:42 line 37126: Found "clamor" in "clamorous" ("clamour") 2016/06/13 16:55:42 line 37151: Found "clangor" in "clangorous" ("clangour") 2016/06/13 16:55:42 line 37152: Found "clangor" in "clangorously" ("clangour") 2016/06/13 16:55:42 line 37381: Found "stories" in "clerestories" ("storeys") 2016/06/13 16:55:42 line 37783: Found "luster" in "cluster" ("lustre") 2016/06/13 16:55:42 line 37784: Found "luster" in "cluster's" ("lustre") 2016/06/13 16:55:42 line 37785: Found "luster" in "clustered" ("lustre") 2016/06/13 16:55:42 line 37786: Found "luster" in "clustering" ("lustre") 2016/06/13 16:55:42 line 37787: Found "luster" in "clusters" ("lustre") 2016/06/13 16:55:43 line 38311: Found "labor" in "collaborate" ("labour") 2016/06/13 16:55:43 line 38312: Found "labor" in "collaborated" ("labour") 2016/06/13 16:55:43 line 38313: Found "labor" in "collaborates" ("labour") 2016/06/13 16:55:43 line 38314: Found "labor" in "collaborating" ("labour") 2016/06/13 16:55:43 line 38315: Found "labor" in "collaboration" ("labour") 2016/06/13 16:55:43 line 38316: Found "labor" in "collaboration's" ("labour") 2016/06/13 16:55:43 line 38317: Found "labor" in "collaborationist" ("labour") 2016/06/13 16:55:43 line 38318: Found "labor" in "collaborations" ("labour") 2016/06/13 16:55:43 line 38319: Found "labor" in "collaborative" ("labour") 2016/06/13 16:55:43 line 38320: Found "labor" in "collaboratively" ("labour") 2016/06/13 16:55:43 line 38321: Found "labor" in "collaborator" ("labour") 2016/06/13 16:55:43 line 38322: Found "labor" in "collaborator's" ("labour") 2016/06/13 16:55:43 line 38323: Found "labor" in "collaborators" ("labour") 2016/06/13 16:55:43 line 39950: Found "connection" in "connection" ("connexion") 2016/06/13 16:55:43 line 39951: Found "connection" in "connection's" ("connexion") 2016/06/13 16:55:43 line 39952: Found "connection" in "connections" ("connexion") 2016/06/13 16:55:43 line 39952: Found "connections" in "connections" ("connexions") 2016/06/13 16:55:43 line 40121: Found "stories" in "consistories" ("storeys") 2016/06/13 16:55:44 line 41523: Found "counseling" in "counselings" ("counselling") 2016/06/13 16:55:44 line 42618: Found "checks" in "crosschecks" ("cheques") 2016/06/13 16:55:45 line 45023: Found "miters" in "delimiters" ("mitres") 2016/06/13 16:55:45 line 45631: Found "program" in "deprogram" ("programme") 2016/06/13 16:55:45 line 45632: Found "program" in "deprogramed" ("programme") 2016/06/13 16:55:45 line 45633: Found "program" in "deprograming" ("programme") 2016/06/13 16:55:45 line 45634: Found "program" in "deprogrammed" ("programme") 2016/06/13 16:55:45 line 45635: Found "program" in "deprogramming" ("programme") 2016/06/13 16:55:45 line 45636: Found "program" in "deprograms" ("programme") 2016/06/13 16:55:45 line 45636: Found "programs" in "deprograms" ("programmes") 2016/06/13 16:55:45 line 45973: Found "destabilization" in "destabilization's" ("destabilisation") 2016/06/13 16:55:45 line 45973: Found "stabilization" in "destabilization's" ("stabilisation") 2016/06/13 16:55:45 line 46357: Found "dialog" in "dialog" ("dialogue") 2016/06/13 16:55:45 line 46358: Found "dialog" in "dialogue" ("dialogue") 2016/06/13 16:55:45 line 46359: Found "dialog" in "dialogue's" ("dialogue") 2016/06/13 16:55:45 line 46360: Found "dialog" in "dialogues" ("dialogue") 2016/06/13 16:55:45 line 47151: Found "discolor" in "discoloration" ("discolour") 2016/06/13 16:55:45 line 47152: Found "discolor" in "discoloration's" ("discolour") 2016/06/13 16:55:45 line 47153: Found "discolor" in "discolorations" ("discolour") 2016/06/13 16:55:45 line 47199: Found "connection" in "disconnection" ("connexion") 2016/06/13 16:55:45 line 47200: Found "connection" in "disconnection's" ("connexion") 2016/06/13 16:55:45 line 47201: Found "connection" in "disconnections" ("connexion") 2016/06/13 16:55:45 line 47201: Found "connections" in "disconnections" ("connexions") 2016/06/13 16:55:46 line 49897: Found "miters" in "dynamiters" ("mitres") 2016/06/13 16:55:46 line 50255: Found "edema" in "edemata" ("edoema") 2016/06/13 16:55:46 line 50574: Found "labor" in "elaborate" ("labour") 2016/06/13 16:55:46 line 50575: Found "labor" in "elaborated" ("labour") 2016/06/13 16:55:46 line 50576: Found "labor" in "elaborately" ("labour") 2016/06/13 16:55:46 line 50577: Found "labor" in "elaborateness" ("labour") 2016/06/13 16:55:46 line 50578: Found "labor" in "elaborateness's" ("labour") 2016/06/13 16:55:46 line 50579: Found "labor" in "elaborates" ("labour") 2016/06/13 16:55:46 line 50580: Found "labor" in "elaborating" ("labour") 2016/06/13 16:55:46 line 50581: Found "labor" in "elaboration" ("labour") 2016/06/13 16:55:46 line 50582: Found "labor" in "elaboration's" ("labour") 2016/06/13 16:55:46 line 50583: Found "labor" in "elaborations" ("labour") 2016/06/13 16:55:47 line 51444: Found "encyclopedia" in "encyclopedia" ("encyclopaedia") 2016/06/13 16:55:47 line 51445: Found "encyclopedia" in "encyclopedia's" ("encyclopaedia") 2016/06/13 16:55:47 line 51446: Found "encyclopedia" in "encyclopedias" ("encyclopaedia") 2016/06/13 16:55:47 line 51446: Found "encyclopedias" in "encyclopedias" ("encyclopaedias") 2016/06/13 16:55:47 line 51447: Found "encyclopedic" in "encyclopedic" ("encyclopaedic") 2016/06/13 16:55:47 line 51780: Found "enroll" in "enrolled" ("enrol") 2016/06/13 16:55:47 line 51781: Found "enroll" in "enrolling" ("enrol") 2016/06/13 16:55:47 line 51873: Found "enthrall" in "enthralled" ("enthral") 2016/06/13 16:55:47 line 51874: Found "enthrall" in "enthralling" ("enthral") 2016/06/13 16:55:47 line 52083: Found "epaulet" in "epaulette" ("epaulette") 2016/06/13 16:55:47 line 52084: Found "epaulet" in "epaulette's" ("epaulette") 2016/06/13 16:55:47 line 52085: Found "epaulet" in "epaulettes" ("epaulette") 2016/06/13 16:55:47 line 52508: Found "esophagus" in "esophagus" ("oesophagus") 2016/06/13 16:55:47 line 52509: Found "esophagus" in "esophagus's" ("oesophagus") ^C2016/06/13 16:55:47 line 52797: Found "vapor" in "evaporate" ("vapour") 2016/06/13 16:55:47 line 52798: Found "vapor" in "evaporated" ("vapour") 2016/06/13 16:55:47 line 52799: Found "vapor" in "evaporates" ("vapour") 2016/06/13 16:55:47 line 52800: Found "vapor" in "evaporating" ("vapour") 2016/06/13 16:55:47 line 52801: Found "vapor" in "evaporation" ("vapour") 2016/06/13 16:55:47 line 52802: Found "vapor" in "evaporation's" ("vapour") 2016/06/13 16:55:47 line 52803: Found "vapor" in "evaporator" ("vapour") 2016/06/13 16:55:47 line 52804: Found "vapor" in "evaporator's" ("vapour") 2016/06/13 16:55:47 line 52805: Found "vapor" in "evaporators" ("vapour") 2016/06/13 16:55:48 line 55025: Found "fetid" in "fetid" ("foetid") 2016/06/13 16:55:48 line 55026: Found "fetid" in "fetidness" ("foetid") 2016/06/13 16:55:48 line 55027: Found "fetid" in "fetidness's" ("foetid") 2016/06/13 16:55:48 line 55050: Found "fetus" in "fetus" ("foetus") 2016/06/13 16:55:48 line 55051: Found "fetus" in "fetus's" ("foetus") 2016/06/13 16:55:48 line 55052: Found "fetus" in "fetuses" ("foetus") 2016/06/13 16:55:48 line 55052: Found "fetuses" in "fetuses" ("foetuses") 2016/06/13 16:55:48 line 55363: Found "filter" in "filter" ("philtre") 2016/06/13 16:55:48 line 55364: Found "filter" in "filter's" ("philtre") 2016/06/13 16:55:48 line 55365: Found "filter" in "filterable" ("philtre") 2016/06/13 16:55:48 line 55366: Found "filter" in "filtered" ("philtre") 2016/06/13 16:55:48 line 55367: Found "filter" in "filterer" ("philtre") 2016/06/13 16:55:48 line 55368: Found "filter" in "filterer's" ("philtre") 2016/06/13 16:55:48 line 55369: Found "filter" in "filterers" ("philtre") 2016/06/13 16:55:48 line 55370: Found "filter" in "filtering" ("philtre") 2016/06/13 16:55:48 line 55371: Found "filter" in "filters" ("philtre") 2016/06/13 16:55:48 line 55371: Found "filters" in "filters" ("philtres") 2016/06/13 16:55:48 line 56543: Found "luster" in "fluster" ("lustre") 2016/06/13 16:55:48 line 56544: Found "luster" in "fluster's" ("lustre") 2016/06/13 16:55:48 line 56545: Found "luster" in "flustered" ("lustre") 2016/06/13 16:55:48 line 56546: Found "luster" in "flustering" ("lustre") 2016/06/13 16:55:48 line 56547: Found "luster" in "flusters" ("lustre") 2016/06/13 16:55:49 line 60119: Found "gluing" in "gluing" ("glueing") 2016/06/13 16:55:50 line 61128: Found "griffin" in "griffin" ("gryphon") 2016/06/13 16:55:50 line 61129: Found "griffin" in "griffin's" ("gryphon") 2016/06/13 16:55:50 line 61130: Found "griffin" in "griffins" ("gryphon") 2016/06/13 16:55:50 line 61130: Found "griffins" in "griffins" ("gryphons") 2016/06/13 16:55:50 line 61259: Found "groin" in "groin" ("groyne") 2016/06/13 16:55:50 line 61260: Found "groin" in "groin's" ("groyne") 2016/06/13 16:55:50 line 61261: Found "groin" in "groins" ("groyne") 2016/06/13 16:55:50 line 61261: Found "groins" in "groins" ("groynes") 2016/06/13 16:55:50 line 61917: Found "gypsies" in "gypsies" ("gipsies") 2016/06/13 16:55:50 line 62584: Found "arbor" in "harbormaster" ("arbour") 2016/06/13 16:55:50 line 62584: Found "harbor" in "harbormaster" ("harbour") 2016/06/13 16:55:50 line 62585: Found "arbor" in "harbormasters" ("arbour") 2016/06/13 16:55:50 line 62585: Found "harbor" in "harbormasters" ("harbour") 2016/06/13 16:55:51 line 62851: Found "checks" in "hatchecks" ("cheques") 2016/06/13 16:55:51 line 64102: Found "stories" in "histories" ("storeys") 2016/06/13 16:55:51 line 64420: Found "homeopath" in "homeopath" ("homoeopath") 2016/06/13 16:55:51 line 64421: Found "homeopath" in "homeopath's" ("homoeopath") 2016/06/13 16:55:51 line 64422: Found "homeopath" in "homeopathic" ("homoeopath") 2016/06/13 16:55:51 line 64422: Found "homeopathic" in "homeopathic" ("homoeopathic") 2016/06/13 16:55:51 line 64423: Found "homeopath" in "homeopaths" ("homoeopath") 2016/06/13 16:55:51 line 64423: Found "homeopaths" in "homeopaths" ("homoeopaths") 2016/06/13 16:55:51 line 64424: Found "homeopath" in "homeopathy" ("homoeopath") 2016/06/13 16:55:51 line 64424: Found "homeopathy" in "homeopathy" ("homoeopathy") 2016/06/13 16:55:51 line 64425: Found "homeopath" in "homeopathy's" ("homoeopath") 2016/06/13 16:55:51 line 64425: Found "homeopathy" in "homeopathy's" ("homoeopathy") 2016/06/13 16:55:51 line 64611: Found "honor" in "honoraria" ("honour") 2016/06/13 16:55:51 line 64612: Found "honor" in "honorarily" ("honour") 2016/06/13 16:55:51 line 64613: Found "honor" in "honorarium" ("honour") 2016/06/13 16:55:51 line 64614: Found "honor" in "honorarium's" ("honour") 2016/06/13 16:55:51 line 64615: Found "honor" in "honorariums" ("honour") 2016/06/13 16:55:51 line 64616: Found "honor" in "honorary" ("honour") 2016/06/13 16:55:51 line 64617: Found "honor" in "honorific" ("honour") 2016/06/13 16:55:51 line 64618: Found "honor" in "honorific's" ("honour") 2016/06/13 16:55:51 line 64619: Found "honor" in "honorifics" ("honour") 2016/06/13 16:55:51 line 65361: Found "humor" in "humoresque" ("humour") 2016/06/13 16:55:51 line 65362: Found "humor" in "humorist" ("humour") 2016/06/13 16:55:51 line 65363: Found "humor" in "humorist's" ("humour") 2016/06/13 16:55:51 line 65364: Found "humor" in "humorists" ("humour") 2016/06/13 16:55:51 line 65365: Found "humor" in "humorlessly" ("humour") 2016/06/13 16:55:51 line 65365: Found "humorless" in "humorlessly" ("humourless") 2016/06/13 16:55:51 line 65366: Found "humor" in "humorous" ("humour") 2016/06/13 16:55:51 line 65367: Found "humor" in "humorously" ("humour") 2016/06/13 16:55:51 line 65368: Found "humor" in "humorousness" ("humour") 2016/06/13 16:55:51 line 65369: Found "humor" in "humorousness's" ("humour") 2016/06/13 16:55:52 line 66144: Found "liter" in "illiteracy" ("litre") 2016/06/13 16:55:52 line 66145: Found "liter" in "illiteracy's" ("litre") 2016/06/13 16:55:52 line 66146: Found "liter" in "illiterate" ("litre") 2016/06/13 16:55:52 line 66147: Found "liter" in "illiterate's" ("litre") 2016/06/13 16:55:52 line 66148: Found "liter" in "illiterately" ("litre") 2016/06/13 16:55:52 line 66149: Found "liter" in "illiterates" ("litre") 2016/06/13 16:55:52 line 67943: Found "inflection" in "inflection" ("inflexion") 2016/06/13 16:55:52 line 67944: Found "inflection" in "inflection's" ("inflexion") 2016/06/13 16:55:52 line 67945: Found "inflection" in "inflectional" ("inflexion") 2016/06/13 16:55:52 line 67946: Found "inflection" in "inflections" ("inflexion") 2016/06/13 16:55:52 line 67946: Found "inflections" in "inflections" ("inflexions") 2016/06/13 16:55:53 line 68603: Found "installs" in "installs" ("instals") 2016/06/13 16:55:53 line 68643: Found "instill" in "instill" ("instil") 2016/06/13 16:55:53 line 68644: Found "instill" in "instillation" ("instil") 2016/06/13 16:55:53 line 68645: Found "instill" in "instillation's" ("instil") 2016/06/13 16:55:53 line 68646: Found "instill" in "instilled" ("instil") 2016/06/13 16:55:53 line 68647: Found "instill" in "instilling" ("instil") 2016/06/13 16:55:53 line 68648: Found "instill" in "instills" ("instil") 2016/06/13 16:55:53 line 68648: Found "instills" in "instills" ("instils") 2016/06/13 16:55:53 line 68933: Found "connection" in "interconnection" ("connexion") 2016/06/13 16:55:53 line 68934: Found "connection" in "interconnection's" ("connexion") 2016/06/13 16:55:53 line 68935: Found "connection" in "interconnections" ("connexion") 2016/06/13 16:55:53 line 68935: Found "connections" in "interconnections" ("connexions") 2016/06/13 16:55:53 line 69565: Found "vigor" in "invigorate" ("vigour") 2016/06/13 16:55:53 line 69566: Found "vigor" in "invigorated" ("vigour") 2016/06/13 16:55:53 line 69567: Found "vigor" in "invigorates" ("vigour") 2016/06/13 16:55:53 line 69568: Found "vigor" in "invigorating" ("vigour") 2016/06/13 16:55:53 line 69569: Found "vigor" in "invigoratingly" ("vigour") 2016/06/13 16:55:53 line 69570: Found "vigor" in "invigoration" ("vigour") 2016/06/13 16:55:53 line 69571: Found "vigor" in "invigoration's" ("vigour") 2016/06/13 16:55:53 line 69653: Found "ionize" in "ionizer" ("ionise") 2016/06/13 16:55:53 line 69653: Found "ionizer" in "ionizer" ("ioniser") 2016/06/13 16:55:53 line 69654: Found "ionize" in "ionizer's" ("ionise") 2016/06/13 16:55:53 line 69654: Found "ionizer" in "ionizer's" ("ioniser") 2016/06/13 16:55:53 line 69655: Found "ionize" in "ionizers" ("ionise") 2016/06/13 16:55:53 line 69655: Found "ionizer" in "ionizers" ("ioniser") 2016/06/13 16:55:53 line 69655: Found "ionizers" in "ionizers" ("ionisers") 2016/06/13 16:55:53 line 70046: Found "jail" in "jail" ("gaol") 2016/06/13 16:55:53 line 70047: Found "jail" in "jail's" ("gaol") 2016/06/13 16:55:53 line 70048: Found "jail" in "jailbird" ("gaol") 2016/06/13 16:55:53 line 70048: Found "jailbird" in "jailbird" ("gaolbird") 2016/06/13 16:55:53 line 70049: Found "jail" in "jailbird's" ("gaol") 2016/06/13 16:55:53 line 70049: Found "jailbird" in "jailbird's" ("gaolbird") 2016/06/13 16:55:53 line 70050: Found "jail" in "jailbirds" ("gaol") 2016/06/13 16:55:53 line 70050: Found "jailbird" in "jailbirds" ("gaolbird") 2016/06/13 16:55:53 line 70050: Found "jailbirds" in "jailbirds" ("gaolbirds") 2016/06/13 16:55:53 line 70051: Found "jail" in "jailbreak" ("gaol") 2016/06/13 16:55:53 line 70051: Found "jailbreak" in "jailbreak" ("gaolbreak") 2016/06/13 16:55:53 line 70052: Found "jail" in "jailbreak's" ("gaol") 2016/06/13 16:55:53 line 70052: Found "jailbreak" in "jailbreak's" ("gaolbreak") 2016/06/13 16:55:53 line 70053: Found "jail" in "jailbreaks" ("gaol") 2016/06/13 16:55:53 line 70053: Found "jailbreak" in "jailbreaks" ("gaolbreak") 2016/06/13 16:55:53 line 70053: Found "jailbreaks" in "jailbreaks" ("gaolbreaks") 2016/06/13 16:55:53 line 70054: Found "jail" in "jailed" ("gaol") 2016/06/13 16:55:53 line 70054: Found "jailed" in "jailed" ("gaoled") 2016/06/13 16:55:53 line 70055: Found "jail" in "jailer" ("gaol") 2016/06/13 16:55:53 line 70055: Found "jailer" in "jailer" ("gaoler") 2016/06/13 16:55:53 line 70056: Found "jail" in "jailer's" ("gaol") 2016/06/13 16:55:53 line 70056: Found "jailer" in "jailer's" ("gaoler") 2016/06/13 16:55:53 line 70057: Found "jail" in "jailers" ("gaol") 2016/06/13 16:55:53 line 70057: Found "jailer" in "jailers" ("gaoler") 2016/06/13 16:55:53 line 70057: Found "jailers" in "jailers" ("gaolers") 2016/06/13 16:55:53 line 70058: Found "jail" in "jailhouse" ("gaol") 2016/06/13 16:55:53 line 70059: Found "jail" in "jailhouses" ("gaol") 2016/06/13 16:55:53 line 70060: Found "jail" in "jailing" ("gaol") 2016/06/13 16:55:53 line 70060: Found "jailing" in "jailing" ("gaoling") 2016/06/13 16:55:53 line 70061: Found "jail" in "jails" ("gaol") 2016/06/13 16:55:53 line 70061: Found "jails" in "jails" ("gaols") 2016/06/13 16:55:53 line 71264: Found "kilogram" in "kilogram" ("kilogramme") 2016/06/13 16:55:53 line 71265: Found "kilogram" in "kilogram's" ("kilogramme") 2016/06/13 16:55:53 line 71266: Found "kilogram" in "kilogramme" ("kilogramme") 2016/06/13 16:55:53 line 71267: Found "kilogram" in "kilogramme's" ("kilogramme") 2016/06/13 16:55:53 line 71268: Found "kilogram" in "kilogrammes" ("kilogramme") 2016/06/13 16:55:53 line 71269: Found "kilogram" in "kilograms" ("kilogramme") 2016/06/13 16:55:53 line 71269: Found "kilograms" in "kilograms" ("kilogrammes") 2016/06/13 16:55:53 line 71725: Found "labor" in "laboratories" ("labour") 2016/06/13 16:55:53 line 71726: Found "labor" in "laboratory" ("labour") 2016/06/13 16:55:53 line 71727: Found "labor" in "laboratory's" ("labour") 2016/06/13 16:55:53 line 71728: Found "labor" in "laborious" ("labour") 2016/06/13 16:55:53 line 71729: Found "labor" in "laboriously" ("labour") 2016/06/13 16:55:53 line 71730: Found "labor" in "laboriousness" ("labour") 2016/06/13 16:55:53 line 71731: Found "labor" in "laboriousness's" ("labour") 2016/06/13 16:55:54 line 73217: Found "license" in "license" ("licence") 2016/06/13 16:55:54 line 73218: Found "license" in "licensed" ("licence") 2016/06/13 16:55:54 line 73218: Found "licensed" in "licensed" ("licenced") 2016/06/13 16:55:54 line 73219: Found "license" in "licensee" ("licence") 2016/06/13 16:55:54 line 73220: Found "license" in "licensee's" ("licence") 2016/06/13 16:55:54 line 73221: Found "license" in "licensees" ("licence") 2016/06/13 16:55:54 line 73222: Found "license" in "licenses" ("licence") 2016/06/13 16:55:54 line 73222: Found "licenses" in "licenses" ("licences") 2016/06/13 16:55:54 line 73223: Found "licensing" in "licensing" ("licencing") 2016/06/13 16:55:54 line 73478: Found "miters" in "limiters" ("mitres") 2016/06/13 16:55:54 line 73747: Found "liter" in "literacy" ("litre") 2016/06/13 16:55:54 line 73748: Found "liter" in "literacy's" ("litre") 2016/06/13 16:55:54 line 73749: Found "liter" in "literal" ("litre") 2016/06/13 16:55:54 line 73750: Found "liter" in "literal's" ("litre") 2016/06/13 16:55:54 line 73751: Found "liter" in "literally" ("litre") 2016/06/13 16:55:54 line 73752: Found "liter" in "literalness" ("litre") 2016/06/13 16:55:54 line 73753: Found "liter" in "literalness's" ("litre") 2016/06/13 16:55:54 line 73754: Found "liter" in "literals" ("litre") 2016/06/13 16:55:54 line 73755: Found "liter" in "literariness" ("litre") 2016/06/13 16:55:54 line 73756: Found "liter" in "literariness's" ("litre") 2016/06/13 16:55:54 line 73757: Found "liter" in "literary" ("litre") 2016/06/13 16:55:54 line 73758: Found "liter" in "literate" ("litre") 2016/06/13 16:55:54 line 73759: Found "liter" in "literate's" ("litre") 2016/06/13 16:55:54 line 73760: Found "liter" in "literately" ("litre") 2016/06/13 16:55:54 line 73761: Found "liter" in "literates" ("litre") 2016/06/13 16:55:54 line 73762: Found "liter" in "literati" ("litre") 2016/06/13 16:55:54 line 73763: Found "liter" in "literati's" ("litre") 2016/06/13 16:55:54 line 73764: Found "liter" in "literature" ("litre") 2016/06/13 16:55:54 line 73765: Found "liter" in "literature's" ("litre") 2016/06/13 16:55:54 line 75435: Found "practice" in "malpractice" ("practise") 2016/06/13 16:55:54 line 75436: Found "practice" in "malpractice's" ("practise") 2016/06/13 16:55:54 line 75437: Found "practice" in "malpractices" ("practise") 2016/06/13 16:55:54 line 75437: Found "practices" in "malpractices" ("practises") 2016/06/13 16:55:55 line 75873: Found "marginalization" in "marginalization's" ("marginalisation") 2016/06/13 16:55:55 line 75979: Found "armor" in "marmoreal" ("armour") 2016/06/13 16:55:55 line 76509: Found "meager" in "meagerly" ("meagre") 2016/06/13 16:55:55 line 76510: Found "meager" in "meagerness" ("meagre") 2016/06/13 16:55:55 line 76511: Found "meager" in "meagerness's" ("meagre") 2016/06/13 16:55:55 line 76685: Found "medieval" in "medieval" ("mediaeval") 2016/06/13 16:55:55 line 76686: Found "medieval" in "medievalist" ("mediaeval") 2016/06/13 16:55:55 line 76687: Found "medieval" in "medievalist's" ("mediaeval") 2016/06/13 16:55:55 line 76688: Found "medieval" in "medievalists" ("mediaeval") 2016/06/13 16:55:55 line 77453: Found "fiber" in "microfiber" ("fibre") 2016/06/13 16:55:55 line 77454: Found "fiber" in "microfiber's" ("fibre") 2016/06/13 16:55:55 line 77455: Found "fiber" in "microfibers" ("fibre") 2016/06/13 16:55:55 line 77455: Found "fibers" in "microfibers" ("fibres") 2016/06/13 16:55:55 line 77482: Found "micrometer" in "micrometer" ("micrometre") 2016/06/13 16:55:55 line 77483: Found "micrometer" in "micrometer's" ("micrometre") 2016/06/13 16:55:55 line 77484: Found "micrometer" in "micrometers" ("micrometre") 2016/06/13 16:55:55 line 77484: Found "micrometers" in "micrometers" ("micrometres") 2016/06/13 16:55:55 line 78503: Found "misspelled" in "misspelled" ("misspelt") 2016/06/13 16:55:55 line 78847: Found "mold" in "moldboard" ("mould") 2016/06/13 16:55:55 line 78848: Found "mold" in "moldboard's" ("mould") 2016/06/13 16:55:55 line 78849: Found "mold" in "moldboards" ("mould") 2016/06/13 16:55:55 line 78850: Found "mold" in "moldiness" ("mould") 2016/06/13 16:55:55 line 78851: Found "mold" in "moldiness's" ("mould") 2016/06/13 16:55:56 line 78899: Found "molt" in "molten" ("moult") 2016/06/13 16:55:56 line 78900: Found "molt" in "molter" ("moult") 2016/06/13 16:55:56 line 78901: Found "molt" in "molter's" ("moult") 2016/06/13 16:55:56 line 78902: Found "molt" in "molters" ("moult") 2016/06/13 16:55:56 line 80260: Found "mustachioed" in "mustachioed" ("moustachioed") 2016/06/13 16:55:56 line 81886: Found "liter" in "nonliterary" ("litre") 2016/06/13 16:55:56 line 81956: Found "practicing" in "nonpracticing" ("practising") 2016/06/13 16:55:56 line 82030: Found "specializing" in "nonspecializing" ("specialising") 2016/06/13 16:55:57 line 82770: Found "liter" in "obliterate" ("litre") 2016/06/13 16:55:57 line 82771: Found "liter" in "obliterated" ("litre") 2016/06/13 16:55:57 line 82772: Found "liter" in "obliterates" ("litre") 2016/06/13 16:55:57 line 82773: Found "liter" in "obliterating" ("litre") 2016/06/13 16:55:57 line 82774: Found "liter" in "obliteration" ("litre") 2016/06/13 16:55:57 line 82775: Found "liter" in "obliteration's" ("litre") 2016/06/13 16:55:57 line 83099: Found "edema" in "oedema" ("edoema") 2016/06/13 16:55:57 line 83100: Found "edema" in "oedema's" ("edoema") 2016/06/13 16:55:57 line 83101: Found "edema" in "oedemas" ("edoema") 2016/06/13 16:55:57 line 83109: Found "esophagus" in "oesophaguses" ("oesophagus") 2016/06/13 16:55:57 line 83109: Found "esophaguses" in "oesophaguses" ("oesophaguses") 2016/06/13 16:55:57 line 83110: Found "estrogen" in "oestrogen" ("oestrogen") 2016/06/13 16:55:57 line 83111: Found "estrogen" in "oestrogen's" ("oestrogen") 2016/06/13 16:55:58 line 86274: Found "passivize" in "passivize" ("passivise") 2016/06/13 16:55:58 line 86275: Found "passivize" in "passivized" ("passivise") 2016/06/13 16:55:58 line 86275: Found "passivized" in "passivized" ("passivised") 2016/06/13 16:55:58 line 86276: Found "passivize" in "passivizes" ("passivise") 2016/06/13 16:55:58 line 86276: Found "passivizes" in "passivizes" ("passivises") 2016/06/13 16:55:58 line 86277: Found "passivizing" in "passivizing" ("passivising") 2016/06/13 16:55:58 line 86596: Found "checks" in "paychecks" ("cheques") 2016/06/13 16:55:58 line 86789: Found "pederast" in "pederast" ("paederast") 2016/06/13 16:55:58 line 86790: Found "pederast" in "pederast's" ("paederast") 2016/06/13 16:55:58 line 86791: Found "pederast" in "pederasts" ("paederast") 2016/06/13 16:55:58 line 86791: Found "pederasts" in "pederasts" ("paederasts") 2016/06/13 16:55:58 line 86792: Found "pederast" in "pederasty" ("paederast") 2016/06/13 16:55:58 line 86793: Found "pederast" in "pederasty's" ("paederast") 2016/06/13 16:55:58 line 86805: Found "pediatric" in "pediatrics's" ("paediatric") 2016/06/13 16:55:58 line 86805: Found "pediatrics" in "pediatrics's" ("paediatrics") 2016/06/13 16:55:59 line 89771: Found "liter" in "politer" ("litre") 2016/06/13 16:55:59 line 90695: Found "practice" in "practice" ("practise") 2016/06/13 16:55:59 line 90696: Found "practice" in "practice's" ("practise") 2016/06/13 16:55:59 line 90697: Found "practice" in "practices" ("practise") 2016/06/13 16:55:59 line 90697: Found "practices" in "practices" ("practises") 2016/06/13 16:55:59 line 90827: Found "canceled" in "precanceled" ("cancelled") 2016/06/13 16:55:59 line 90828: Found "canceling" in "precanceling" ("cancelling") 2016/06/13 16:55:59 line 91145: Found "liter" in "preliterate" ("litre") 2016/06/13 16:55:59 line 91397: Found "presidium" in "presidium" ("praesidium") 2016/06/13 16:55:59 line 91398: Found "presidium" in "presidium's" ("praesidium") 2016/06/13 16:55:59 line 91399: Found "presidium" in "presidiums" ("praesidium") 2016/06/13 16:55:59 line 91399: Found "presidiums" in "presidiums" ("praesidiums") 2016/06/13 16:55:59 line 91433: Found "pressurize" in "pressurizer's" ("pressurise") 2016/06/13 16:55:59 line 91648: Found "primeval" in "primeval" ("primaeval") 2016/06/13 16:55:59 line 92094: Found "program" in "program" ("programme") 2016/06/13 16:55:59 line 92095: Found "program" in "program's" ("programme") 2016/06/13 16:55:59 line 92096: Found "program" in "programmable" ("programme") 2016/06/13 16:55:59 line 92097: Found "program" in "programmable's" ("programme") 2016/06/13 16:55:59 line 92098: Found "program" in "programmables" ("programme") 2016/06/13 16:55:59 line 92099: Found "program" in "programmatic" ("programme") 2016/06/13 16:55:59 line 92100: Found "program" in "programme" ("programme") 2016/06/13 16:55:59 line 92101: Found "program" in "programme's" ("programme") 2016/06/13 16:55:59 line 92102: Found "program" in "programmed" ("programme") 2016/06/13 16:55:59 line 92103: Found "program" in "programmer" ("programme") 2016/06/13 16:55:59 line 92104: Found "program" in "programmer's" ("programme") 2016/06/13 16:55:59 line 92105: Found "program" in "programmers" ("programme") 2016/06/13 16:55:59 line 92106: Found "program" in "programmes" ("programme") 2016/06/13 16:55:59 line 92107: Found "program" in "programming" ("programme") 2016/06/13 16:55:59 line 92108: Found "program" in "programming's" ("programme") 2016/06/13 16:55:59 line 92109: Found "program" in "programs" ("programme") 2016/06/13 16:55:59 line 92109: Found "programs" in "programs" ("programmes") 2016/06/13 16:56:00 line 93101: Found "pummel" in "pummel" ("pummelled") 2016/06/13 16:56:00 line 93102: Found "pummel" in "pummelled" ("pummelled") 2016/06/13 16:56:00 line 93103: Found "pummel" in "pummelling" ("pummelled") 2016/06/13 16:56:00 line 93104: Found "pummel" in "pummels" ("pummelled") 2016/06/13 16:56:00 line 94496: Found "rancor" in "rancorous" ("rancour") 2016/06/13 16:56:00 line 94497: Found "rancor" in "rancorously" ("rancour") 2016/06/13 16:56:00 line 95204: Found "authorize" in "reauthorized" ("authorise") 2016/06/13 16:56:00 line 95204: Found "authorized" in "reauthorized" ("authorised") 2016/06/13 16:56:00 line 95205: Found "authorizing" in "reauthorizing" ("authorising") 2016/06/13 16:56:00 line 95364: Found "center" in "recenter" ("centre") 2016/06/13 16:56:00 line 95416: Found "checks" in "rechecks" ("cheques") 2016/06/13 16:56:01 line 96736: Found "vigor" in "reinvigorate" ("vigour") 2016/06/13 16:56:01 line 96737: Found "vigor" in "reinvigorated" ("vigour") 2016/06/13 16:56:01 line 96738: Found "vigor" in "reinvigorates" ("vigour") 2016/06/13 16:56:01 line 96739: Found "vigor" in "reinvigorating" ("vigour") 2016/06/13 16:56:01 line 97572: Found "program" in "reprogram" ("programme") 2016/06/13 16:56:01 line 97573: Found "program" in "reprogramed" ("programme") 2016/06/13 16:56:01 line 97574: Found "program" in "reprograming" ("programme") 2016/06/13 16:56:01 line 97575: Found "program" in "reprogramme" ("programme") 2016/06/13 16:56:01 line 97576: Found "program" in "reprogrammed" ("programme") 2016/06/13 16:56:01 line 97577: Found "program" in "reprogrammes" ("programme") 2016/06/13 16:56:01 line 97578: Found "program" in "reprogramming" ("programme") 2016/06/13 16:56:01 line 97579: Found "program" in "reprograms" ("programme") 2016/06/13 16:56:01 line 97579: Found "programs" in "reprograms" ("programmes") 2016/06/13 16:56:01 line 97951: Found "specter" in "respecter" ("spectre") 2016/06/13 16:56:01 line 97952: Found "specter" in "respecter's" ("spectre") 2016/06/13 16:56:01 line 97953: Found "specter" in "respecters" ("spectre") 2016/06/13 16:56:01 line 97953: Found "specters" in "respecters" ("spectres") 2016/06/13 16:56:01 line 98981: Found "rigor" in "rigorous" ("rigour") 2016/06/13 16:56:01 line 98982: Found "rigor" in "rigorously" ("rigour") 2016/06/13 16:56:01 line 98983: Found "rigor" in "rigorousness" ("rigour") 2016/06/13 16:56:01 line 98984: Found "rigor" in "rigorousness's" ("rigour") 2016/06/13 16:56:03 line 104780: Found "siphon" in "siphon" ("syphon") 2016/06/13 16:56:03 line 104781: Found "siphon" in "siphon's" ("syphon") 2016/06/13 16:56:03 line 104782: Found "siphon" in "siphoned" ("syphon") 2016/06/13 16:56:03 line 104782: Found "siphoned" in "siphoned" ("syphoned") 2016/06/13 16:56:03 line 104783: Found "siphon" in "siphoning" ("syphon") 2016/06/13 16:56:03 line 104783: Found "siphoning" in "siphoning" ("syphoning") 2016/06/13 16:56:03 line 104784: Found "siphon" in "siphons" ("syphon") 2016/06/13 16:56:03 line 104784: Found "siphons" in "siphons" ("syphons") 2016/06/13 16:56:03 line 106241: Found "snorkeling" in "snorkeling's" ("snorkelling") 2016/06/13 16:56:04 line 106324: Found "plow" in "snowplowed" ("plough") 2016/06/13 16:56:04 line 106324: Found "plowed" in "snowplowed" ("ploughed") 2016/06/13 16:56:04 line 106324: Found "snowplow" in "snowplowed" ("snowplough") 2016/06/13 16:56:04 line 106325: Found "plow" in "snowplowing" ("plough") 2016/06/13 16:56:04 line 106325: Found "plowing" in "snowplowing" ("ploughing") 2016/06/13 16:56:04 line 106325: Found "snowplow" in "snowplowing" ("snowplough") 2016/06/13 16:56:04 line 106999: Found "checks" in "soundchecks" ("cheques") 2016/06/13 16:56:04 line 107530: Found "checks" in "spellchecks" ("cheques") 2016/06/13 16:56:04 line 107823: Found "splendor" in "splendorous" ("splendour") 2016/06/13 16:56:05 line 109578: Found "stories" in "stories" ("storeys") 2016/06/13 16:56:05 line 110448: Found "program" in "subprogram" ("programme") 2016/06/13 16:56:05 line 110449: Found "program" in "subprograms" ("programme") 2016/06/13 16:56:05 line 110449: Found "programs" in "subprograms" ("programmes") 2016/06/13 16:56:05 line 110843: Found "sulfur" in "sulfur" ("sulphur") 2016/06/13 16:56:05 line 110844: Found "sulfur" in "sulfur's" ("sulphur") 2016/06/13 16:56:05 line 110845: Found "sulfur" in "sulfured" ("sulphur") 2016/06/13 16:56:05 line 110846: Found "sulfur" in "sulfuring" ("sulphur") 2016/06/13 16:56:05 line 110847: Found "sulfur" in "sulfurs" ("sulphur") 2016/06/13 16:56:06 line 112158: Found "synthesize" in "synthesizer" ("synthesise") 2016/06/13 16:56:06 line 112158: Found "synthesizer" in "synthesizer" ("synthesiser") 2016/06/13 16:56:06 line 112159: Found "synthesize" in "synthesizer's" ("synthesise") 2016/06/13 16:56:06 line 112159: Found "synthesizer" in "synthesizer's" ("synthesiser") 2016/06/13 16:56:06 line 112160: Found "synthesize" in "synthesizers" ("synthesise") 2016/06/13 16:56:06 line 112160: Found "synthesizer" in "synthesizers" ("synthesiser") 2016/06/13 16:56:06 line 112160: Found "synthesizers" in "synthesizers" ("synthesisers") 2016/06/13 16:56:06 line 113096: Found "technicolor" in "technicolor" ("technicolour") 2016/06/13 16:56:07 line 116049: Found "liter" in "transliterate" ("litre") 2016/06/13 16:56:07 line 116050: Found "liter" in "transliterated" ("litre") 2016/06/13 16:56:07 line 116051: Found "liter" in "transliterates" ("litre") 2016/06/13 16:56:07 line 116052: Found "liter" in "transliterating" ("litre") 2016/06/13 16:56:07 line 116053: Found "liter" in "transliteration" ("litre") 2016/06/13 16:56:07 line 116054: Found "liter" in "transliteration's" ("litre") 2016/06/13 16:56:07 line 116055: Found "liter" in "transliterations" ("litre") 2016/06/13 16:56:08 line 117108: Found "tumor" in "tumorous" ("tumour") 2016/06/13 16:56:08 line 117948: Found "catalog" in "uncatalogued" ("catalogue") 2016/06/13 16:56:08 line 118654: Found "filter" in "unfiltered" ("philtre") 2016/06/13 16:56:08 line 118897: Found "installs" in "uninstalls" ("instals") 2016/06/13 16:56:08 line 119027: Found "license" in "unlicensed" ("licence") 2016/06/13 16:56:08 line 119027: Found "licensed" in "unlicensed" ("licenced") 2016/06/13 16:56:09 line 119620: Found "raveled" in "untraveled" ("ravelled") 2016/06/13 16:56:09 line 119620: Found "traveled" in "untraveled" ("travelled") 2016/06/13 16:56:09 line 120254: Found "valor" in "valorous" ("valour") 2016/06/13 16:56:09 line 120255: Found "valor" in "valorously" ("valour") 2016/06/13 16:56:09 line 120349: Found "vapor" in "vaporisation" ("vapour") 2016/06/13 16:56:09 line 120350: Found "vapor" in "vaporisation's" ("vapour") 2016/06/13 16:56:09 line 120351: Found "vapor" in "vaporise" ("vapour") 2016/06/13 16:56:09 line 120352: Found "vapor" in "vaporised" ("vapour") 2016/06/13 16:56:09 line 120353: Found "vapor" in "vaporiser" ("vapour") 2016/06/13 16:56:09 line 120354: Found "vapor" in "vaporiser's" ("vapour") 2016/06/13 16:56:09 line 120355: Found "vapor" in "vaporisers" ("vapour") 2016/06/13 16:56:09 line 120356: Found "vapor" in "vaporises" ("vapour") 2016/06/13 16:56:09 line 120357: Found "vapor" in "vaporising" ("vapour") 2016/06/13 16:56:09 line 120358: Found "vapor" in "vaporous" ("vapour") 2016/06/13 16:56:09 line 121048: Found "vigor" in "vigorous" ("vigour") 2016/06/13 16:56:09 line 121049: Found "vigor" in "vigorously" ("vigour") 2016/06/13 16:56:09 line 121759: Found "wagon" in "wagon" ("waggon") 2016/06/13 16:56:09 line 121760: Found "wagon" in "wagon's" ("waggon") 2016/06/13 16:56:09 line 121761: Found "wagon" in "wagoner" ("waggon") 2016/06/13 16:56:09 line 121762: Found "wagon" in "wagoner's" ("waggon") 2016/06/13 16:56:09 line 121763: Found "wagon" in "wagoners" ("waggon") 2016/06/13 16:56:09 line 121764: Found "wagon" in "wagons" ("waggon") 2016/06/13 16:56:09 line 121764: Found "wagons" in "wagons" ("wagons")
gharchive/issue
2016-01-07T08:20:45
2025-04-01T06:46:32.809776
{ "authors": [ "client9", "emead" ], "repo": "client9/misspell", "url": "https://github.com/client9/misspell/issues/6", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
567296115
Reground sentences @zupon, this isn't ready to go yet, but the intended functionality has been placed into OntologyHandler.reground(sentenceText: String, interval: Interval). If that looks like the wrong place or the wrong shape, you can let me know. The idea is to go through all the steps that would normally be taken with OntologyHandler.process(eidosMention) but not have each individual grounder need to deal with anything other than an EidosMention or have each separately convert text to a Mention. @zupon, after this is merged, you can change a couple of lines in ExtractAndExport.scala to something like val groundedAs = groundAs.flatMap { grounder => grounder match { case "wm_compositional" => CompositionalGrounder.branches.map(OntologyHandler.mkBranchName(grounder, Some(_)) case other => Seq(other) } } There are problems if, for example, the sentence text coming in gets parsed into two different sentences. I'm punting on that issue here. Thanks @kwalcock ! I think this should work for my purpose. @BeckySharp , does this look alright to you? I should have written a comment. That method is never called. It was just used temporarily to test the call to the regrounder. It usually worked. For the regrounding call, something else needs to decide on the real interval. got it! thanks! On Thu, Feb 20, 2020 at 4:07 PM Keith Alcock notifications@github.com wrote: I should have written a comment. That method is never called. It was just used temporarily to test the call to the regrounder. It usually worked. For the regrounding call, something else needs to decide on the real interval. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/clulab/eidos/pull/760?email_source=notifications&email_token=ABJCPCO7FAZZJR3KYR6W42LRD4ELNA5CNFSM4KXRCR42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEMQYNGQ#issuecomment-589399706, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABJCPCNAUBHHZY7BGZSIKM3RD4ELNANCNFSM4KXRCR4Q . Some documentation has been added so that I remember what it was there for.
gharchive/pull-request
2020-02-19T03:43:45
2025-04-01T06:46:32.830862
{ "authors": [ "BeckySharp", "kwalcock", "zupon" ], "repo": "clulab/eidos", "url": "https://github.com/clulab/eidos/pull/760", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
743705288
Update notes.md LGTM
gharchive/pull-request
2020-11-16T10:12:26
2025-04-01T06:46:32.833144
{ "authors": [ "pro0toz" ], "repo": "cnb0/learning-kafka", "url": "https://github.com/cnb0/learning-kafka/pull/2", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
237787215
Dynamically generate the list of all coala rooms that corobo has to be present in dynamic generation isn't possible.
gharchive/issue
2017-06-22T09:38:07
2025-04-01T06:46:32.845179
{ "authors": [ "meetmangukiya" ], "repo": "coala/corobo", "url": "https://github.com/coala/corobo/issues/149", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
237316879
test pr I assume this isn't needed anymore
gharchive/pull-request
2017-06-20T19:20:37
2025-04-01T06:46:32.845944
{ "authors": [ "meetmangukiya", "sils" ], "repo": "coala/playground", "url": "https://github.com/coala/playground/pull/3", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
434286059
cobalt.conf: optional ios/android classes and use Cobalt ones as default Done for iOS Done for Android @ggendre Add a test case somewhere in Cobalt Catalog? maybe the hello world ? Hello world test for Android = success ! 👍 Hello world test for iOS = partial : On iOS : if I comment initWithPage("index.html", andController: "default") which is in the init method of my viewController, it load index.html but doesn't care about my "default" settings from cobalt.json. another PB on iOS : I was not able to remove a custom view controller that inherit from cobaltViewController. As soon as I delete it, and set CobaltViewController as class in storyboard, and reference outlets to cobalt webview, I get : Unknown class CobaltViewController in Interface Builder file. 2019-04-25 16:46:29.904764+0200 HelloWorld[27356:7583829] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIViewController 0x7fb2a9100180> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key webView.' Your mission : [ ] remove MagicViewController.swift [ ] have pullToRefresh and title applied as expected from cobalt.json default setting I think I will not be able to fix this issue "remove MagicViewController.swift" :/ Seems to be tied to a new way to handle Frameworks : modules. Need to convert Cobalt as a module, so IB could load classes from it.
gharchive/issue
2019-04-17T13:32:53
2025-04-01T06:46:32.850324
{ "authors": [ "Doc1faux", "ggendre" ], "repo": "cobaltians/Cobalt", "url": "https://github.com/cobaltians/Cobalt/issues/175", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
149535912
add cleanslate The tests are passing now (see #47). I merged this locally, it's on its way to the great Heroku in the sky.
gharchive/pull-request
2016-04-19T18:00:14
2025-04-01T06:46:32.857804
{ "authors": [ "bengolder", "davidrleonard" ], "repo": "codeforamerica/redirect", "url": "https://github.com/codeforamerica/redirect/pull/46", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
347515739
Fixes linting that has fallen by the wayside Approves~
gharchive/pull-request
2018-08-03T19:46:44
2025-04-01T06:46:32.858439
{ "authors": [ "knod", "zhujinxuan" ], "repo": "codeforboston/cliff-effects", "url": "https://github.com/codeforboston/cliff-effects/pull/694", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
216591162
Rerender to fix builds. Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR (recipe) and found it was in an excellent condition.
gharchive/pull-request
2017-03-23T22:26:32
2025-04-01T06:46:32.890115
{ "authors": [ "conda-forge-linter", "pmlandwehr" ], "repo": "conda-forge/win_inet_pton-feedstock", "url": "https://github.com/conda-forge/win_inet_pton-feedstock/pull/1", "license": "BSD-3-Clause", "license_type": "permissive", "license_source": "github-api" }
358484736
upload ols again update json update ols again json update json new 团队背景: OLS团队拥有多年电商、网红领域投资经验,拥有活跃社群粉丝30万,专长于金融市场业务、金融产品估值、风险管理模型、投资组合管理等,OLS团队即将完成初步网红平台搭建,已完成区块链网红商城制作,已有4294名网红加入到OLS团队,“人人皆网红”是OLS团队自始至终的信念,将通过OLS平台,将网红直播、网红商城、网红影视等融于一体,打造B2B/B2C商用网红平台,推动网红经济发展,是OLS团队从一而终的使命。 项目基本情况: “美推网”是一个专注于网红商业模式的网络平台,让每个人都能够在平台中创造价值,以此打造一个全新的网红生态。 通过区块链技术拟建立一个链接粉丝、网红、经纪公司、直播平台、供应厂商的共享生态圈。通过区块的公开化、不可删除,可查询、可溯源的特点,经纪公司、直播平台、供应厂商可以轻松发掘有潜力的新人,同时想成为网红的人也能通过全球网红链找到适合自己发展线路的经纪公司、直播平台、供应厂商进行合作。 通过智能能合约为所有用户(包括粉丝、网红、经纪公司、直播平台、供应厂商)创建一个数字身份认证。这个数字身份将会记录与网红相关的所有历程,并把记录写在区块上、公开透明化。 任何人都可以加入“美推网”,在没有资本投资的情况下创造经济价值。“美推网”将吸引更多用户加入到该体系中,使“美推网”得到良性发展。 “美推网”中所有相关人员都能够参与创造价值并参与消费,互相合作。并通过创造高质量作品(直播、短视频),将这些作品传播到整个网络,充分创造其经济价值。 更多关于美推网 的信息 官网: http://ols.pub/ 微博:https://weibo.com/u/2348539474 媒体报道 2017年年中,美推网创始团队集结杭州,开始着手“区块链+网红经济”的创业方向探索;2018年年初,区块链概念开始席卷全国,区块链投资风涌。历时近一年的技术研判,美推网“区块链+网红经济”走向成熟。 如果仅从业务层面诉求上看,美推网就是一家以促成网红产业各经济诉求端之间的最佳资源配置,达成最佳链接路径的解决方案输出型平台公司。但实质上,“区块链 + 网红经济”才是美推网架构的商业技术模型。以创新区块链场景技术,达成网红产业各经济端口的价值沉淀、价值认证、价值传递与价值变现。 美推网打造网红链社区,使用户可以打破原来所在的阵营和公司的束缚,到一个开放平台上施展自己的才能,获得回报。无论是作为网红经济价值链上的直接参与者、还是间接参与,美推网将给与他们在线行为的价值认证,并给与价值变现通道。 网红链是全球首例应用去中心化的区块链技术。融合大数据、算法模型、区块链技术、自然语言处理等技术手段,应用于网红签约、商户任务发布、用户任务领取、社交传播、财务分布等领域。 网红链社区营造基于配套治理机制来实现,社区通过制定奖励机制、任务机制、信用评级机制等在线网红服务需求方与网红服务供给方之间建立的一个有序、公平、共享生态环境,共同营造网红生态链的健康发展。 美推网创始团队均来自于国际知名网红经纪公司与全球知名科技公司,聚集区块链、大数据分析、算法等领域专家,以及拥有丰富区块链开发经验的实践者。 在确保引用颠覆性的技术,提升网红产业的经济增长效率的同时。美推网期望通过技术创新、机制创新,让网红经济价值链上的每个参与者都得获得长效发展机遇,让每一个网红、商家、机构、粉丝都可以享受到专业化、普惠化的网红生态价值创造之中。 合作媒体: 搜狐新闻 http://3g.k.sohu.com/t/n298836295?showType=&from=groupmessage&isappinstalled=0 凤凰新闻 网易新闻 一点资讯 gas limit: 60000 已经添加你的代币OLS(Online Star),请搜索添加测试,另外由于以太坊代币种类多,添加代币工作量大,同时为了避免误导部分 imToken 用户,我们暂时只添加社区内相对流行(有交易所收录,比如币安)的代币 logo 。但是我们暂时不添加贵团队的代币 logo 完全不影响代币的转账,只要贵方的代币是基于以太坊的 ERC 20标准代币,imToken 都是支持的。
gharchive/pull-request
2018-09-10T06:29:09
2025-04-01T06:46:32.908610
{ "authors": [ "afbojd", "wenyanwang" ], "repo": "consenlabs/token-profile", "url": "https://github.com/consenlabs/token-profile/pull/2326", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
411658482
fixed a typo and added a missing comment. Your commit is not signed, so the CI checks will fail again. You should be able to simply: $ git commit -s --amend $ git push -f To solve this as long as your git client is set up with your name and email address. closing the PR again as the commit is not signed. Will attempt to commit again using git commit -s --amend no need to close the PR got it..those commands would have updated the commit message with signed-off tag. anyways, submitted the pull request. Thanks for the info.
gharchive/pull-request
2019-02-18T21:53:09
2025-04-01T06:46:32.911186
{ "authors": [ "estesp", "veerun14" ], "repo": "containerd/containerd", "url": "https://github.com/containerd/containerd/pull/3029", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
226318620
Add annotations to statuses Coverage increased (+0.1%) to 67.154% when pulling 27c3a9bf74ffb2f472966f5d4fa421806173b60a on jodh-intel:add-annotations-to-statuses into 643dda7260ff88fc0863737ec902ab9d35a3d519 on containers:master. Coverage increased (+0.2%) to 67.495% when pulling 6a0d715d8cddf3083bdc1cd396f8581b5c6affda on jodh-intel:add-annotations-to-statuses into b1441a77e53416e42ff5702c4409095c2d5e5eee on containers:master. Hi @sameo - branch ready for re-review. Coverage increased (+0.5%) to 67.797% when pulling 07ec10b803fb499c4c70b85c4eb0aa3098af50dc on jodh-intel:add-annotations-to-statuses into b1441a77e53416e42ff5702c4409095c2d5e5eee on containers:master. Hi @sameo - thanks for reviewing. Branch updated. LGTM
gharchive/pull-request
2017-05-04T15:25:31
2025-04-01T06:46:32.915910
{ "authors": [ "coveralls", "jodh-intel", "sameo" ], "repo": "containers/virtcontainers", "url": "https://github.com/containers/virtcontainers/pull/228", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
309694987
updated installation section There are conflicts to fix now tho 💃 rebased
gharchive/pull-request
2018-03-29T10:04:28
2025-04-01T06:46:32.918609
{ "authors": [ "OskarStark", "sroze" ], "repo": "continuouspipe/continuouspipe", "url": "https://github.com/continuouspipe/continuouspipe/pull/60", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
176167770
#46, #52 fixes Releasing: compile 'com.kbeanie:multipicker:1.1.22-beta@aar' Did not see my changes in 1.1.22 beta, moreover it now contain even worse bug - you replaced "." to the File.separator so final temp filename now looks like pictures/10299af3-93ac-445f-900f-fbff5a1d36f8/jpeg The new picker manager class snippet: file = new File(file.getAbsolutePath() + File.separator + UUID.randomUUID().toString() + File.separator + extension); Releasing: compile 'com.kbeanie:multipicker:1.1.23-beta@aar'
gharchive/pull-request
2016-09-10T08:18:58
2025-04-01T06:46:32.921594
{ "authors": [ "coomar2841", "livotov" ], "repo": "coomar2841/android-multipicker-library", "url": "https://github.com/coomar2841/android-multipicker-library/pull/51", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
579132628
Strategies and measures to be taken by the employers The strategy implemented by IBS is pure word-of-mouth
gharchive/pull-request
2020-03-11T09:47:56
2025-04-01T06:46:32.924410
{ "authors": [ "Ascalonic" ], "repo": "coronasafe/coronasafe.in", "url": "https://github.com/coronasafe/coronasafe.in/pull/8", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
649058213
Bump directories cc @soc Travis CI is green, as is Appveyor.
gharchive/pull-request
2020-07-01T15:07:46
2025-04-01T06:46:32.930210
{ "authors": [ "alexarchambault" ], "repo": "coursier/coursier", "url": "https://github.com/coursier/coursier/pull/1784", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
395587249
Glide up and fix error when used with Docker in Docker Pull Request Test Coverage Report for Build 683 0 of 2 (0.0%) changed or added relevant lines in 1 file are covered. No unchanged relevant lines lost coverage. Overall coverage decreased (-0.02%) to 16.742% Changes Missing Coverage Covered Lines Changed/Added Lines % docker.go 0 2 0.0% Totals Change from base Build 681: -0.02% Covered Lines: 149 Relevant Lines: 890 💛 - Coveralls
gharchive/pull-request
2019-01-03T14:14:26
2025-04-01T06:46:32.936988
{ "authors": [ "coveralls", "julienduchesne" ], "repo": "coveo/tgf", "url": "https://github.com/coveo/tgf/pull/42", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
55474735
fix cross join plan compilation ack
gharchive/pull-request
2015-01-26T12:00:38
2025-04-01T06:46:32.948020
{ "authors": [ "mfelsche", "mfussenegger" ], "repo": "crate/crate", "url": "https://github.com/crate/crate/pull/1572", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
120173168
Bumped version to 2.2.0 and updated changelog Depends on https://github.com/crowbar/crowbar-client/pull/42 but otherwise mergeable. +1
gharchive/pull-request
2015-12-03T13:39:25
2025-04-01T06:46:32.958708
{ "authors": [ "rsalevsky", "tboerger" ], "repo": "crowbar/crowbar-client", "url": "https://github.com/crowbar/crowbar-client/pull/41", "license": "apache-2.0", "license_type": "permissive", "license_source": "bigquery" }
217342492
browserify-sign 4.0.1 breaks public interface. Related to #161 and crypto-browserify/browserify-sign#34 Looks like this is fixed in v4.0.2 which was released by @calvinmetcalf a couple minutes after this PR was opened. Hopefully quick enough that most users won't even have noticed :-D @rmg nice! ok now it's fixed in 4.0.3, forgot we had a files array in that package @calvinmetcalf lol, thankfully we have integration tests!
gharchive/pull-request
2017-03-27T18:59:41
2025-04-01T06:46:32.961057
{ "authors": [ "calvinmetcalf", "rharriso", "rmg" ], "repo": "crypto-browserify/crypto-browserify", "url": "https://github.com/crypto-browserify/crypto-browserify/pull/162", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }