id
int64
393k
2.82B
repo
stringclasses
68 values
title
stringlengths
1
936
body
stringlengths
0
256k
βŒ€
labels
stringlengths
2
508
priority
stringclasses
3 values
severity
stringclasses
3 values
356,968,369
TypeScript
Generic types from JSDoc aren't really generic
```js /** * @constructor * @template {string} K * @template V */ function Multimap() { /** @type {Object<string, V>} TODO: Remove the prototype from the fresh object */ this._map = {}; }; var Ns = {} /** @type {Multimap<"a" | "b", number>} */ const map = new Multimap(); const n = map._map['hi'] ``` **Expected behavior:** `n: number` **Actual behavior:** `n: any` in 3.0; `n: V` in 3.1-dev. Types resolved from functions are never properly generic, even that function has `@template`-specified type parameters; they're only special-cased in a few places to produce a specific instantiation of a type. They should use the normal generic type machinery that Typescript does.
Bug,Domain: JSDoc,Domain: JavaScript
medium
Critical
356,968,721
flutter
Allow giving custom radius to InkHighlight
As seen in [this line of the ink_highlight.dart](https://github.com/flutter/flutter/blob/5b5a5b82286923f52225320f5e9fc9f558838c05/packages/flutter/lib/src/material/ink_highlight.dart#L109), Material.defaultSplashRadius is used as a constant in painting the highlight. This makes users unable to make their own IconButtons similar to those seen in the play store. It also makes InkResponse look terrible when using any other radius than the default one. (Exaggerated here) ![Closeup of an inkresponse acting wierdly, the highlight is tiny, while the radius is huge](https://i.imgur.com/ED41ERI.png) Example in the play store: ![Image of the play store's account page, the search button is highlighted, and it is smaller than the appbar](https://cdn.discordapp.com/attachments/408312522521706496/486636085166997549/Screenshot_2018-09-04-22-35-57-921_com.android.vending.png) <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` ```
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Major
357,001,465
react
"scheduler" package umbrella
### Short term - [x] #13561: Replace the [`__getInteractionsRef` and `__getSubscriberRef` methods](https://github.com/facebook/react/blob/fb88fd9d8c9f72b8e2e7e1ae89652d2a6a707562/packages/schedule/src/Tracking.js#L84-L90) with direct ~~mutable~~ exports (`__interactions` and `__subscriber`) and [update the `ScheduleTracking` UMD fork](https://github.com/facebook/react/blob/master/packages/shared/forks/ScheduleTracking.umd.js). - [x] #13561: Remove `__getInteractionsRef` and `__getSubscriberRef` from the `schedule/tracking` UMD [dev](https://github.com/facebook/react/blob/master/packages/schedule/npm/umd/schedule-tracking.development.js) and [prod](https://github.com/facebook/react/blob/master/packages/schedule/npm/umd/schedule-tracking.production.min.js) bundles since it's not part of the public API. - [x] Fix interaction-tracking reference count bug (#13574) - [ ] Split subscriptions entry point apart from tracking (e.g. break `scheduler/tracking` into `scheduler/tracking` and `scheduler/subscriptions`) ### Long term - [ ] Move `scheduler` to is own git repo (maybe even its own org) prior to a 1.0 release. - [ ] Enable it to be used without a build step by replacing the dev/prod check with a single export. - [ ] Add an ES module entry point as well as the CJS and UMD entry points
Type: Umbrella,React Core Team
low
Critical
357,015,911
flutter
Add "namespace" prefixes to embedder.h enum values
Since the embedding API header is C, not C++, there's no namespace or `enum class`. That means that enum values like "kSuccess" and "kCancel" are in the global namespace of any application using the header, making them very prone to collision and/or confusion. They should ideally use a naming convention that makes them unique and easily identifiable. E.g., kFlutterResultSuccess, kFlutterPointerPhaseCancel.
engine,e: embedder,P2,team-engine,triaged-engine
low
Minor
357,018,821
flutter
Create integration/smoke test for Android & TalkBack
For example, run through some non-trivial interactions in the gallery with semantics enabled and scan the system logs for exceptions specifically emitted through TalkBack. This will require a new addition to the device lab of a current generation Android device running the latest TalkBack. Ideally we could always run on the latest TalkBack version.
a: tests,team,a: accessibility,P2,team-android,triaged-android
low
Minor
357,026,568
TypeScript
Typescript Autocompletion Not Working For Function Overloads
_From @MartinLoeper on August 29, 2018 13:27_ <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version: 1.25.1 1dfc5e557209371715f655691b1235b6b26a06be x64 - OS Version: Linux version 4.15.0-32-generic Ubuntu Steps to Reproduce: I provided a small example of the issue (see screenshot below). 1. Create a function with two overloads 2. Try to invoke this function 3. Once you typed in the first parameter, the IDE recognizes that it matches the first overload's signature. However, the auto-completion suggest the literals for both overloads. I expect the auto-completion to show "BW" and "BY" only! ![_005](https://user-images.githubusercontent.com/5209395/44790221-18dbae00-ab9f-11e8-8d80-2dca57cbd5a1.png) <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes The code: ```ts export class MomentHolidayFactory { public a(input: Germany, second: GermanState): string; public a(input: Austria, second: AustrianState): string; public a(input: Country, second: State): string { return "test"; } public holidays() { this.a("de", "" } } type Country = Germany & Austria; type Germany = "de" | "De" | "DE" | "germany"; type Austria = "Au" | "au" | "AU" | "austria"; type State = GermanState & AustrianState; type GermanState = "BW" | "BY"; type AustrianState = "Stmk" | "Vbg"; ``` _Copied from original issue: Microsoft/vscode#57509_
Suggestion,Help Wanted,Experience Enhancement
low
Major
357,051,424
vue
Style binding: implicitly assign 'px' as the default unit for numeric values for certain css properties
### What problem does this feature solve? When assigning values to a CSS property via style binding like ````html <div class="d-inline-block" :style="{width : width}"></div> ```` or using the shorthand syntax... ````html <div class="d-inline-block" :style="{width}"></div> ```` this will actually not gonna work because we need to explicitly set the `unit`: ````html <div class="d-inline-block" :style="{width : width + 'px'}"></div> ```` or via interpolation... ````html <div class="d-inline-block" :style="{width : `${width}px`}"></div> ```` Now our code becomes more verbose. Combining all the number of occurrences of such binding, it's becoming ridiculous. I'm not sure if currently there is an elegant solution for this, but if there is. It would be also good if it is referenced in in the [docs](https://vuejs.org/v2/guide/class-and-style.html). In React, this is the default behavior. It will add 'px' if the `unit` is not specified. ### What does the proposed API look like? For common css properties like `width` and `height`, having vue implicitly assign 'px' to the value it would definitely make our code much more cleaner. This code... ````html <div class="d-inline-block" :style="{width}"></div> ```` will be interpreted as: ````html <div class="d-inline-block" :style="{width : width + 'px'}"></div> ```` <!-- generated by vue-issues. DO NOT REMOVE -->
feature request,discussion
medium
Major
357,056,844
go
syscall: misleading documentation for linux SysProcAttr.Pdeathsig
Currently, the [documentation](https://github.com/golang/go/blob/0e9f1de0b7c934d9061f05f4781994fbd3ebd301/src/syscall/exec_linux.go#L33) says: > // Signal that the process will get when its parent dies (Linux only) However, according to the [prctl man page](http://man7.org/linux/man-pages/man2/prctl.2.html): > Warning: the "parent" in this case is considered to be the thread that created this process. In other words, the signal will be sent when that thread terminates (via, for example, pthread_exit(3)), rather than after all of the threads in the parent process terminate. I got bit by this in a python program -- started a new program on one thread, and tried to wait for it on another thread, and the child process kept dying and it took awhile to figure out what was going on. While I haven't ran into it in go yet, because in go threads and goroutines aren't one to one, I imagine if one ran into this sort of bug it would only occur intermittently. Thinking about it, it seems like a user might want to call [runtime.LockOSThread](https://golang.org/pkg/runtime/#LockOSThread) when using this? It's not clear to me whether the docs should have a larger warning in them -- but I think at the minimum the documentation should be updated to say 'parent thread' or 'parent goroutine' instead of just 'parent'.
Documentation,help wanted,NeedsInvestigation,compiler/runtime
low
Critical
357,080,633
pytorch
How to simulate multi-node using single-node with 8 GPUs
As title stated.
caffe2
low
Minor
357,080,809
pytorch
How to re-shuffle lmdb per epoch in the caffe2 training process
as title stated
caffe2
low
Minor
357,085,573
vscode
Allow to set a file association for files with no extension
``` { "files.associations": { "*": "mydefaulttype" } } ``` This changes the file association for absolutely all files. Should be possible to set a file association only for files that have no extension. So it would match `somefilename` but not `somefilename.txt` and not even `.somefilename`.
feature-request,workbench-editors,languages-guessing
medium
Critical
357,123,451
vue
Key Event wrongly triggered for unknown Modifier/Alias/Keycode on every Key in Safari 9
### Version 2.5.17 ### Reproduction link [https://codepen.io/cb109/pen/xarvBZ](https://codepen.io/cb109/pen/xarvBZ) ### Steps to reproduce Please open the codepen link in Safari 9 on iOS, which is where I observed the bug (works fine in Chrome 68 on Ubuntu 18). ### What is expected? There are two inputs, the first working as expected, the second showing some weird behaviour: The first textfield has a handler to fire only when pressing escape. Typing should work as expected, pressing escape while focused should clear the input. The second textfield has a handler for an unknown key code by using an unknown key modifier alias. Typing should work the same as for the first input. ### What is actually happening? Typing into the second input in Safari 9 on iOS it will always trigger the `@keyup` handler, thus clearing the input while typing. This feels wrong. IMHO this should not happen. If a key modifier-alias/code is not recognized, it should not be triggered by any key. <!-- generated by vue-issues. DO NOT REMOVE -->
improvement
medium
Critical
357,128,073
opencv
get unexpected results when using the cv::cuda::warpPerspective on Nvidia tx2
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest developer build. * Check if other person has already created the same issue to avoid duplicates. You can comment on it if there already is an issue. * Try to be as detailed as possible in your report. * Report only one problem per created issue. This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library. --> ##### System information (version) <!-- Example - OpenCV => - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> - OpenCV => 3.4.1-dev - Operating System / Platform => Linux tegra-ubuntu 4.4.38-tegra-leopard - Compiler => g++5.4.0 ##### Detailed description I write a simple code to test , the results of perspective tranform from CPU and GPU are different. The gpu one is wrong. ``` #include <stdio.h> #include <string> #include <opencv2/opencv.hpp> #include <opencv2/core.hpp> #include <opencv2/cudaarithm.hpp> #include <opencv2/cudafilters.hpp> #include <cuda_runtime.h> #include <cuda_profiler_api.h> using namespace cv; using namespace std; int main(int argc, char** argv) { VideoCapture cap("nvcamerasrc ! video/x-raw(memory:NVMM), width=(int)1920, height=(int)1080,format=(string)I420, framerate=(fraction)24/1 ! nvvidconv flip-method=1 ! video/x-raw, format=(string)BGRx ! videoconvert ! video/x-raw, format=(string)BGR ! appsink"); //VideoCapture cap("fakesrc ! videoconvert ! appsink"); if (!cap.isOpened()) { cout << "Failed to open camera." << endl; return -1; } Mat frame; for(;;) { cap >> frame; int width = 1080; int height = 1920; // cudaProfilerStart(); cv::cuda::GpuMat gpu_frame(frame); printf("GpuMat width: %d , height:%d\n", gpu_frame.cols, gpu_frame.rows); float w_ratio = 1.0 / 0.5; float h_ratio = 1.0 - 1.0 / 2; cv::Point2f src_p[4]; cv::Point2f dst_p[4]; src_p[0] = cv::Point2f(0.0f, 0.0f); src_p[1] = cv::Point2f(width-1.0, 0.0); src_p[2] = cv::Point2f(width*w_ratio, height*h_ratio); src_p[3] = cv::Point2f(width*(1-w_ratio), height*h_ratio); dst_p[0] = cv::Point2f(0.0f, 0.0f); dst_p[1] = cv::Point2f(width-1.0, 0.0); dst_p[2] = cv::Point2f(width*w_ratio, height*h_ratio); dst_p[3] = cv::Point2f(width*(1-w_ratio), height*h_ratio); // src_p[0] = cv::Point2f(height*h_ratio, width*w_ratio); // src_p[1] = cv::Point2f(0.0f, width); // src_p[2] = cv::Point2f(height*(1-h_ratio), width*w_ratio); // src_p[3] = cv::Point2f(height, width); // dst_p[0] = cv::Point2f(0.0f, 0.0f); dst_p[1] = cv::Point2f(width-1, 0.0f); dst_p[2] = cv::Point2f(0.0f, height-1.0); dst_p[3] = cv::Point2f(width-1.0, height-1.0); cv::Mat trans_mat33 = cv::getPerspectiveTransform(src_p, dst_p); // cv::Mat trans_mat33(3, 3, CV_64F); // cv::cuda::GpuMat trans_mat33(3, 3, CV_64F); // cv::cuda::GpuMat dst_mat(1080, 1920, CV_8UC4); // for (int i=0;i<3;i++) // for (int j=0;j<3;j++) // trans_mat33.at<double>(i,j)=0.0; // std::cout << trans_mat33 << std::endl; //printf("%d\n", cv::Size(10, 20).width); printf("%s %s\n", argv[0], argv[1]); if (strcmp(argv[1],"1") == 0) { printf("GPU\n"); cv::cuda::warpPerspective(gpu_frame, gpu_frame , trans_mat33, cv::Size(width, height)); gpu_frame.download(frame); } else { printf("CPU\n"); cv::warpPerspective(frame, frame, trans_mat33, cv::Size(width, height)); } // cudaProfilerStop(); //cudaDeviceSynchronize(); imshow("original", frame); //waitKey(1); if(waitKey(1) >= 0) break; } return 0; //cap.release(); } ``` ##### Steps to reproduce `g++ cv_demo_gpu.cpp `pkg-config --cflags --libs opencv` -lcudart -I/usr/local/cuda/targets/aarch64-linux/include -L/usr/local/cuda/targets/aarch64-linux/lib -o cv_gpu`
priority: low,category: gpu/cuda (contrib),incomplete
low
Critical
357,178,426
rust
rustdoc: Improve the navigation experience
In the current situation, users navigates either with links from the overview, or by collapsing all descriptions and searching through what they want. They both have their own problems: ![screenshot_2018-09-05 std option option - rust](https://user-images.githubusercontent.com/12389383/45089271-99be1b00-b146-11e8-9902-37a01fc9ca58.png) And I often resort to "Find in page" which is bad on accuracy. We need a better navigation system, and in either way we should ditch the collapse feature. I have two ways in mind: - Use a right sidebar. Sidebar allows you to collapse things by group not per item. It also has a smaller font size, allowing more items to fit in the screen. - Make the brief link to everything available in the page. Rust pseudocode is easier to read for some people (including me). To compare these two approaches, sidebar is more suitable for continuously navigating items without caring the backstack, while the brief is more like "navigate, read, back, navigate, read, back". Related: #39952
C-enhancement,A-rustdoc-ui,T-rustdoc-frontend
low
Minor
357,207,680
go
x/mobile/app: gobind crash 'app.Run called on thread xxx, but app.init ran on xx'
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.11 darwin/amd64 ### Does this issue reproduce with the latest release? YES. ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="/Users/ntop/tools/go" GOCACHE="/Users/ntop/Library/Caches/go-build" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/ntop/workspace/go" GOPROXY="" GORACE="" GOROOT="/usr/local/go" GOTMPDIR="" GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64" GCCGO="gccgo" CC="clang" CXX="clang++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/t6/8417qy4n2zn3lb370499nrl00000gn/T/go-build892512347=/tmp/go-build -gno-record-gcc-switches -fno-common" ### What did you do? I'm building a Go game for iOS. I use GoMobile's `x/mobile/app` package to write the game, but I didn't use `gomobile build` to build an `.app`. Since `gomobile build` just build a simple iOS app, if I want to use more native features, that's impossible. So I use `gomobile bind` to build a `.framework`, and invoke the 'Start' function in XCode's `main` method. But it will result in the exception - 'gobind app.Run called on thread xxx, but app.init ran on xx'. In the 'Start' function, I did't use any go routines, just call `app.Main()` to start the game. I printed thread-id both in `init` function and the `app.Main()` function, the thread-id is truely different. It seems that the `.framework` built with gomobile will not init package in the same thread as the calling function. ### What did you expect to see? The `.framework` build with `gomobile bind` can work successfully in my iOS project. PS: only code use `x/mobile/app` will crash, because the checking code stay there. ### What did you see instead? The app crashed and print the message as above.
mobile
low
Critical
357,240,823
flutter
Make CurveTween curve a regular parameter
Right now the `CurveTween` constructor looks like this: ```dart /// Creates a curve tween. /// /// The [curve] argument must not be null. CurveTween({ @required this.curve }) : assert(curve != null); ``` Usage currently looks like this: ```dart CurveTween(curve: Curves.easeInOut); ``` There is a single required parameter, and I think it's quite certain that a `CurveTween` needs a `Curve` to function. I propose to make it a regular parameter to make usage easier and a bit more fail-safe: ```dart CurveTween(Curves.easeInOut); ``` If this is approved by the Flutter team, I will create a PR.
c: new feature,framework,a: animation,c: API break,P3,team-framework,triaged-framework
low
Major
357,253,592
rust
edition idioms lints: `unused_extern_crate` false positives
### STR 1. Crates that provide lang items ``` console $ cargo new --bin foo && cd $_ $ cargo add panic-abort # or any other crate only provides a `panic_handler` function $ cat >src/main.rs <<'EOF' #![no_main] #![no_std] extern crate panic_abort; EOF $ # ignore linking; it's not important for this example $ # also set panic to abort to simplify things $ mkdir .cargo $ cat >.cargo/config <<'EOF' [build] rustflags = ["-C", "panic=abort", "-C", "linker=true"] EOF $ cargo build && echo OK OK $ cargo rustc -- -D rust_2018_idioms Compiling foo v0.1.0 (file:///home/japaric/tmp/foo) error: unused extern crate --> src/main.rs:4:1 | 4 | extern crate panic_abort; | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it | = note: `-D unused-extern-crates` implied by `-D rust-2018-idioms` error: aborting due to previous error ``` Removing the `extern crate` as per the suggestion breaks *compilation*: ``` console $ cat src/main.rs ``` ``` rust #![no_main] #![no_std] // extern crate panic_abort; ``` ``` console $ cargo build Compiling foo v0.1.0 (file:///home/japaric/tmp/foo) error: `#[panic_handler]` function required, but not found error: aborting due to previous error ``` 2. Crates that inject symbols dependencies ``` $ git clone https://github.com/rust-embedded/embedonomicon --branch edition-lint-false-positive-do-not-delete $ cd embedonomicon/ci/main/app $ cat src/main.rs ``` ``` rust #![feature(panic_handler)] #![no_std] #![no_main] extern crate rt; use core::panic::PanicInfo; #[no_mangle] pub fn main() -> ! { let _x = 42; loop {} } #[panic_handler] fn panic(_panic: &PanicInfo<'_>) -> ! { loop {} } ``` ``` console $ rustup target add thumbv7m-none-eabi $ cargo build && echo OK OK $ cargo rustc -- -D rust_2018_idioms cargo rustc -- -D rust_2018_idioms Compiling app v0.1.0 (file:///home/japaric/tmp/embedonomicon/ci/main/app) error: unused extern crate --> src/main.rs:4:1 | 4 | extern crate rt; | ^^^^^^^^^^^^^^^^ help: remove it | = note: `-D unused-extern-crates` implied by `-D rust-2018-idioms` error: aborting due to previous error ``` Removing the `extern crate` as suggested breaks *linking*. ``` console $ sed -i '/extern crate/d' src/main.rs $ cargo build error: linking with `rust-lld` failed: exit code: 1 | = note: "rust-lld" "-flavor" "gnu" (..) = note: rust-lld: error: malformed / incomplete vector table ``` The error above is a custom assertion that checks that the binary has the right memory layout. Removing `extern crate rt` produces an invalid (empty) binary. ### Metadata ``` console $ rustc -V rustc 1.30.0-nightly (1c2e17f4e 2018-09-04) ``` --- (2) seems unfixable, or at least very hard to properly fix, to me since it requires knowing the dependencies between symbols and symbol information is only complete / exact after optimization, plus linker scripts can make some symbols required. A good enough fix could be to not warn about crates that expose public, reachable `#[no_mangle]` / `#[export_name]` symbols. In any case, I expect that in practice not many people will encounter this warning. (1) should be fixable and should be fixed. The compiler should be able to determine if a crate contains lang items. This scenario I expect to be much more common since some of us, embedded devs, like to pack `panic_handler`s in crates as that makes it easy to switch between them.
A-lints,T-compiler,C-bug,A-edition-2018
low
Critical
357,300,893
react
Consider stopping auto-adding `px` to number style values (except for a small whitelist)
<!-- Note: if the issue is about documentation or the website, please file it at: https://github.com/reactjs/reactjs.org/issues/new --> **Do you want to request a *feature* or report a *bug*?** A removal of a feature, in a sense. **What is the current behavior?** React automatically adds the `px` suffix for numerical values passed to the `style` prop. As some CSS properties accept unitless values, React maintains a blacklist of properties that shouldn't get `px` auto-appended. The problem is that this solution doesn't scale. It requires us to add more & more properties to the list as CSS specs expand and recently the list grows faster; Flexbox & Grid added quite a few of them. What's more confusing, some of those props would work both with & without the `px` suffix and that changes the meaning (`lineHeight` is suffering from that). Although I'm a React newbie I'm quite familiar with this issue due to being a member of the jQuery Core team. jQuery has the same logic as React here and we keep having to add to the list. We've actually exposed the list at [jQuery.cssNumber](https://api.jquery.com/jQuery.cssNumber/) so that people don't always have to wait for us to add support for a property and do a release. That's why we decided that in jQuery 4 we'll drop the auto-prefixing blacklist and turn to a whitelist that lists only a few most common properties to which we want to auto-append `px` (mostly because they're extremely common and we don't want to break the world too much); we plan to _not_ expand that list unless we missed something really common. You can see the current plan in my PR: https://github.com/jquery/jquery/pull/4055. In particular, see the proposed whitelist in a (visualized) regexp in: https://github.com/jquery/jquery/blob/03e9dba3882868e1ee79f1fb0504326da925644f/src/css/isAutoPx.js. **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Paste the link to your JSFiddle (https://jsfiddle.net/Luktwrdm/) or CodeSandbox (https://codesandbox.io/s/new) example below:** **What is the expected behavior?** I propose that React could do the same thing jQuery is planning to and switch the ever-expanding blacklist of CSS props that shouldn't have the `px` suffix applied to a small whitelist that should have the suffix applied. This topic has been initially described in #13550. **Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?** All browses & OSs. I don't know how old this logic is in React.
Component: DOM,Type: Discussion
low
Critical
357,337,604
TypeScript
JS should allow merging/expando properties on imports
```js // Filename: mod.js export const Ns = function () { } // @Filename: use.js import { Ns } from './mod' Ns.expando = 1 ``` **Expected behavior:** No error, and Ns has property 'expando' **Actual behavior:** Error, 'expando' not found on 'Ns'. This merge shouldn't be allowed in Typescript, but it will work in Javascript, so it should be allowed there.
Suggestion,In Discussion,Domain: JavaScript
low
Critical
357,345,727
TypeScript
Control flow analysis should "work" in unreachable code
**TypeScript Version:** master <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** unreachable throw return narrowing **Code** ```ts function fn() { // TODO: Finish writing this function! return; const h = Math.random() > 0.5 ? 'h' : undefined; if (h) { // Error, wat const a: string = h; } } ``` **Expected behavior:** No error **Actual behavior:** Error - h is possibly undefined We get "bug" reports like this every once in a while, and it's hard to understand why the narrowing just stops working because the code isn't reachable. This also makes it difficult to insert debugging throws/returns earlier in the function. e.g. https://twitter.com/aendrew/status/1037301561062514688 **Playground Link:** http://www.typescriptlang.org/play/#src=function%20fn()%20%7B%0A%20%20%20%20%2F%2F%20Not%20done%20yet%0A%20%20%20%20return%3B%0A%0A%20%20%20%20const%20h%20%3D%20Math.random()%20%3E%200.5%20%3F%20'h'%20%3A%20undefined%3B%0A%20%20%20%20const%20d%20%3D%20(arg%3A%20string)%20%3D%3E%20arg%3B%0A%0A%20%20%20%20if%20(h)%20%7B%0A%20%20%20%20%20%20%20%20const%20a%20%3D%20d(h)%3B%0A%20%20%20%20%7D%0A%7D%0A **Related Issues:** Believe there's one out there somewhere
Bug
medium
Critical
357,357,854
TypeScript
Allow intersection type guards for multiple parameters
## Search Terms type guard multiple parameters ## Suggestion I'd like to write a type guard that takes two parameters and changes the type of both of them. ## Use Cases My specific use case is to try to make the following pattern (somewhat) more type-safe: ```ts class Foo<TFeature, TOther> { // If featureCtor is null, TFeature will never be used. constructor(private readonly featureCtor: { new(): TFeature } | null) { } isFeature(thing: any): thing is TFeature { return !!this.featureCtor && thing instanceof this.featureCtor; } bar(thing: TFeature|TOther) { if (this.isFeature(thing)) { // Type guard should prove that this.featureCtor is not null new this.featureCtor(); } else { // Type guard should prove this const x: TOther = thing; } } } ``` ## Examples isFeature(thing: any, ctor: { new(): TFeature } | null): (thing is TFeature)&(ctor is { new(): TFeature }) { return !!this.featureCtor && thing instanceof this.featureCtor; } It would be even nicer to allow type guards to operate on readonly fields, so I wouldn't need to pass `this.featureCtor` as a parameter. I also tried constructor(private readonly featureCtor: TFeature extends never ? null : { new(): TFeature }) { } But that didn't work. ## Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript / JavaScript code * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x] This could be implemented without emitting different JS based on the types of the expressions * [x] This isn't a runtime feature (e.g. new expression-level syntax)
Suggestion,Awaiting More Feedback
high
Critical
357,409,431
go
proposal: spec: the #id/catch error model, a rethink of check/handle
_Please __do not down-vote__ this post if you are against any new syntax for error handling. Instead, vote in the first comment below. Thanks!_ Having heard users' frustrations with Go1 error handling, the Go team has committed to delivering a new method. Ideally, a solution would stem from a familiar language. The [_Go2 Draft Design_](https://go.googlesource.com/proposal/+/master/design/go2draft-error-handling.md) is fine for wrapping errors with context, and returning them succinctly. But its feel is novel, and it has significant drawbacks, discussed in [_Golang, how dare you handle my checks!_](https://medium.com/@mnmnotmail/golang-how-dare-you-handle-my-checks-d5485f991289) Besides returning errors, Go programs commonly: a) handle an error and continue the function that received it, and b) have two or more kinds of recurring error handling in a single function, such as: ``` { log.Println(err) } { debug.PrintStack(); log.Fatal(err) } { if err == io.EOF { break } } { conn.Write([]byte("oops: " + err.Error())) } // e.g. a network message processor ``` There is indeed a long list of [_Requirements to Consider for Go2 Error Handling_](https://gist.github.com/networkimprov/961c9caa2631ad3b95413f7d44a2c98a). The `check/handle` scheme accommodates a tiny subset of these, necessitating an awkward mix of Go1 & Go2 idioms, e.g. ``` handle err { return fmt.Errorf(..., err) } v, err := f() if err != nil { if isBad(err) { check err // means 'throw' } // recover } ``` Herein is a widely applicable approach to error handling, leveraging the C-family catch block. For the record, the author is grateful that Go does not provide C++ style exceptions, and this is not a plot to sneak them into the language through a side door :-) ### The `#id/catch` Error Model Let a _catch identifier_ (catch-id) e.g. `#err` select a named handler. A single catch-id may appear in any assignment. A handler is known by its parameter name; the parameter can be of any type. A handler follows the catch-id(s) that trigger it and starts with `catch <parameter>`. Catch-ids are not variables and handler parameters are only visible within handlers, so there's no re-declaration of error variables. These are not unique ideas. At last count, [17 posts on the feedback wiki](#named-handlers-are-popular) suggest various ways to define and invoke named handlers, and 13 posts suggest invocation of handlers using assignment syntax. ``` func (db *Db) GetX(data []byte) (int, error) { n, #return := db.name() // return our own errors f, #err := os.Open(n) // this file's presence is optional defer f.Close() _, #err = f.Seek(42, io.SeekStart) l, #err := f.Read(data) #return = db.process(data) catch err error { // handle OS errors here if !os.IsNotExist(err) { log.Fatal(err) } log.Println(n, "not found; proceding") } #return = db.index(data) // executes unless catch exits return l, nil } ``` Several points are unresolved, see [Open Questions](#open-questions) below. Catch-id syntax is among them; `#id` is reminiscent of the URL form for _goto id_, but `?id`, `@id`, and others are viable. __Advantages:__ similarity to established try/catch method (but without a try-block); clarity as to which handler is invoked for a given statement; certain statements may be skipped after an error occurs; handlers can return or continue the function. _Please help clarify (or fix) this proposal sketch, and describe your use cases for its features._ <h3 id="feature-summary">Feature Summary</h3> __Draft-2, 2018-09-19.__ Discussion following [this comment](https://github.com/golang/go/issues/27519#issuecomment-422892815) below pertains to this draft. These features meet a large subset of the [_Requirements to Consider for Go 2 Error Handling_](https://gist.github.com/networkimprov/961c9caa2631ad3b95413f7d44a2c98a). We can select one of several distinct handlers: ``` func f() error { v1, #fat := fatalIfError() // a non-zero value for #id triggers corresponding catch v2, #wrt := writeIfError() // predefined handlers v3, #_ := ignoreIfError() // or log the error in debug mode v4, #r := returnIfError() // aka #return v5, #p := panicIfError() // aka #panic catch fat { log.Fatal(fat) } // inferred parameter type catch wrt error { conn.Write(wrt.Error()) } } ``` We can invoke a handler defined at package level (thanks @8lall0): ``` func f() error { #pkg = x() } catch pkg error { // package-level handler; explicit type log.Println(pkg) return pkg // return signature must match function invoking pkg handler } ``` We can specify a type for implicit type assertion: ``` f := func() error { return MyError{} } #err = f() catch err MyError { ... } ``` We can skip statements on error and continue after the handler: ``` #err = f() x(1) // not called on error catch err { log.Println(err) } x(2) // always called ``` We can forward to a different handler (creates an explicit handler chain): ``` #ret = x() if ... { #err = f() catch err { if ... { #ret = err } // invoke alternate handler #ret = fmt.Errorf(..., err) // invoke handler with alternate input } } catch ret { ... } ``` We can reuse catch-ids: ``` #err = f(1) catch err { ... } #err = f(2) catch err { ... } ``` We can nest catch blocks: ``` #era = f(1) catch era { #erb = f(2) catch erb { ... } // cannot use 'era'; shadowing in catch disallowed } ``` We can see everything from the scope where a handler is defined, like closure functions: ``` v1 := 1 if t { v2 := 2 #err = f() catch err { x(v1, v2) } } ``` We can still use Go1 error handling: ``` v1, err := x() // OK v2, err := y() // but re-declaration might be abolished! ``` <h3 id="open-questions">Open Questions</h3> - What catch-id syntax? `#id`, `?id`, `@id`, `id!`, `$id`, ... What style for predefined handlers? `#r`, `#p`, `#_`, `#return`, `#panic`, `#nil`, ... - What handler definition syntax? `catch id [type]`, `catch id(v type)`, `id: catch v [type]`, ... Infer parameter from previous stmt? `#err = f(); catch { log.Println(err) }` - Invoke handler when ok=false for `v, #ok := m[k]`|`x.(T)`|`<-c`, etc? Pass a type `error` with context? `v, #err := m[k]; catch { log.Println(err) }` - Treat parameter as const? `catch err { err = nil } // compiler complains` Lets forwarding skip test for nil: `catch err { #ret = err }` - Require `#id` for return values of type `error`? #20803 - Provide `check` functionality with `f#id()`? e.g. `x(f1#_(), f2#err())` If so, disallow nesting? `x(f1#err(f2#err()))` Allow position selector? `f#id.0()` tests first return value - Provide more context to package-level handlers, e.g. caller name, arguments? `catch (pkg error, caller string) { ... }` - Allow handlers in defer stack? ``` defer last() // skip if handler returns defer catch errd { ... } defer next#errd() // skip if first() invokes handler defer first#errd() ``` - Allow multiple handler arguments? ``` #val, #err = f() // return values assignable to catch parameter types catch (val T, err error) { ... } // either parameter could be non-zero ``` ### Disallowed Constructs Declaring or reading a catch-id: ``` var #err error // compiler complains #err = f() if #err != nil { ... } // compiler complains catch err { ... } ``` Multiple catch-ids per statement: ``` #val, #err = f() // compiler complains catch val { ... } // if f() returns two non-zero values, which handler is executed? catch err { ... } ``` Shadowing of local variables in handlers: ``` func f() { if t { err := 2 #err = f() // OK; #err handler can't see this scope } pkg := 1 // OK; #pkg handler (see above) can't see local variables err := 1 #err = f() catch err { return err } // compiler complains; err==1 is shadowed } ``` Self-invocation: ``` #err = f(1) catch err { #err = f(2) // compiler complains } #err = f(3) catch err { ... } ``` Unused handlers: ``` catch err { ... } // compiler complains #err = f() catch err { ... } #ret = f() catch err { return err } // compiler complains catch ret { ... } catch ret { return ret } // compiler complains ``` <h3 id="discarded-ideas">Discarded Ideas</h3> Chain handlers with same catch-id in related scopes implicitly, as in the Draft Design: ``` func f() { v, #fat := x() if v != nice { // new scope #fat = y(&v) catch fat { // invoked 1st if ... { #fat = nil } // can skip other handlers in chain } // no return/exit, continue along chain } catch fat { log.Fatal(fat) } // invoked 2nd } ``` <h3 id="changelog">Changelog</h3> 2018-09-19 draft-2 ([discussion below](https://github.com/golang/go/issues/27519#issuecomment-422892815)) a) Move implicit handler chain to new section "Discarded Ideas". b) Make continuing after catch the default behavior. c) Document catch-id reuse and nested catch block. d) Disallow unused handlers (was "contiguous handlers with same catch-id") and self-invocation. e) Add `#_` predefined handler to ignore or log input. f) Add implicit type assertion. <h3 id="why-not-checkhandle">Why Not <code>check/handle</code>?</h3> Please read [_Golang, how dare you handle my checks!_](https://medium.com/@mnmnotmail/golang-how-dare-you-handle-my-checks-d5485f991289) for a discussion of each of the following points. - No support for multiple distinct handlers. - The last-in-first-out `handle` chain cannot continue a function. - `check` is specific to type `error` and the last return value. - The per-call unary `check` operator can foster unreadable constructions. - The default handler makes it trivial to return errors without context. - Handlers appear before the calls that trigger them, not in the order of operations. - The `handle` chain is inapparent; one must parse a function by eye to discover it. Also, there is relatively little support for the draft design on the feedback wiki. <h3 id="named-handlers-are-popular">Named Handlers Are Popular!</h3> At last count, roughly 1/3rd of posts on the [_feedback wiki_](https://github.com/golang/go/wiki/Go2ErrorHandlingFeedback) suggest ways to select one of several handlers: 1. @didenko [github](https://didenko.github.io/grab/grab_worth_it_0.1.1.html) 1. @forstmeier [gist](https://gist.github.com/forstmeier/b6c6a6d2f6f2f72a81a076322959c959) 1. @mcluseau [gist](https://gist.github.com/mcluseau/1c20c3973fa3acb544d0505637be8d67) 1. @the-gigi [gist](https://gist.github.com/the-gigi/3c1acfc521d7991309eec140f40ccc2b) 1. @PeterRK [gist](https://gist.github.com/PeterRK/4f59579c1162cdbc28086f6b5f7b4fa2) 1. @marlonche [gist](https://gist.github.com/marlonche/4e5d4e5aec0555958ec1f181991325f6) 1. @alnkapa [github](https://github.com/alnkapa/Go2ErrorHandlingFeedback/blob/master/README.md) 1. @pdk [medium](https://medium.com/@phlatphrog/handling-more-than-just-errors-in-go-f97c5aa2eac4) 1. @gregwebs [gist](https://gist.github.com/gregwebs/02479eeef8082cd199d9e6461cd1dab3) 1. @gooid [github](https://github.com/gooid/gonotes/blob/master/inline_style_error_handle.md) 1. @spakin [gist](https://gist.github.com/spakin/86ea86ca48aefc78b672636914f4fc23) 1. @morikuni [gist](https://gist.github.com/morikuni/bbe4b2b0384507b42e6a79d4eca5fc61) 1. @AndrewWPhillips [blogspot](http://devmethodologies.blogspot.com/2018/10/go-error-handling-using-closures.html) 1. @bserdar [gist](https://gist.github.com/bserdar/4c728f85ca30de25a433e84ad5a065a1) 1. @martinrode [medium](https://medium.com/@marode/the-return-of-the-return-278b8ae261ab) 1. @dpremus [gist](https://gist.github.com/dpremus/3b141157e7e47418ca6ccb1fc0210fc7) 1. @networkimprov _this page_ And the following posts suggest ways to invoke a handler with assignment syntax: 1. @oktalz [gist](https://gist.github.com/oktalz/f04f36a3c2f61af22c7a6e06095d18eb) 1. @pborman [gist](https://gist.github.com/pborman/c69e79690d86dfc5c371f096be22930c) 1. @kd6ify [blog](http://blog.oldcloudguy.com/2019/04/18/error-handling-in-go-2-draft/) 1. @rockmenjack [github](https://github.com/rockmenjack/go-2-proposals/blob/master/error_handling.md) 1. @the-gigi [gist](https://gist.github.com/the-gigi/3c1acfc521d7991309eec140f40ccc2b) 1. @8lall0 [gist](https://gist.github.com/8lall0/cb43e1fa4aae42bc709b138bda02284e) 1. @dpremus [gist](https://gist.github.com/dpremus/3b141157e7e47418ca6ccb1fc0210fc7) 1. @bserdar [gist](https://gist.github.com/bserdar/4c728f85ca30de25a433e84ad5a065a1) 1. @mcluseau [gist](https://gist.github.com/mcluseau/1c20c3973fa3acb544d0505637be8d67) 1. @didenko [github](https://didenko.github.io/grab/grab_worth_it_0.1.1.html) 1. @gooid [github](https://github.com/gooid/gonotes/blob/master/inline_style_error_handle.md) 1. @Kiura [gist](https://gist.github.com/Kiura/4826db047e22b7720d378ac9ac642027) 1. @networkimprov _this page_ /cc @rsc @mpvl @griesemer @ianlancetaylor @8lall0 @sdwarwick @kalexmills Thanks for your consideration, Liam Breck Menlo Park, CA, USA
LanguageChange,Proposal,error-handling,LanguageChangeReview
high
Critical
357,416,295
TypeScript
noImplicitAny+prototype assignment causes incorrect error on prototype methods
Note that this is only true with noImplicitAny on. The bug does not manifest with it off. This is a regression in 3.1. It does not manifest in 3.0. ```js // @noImplicitAny: true /** @constructor */ var Multimap = function() { this._map = {}; }; Multimap.prototype = { x() { } } Multimap.prototype.lol = function() { } var mm = new Multimap(); mm._map mm.x mm.lol ``` **Expected behavior:** No error on `Multimap.prototype.lol`, and `_map`, `x` and `lol` are properties on Multimap. **Actual behavior:** Error: 'lol' does not exist on type '{ x(): void }'. But all 3 **are** properties on Multimap.
Bug,Domain: JavaScript
low
Critical
357,426,284
flutter
`testwidgets()` in widget_tester.dart does not accept a string for skip parameter
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.io/ * https://docs.flutter.io/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have found a bug or if our documentation doesn't have an answer to what you're looking for, then fill our the template below. Please read our guide to filing a bug first: https://flutter.io/bug-reports/ --> ## Steps to Reproduce 1. Write a test you want to skip 2. Try to skip the test, using a String for the reason for skipping 3. Error: The argument type 'String' can't be assigned to the parameter type 'bool. ![screen shot 2018-09-05 at 3 06 11 pm](https://user-images.githubusercontent.com/3046029/45123975-75017d80-b11d-11e8-990a-77ce417517aa.png) From `widget_tester.dart`: ``` @isTest void testWidgets(String description, WidgetTesterCallback callback, { bool skip = false, test_package.Timeout timeout }) { final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized(); ... ``` I believe the line: `bool skip = false,` should be: **`dynamic skip = false,`** Making this change allows me to skip using a string. <!-- Please tell us exactly how to reproduce the problem you are running into. Please attach a small application (ideally just one main.dart file) that reproduces the problem. You could use https://gist.github.com/ for this. If the problem is with your application's rendering, then please attach a screenshot and explain what the problem is. --> ## Logs <!-- Run your application with `flutter run --verbose` and attach all the log output below between the lines with the backticks. If there is an exception, please see if the error message includes enough information to explain how to solve the issue. --> ``` n/a ``` <!-- Run `flutter analyze` and attach any output of that command below. If there are any analysis errors, try resolving them before filing this issue. --> ``` No issues found! (ran in 2.7s) ``` <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` jjerome:~ jmj$ flutter doctor -v [βœ“] Flutter (Channel beta, v0.7.3, on Mac OS X 10.13.6 17G65, locale en-US) β€’ Flutter version 0.7.3 at /Users/jmj/Documents/Development/flutter β€’ Framework revision 3b309bda07 (8 days ago), 2018-08-28 12:39:24 -0700 β€’ Engine revision af42b6dc95 β€’ Dart version 2.1.0-dev.1.0.flutter-ccb16f7282 [βœ“] Android toolchain - develop for Android devices (Android SDK 27.0.3) β€’ Android SDK at /Users/jmj/Library/Android/sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 27.0.3 β€’ ANDROID_HOME = /Users/jmj/Library/Android/sdk β€’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) β€’ All Android licenses accepted. [βœ“] iOS toolchain - develop for iOS devices (Xcode 9.4.1) β€’ Xcode at /Applications/Xcode.app/Contents/Developer β€’ Xcode 9.4.1, Build version 9F2000 β€’ ios-deploy 1.9.2 β€’ CocoaPods version 1.5.3 [βœ“] Android Studio (version 3.1) β€’ Android Studio at /Applications/Android Studio.app/Contents β€’ Flutter plugin version 28.0.1 β€’ Dart plugin version 173.4700 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) [!] IntelliJ IDEA Community Edition (version 2018.1.3) β€’ IntelliJ at /Applications/IntelliJ IDEA CE.app βœ— Flutter plugin not installed; this adds Flutter specific functionality. βœ— Dart plugin not installed; this adds Dart specific functionality. β€’ For information about installing plugins, see https://flutter.io/intellij-setup/#installing-the-plugins [βœ“] Connected devices (1 available) β€’ Android SDK built for x86 β€’ emulator-5554 β€’ android-x86 β€’ Android 9 (API 28) (emulator) ! Doctor found issues in 1 category. ```
a: tests,framework,c: proposal,P3,team-framework,triaged-framework
low
Critical
357,429,596
rust
Do not apply `#[macro_use]` to implicitly injected `extern crate std;`, use standard library prelude instead
Macros like `vec` or `println` are currently automatically available to user code through injected standard library ``` #[macro_use] extern crate std; ``` `#[macro_use]` puts all the macro names into macro prelude, so they are available in inner modules without additional imports. It would be good to avoid this, especially given that `#[macro_use]` is going to be gradually deprecated. We have analogous way to put things into prelude for non-macro namespaces - standard library prelude `std::prelude::v1`, all stable library macros can be reexported through it instead of `#[macro_use]` in backward-compatible way. Undesirable unstable macros like `select` can be removed from prelude in the process. The only issue is that several imports for several macros (`env`, `vec`, `panic`) would also import corresponding modules from the standard library (`std::env`, `std::vec`, `std::panic`) and put them into prelude. This is certainly not desirable. The solution is to come up with some way for a `use` item to import the name only in the single selected namespace, something like ```rust use a::b in type; use a::b in macro; use a::b in value; ``` Alternatively, this can be done with [hacks](https://github.com/rust-lang/rust/issues/36837) for cross-crate scenarios (stdlib prelude is indeed a cross-crate scenario). (All of this is applicable to libcore as well.)
A-resolve,T-libs-api
low
Minor
357,454,753
vscode
new settings UI: possible to undo a setting change?
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> when one accidentally clicked some where in the new settings UI, thus made an unexpected change, allow user to undo that change, by pressing ctrl-z or cmd-z
feature-request,settings-editor,undo-redo
low
Minor
357,457,538
flutter
Adding some plugins to a Flutter module causes the whole app to fail to build
## Steps to Reproduce 1. Check out https://github.com/mjohnsullivan/dof 2. Build with Android Studio, see that everything runs as expected. 3. Edit flutter_dof/pubspec.yaml to add `fluwx: ^0.1.3` in the `dependencies` section. 4. run `flutter packages get` while standing in the flutter_dof directory. 5. Attempt to run the Android program in Android Studio. Cry. (Kidding. Actually you'll see `Error:Failed to notify project evaluation listener.`) Now, technically to *use* this plugin I need to make some changes to the build.gradle files and such. You can see those changes [here](https://github.com/efortuna/insta_flutter/commit/82f533177fa63e8e8fb1535a0ae2b44788aef06c) and [here](https://github.com/efortuna/insta_flutter/commit/0791817024dc70a3768c3aba3961887305f4c61d), but that shouldn't matter. I think adding a dependency, regardless of whether it's used or not shouldn't prevent me from building the app. I suspect other plugins may cause this behavior, but I haven't tested others yet. <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` [βœ“] Flutter (Channel master, v0.7.6-pre.56, on Linux, locale en_US.UTF-8) β€’ Flutter version 0.7.6-pre.56 at /usr/local/google/home/efortuna/googleio/flutter β€’ Framework revision 409baff3ac (4 hours ago), 2018-09-05 21:31:29 +0100 β€’ Engine revision de4c7a53f2 β€’ Dart version 2.1.0-dev.3.0.flutter-760a9690c2 [βœ“] Android toolchain - develop for Android devices (Android SDK 27.0.3) β€’ Android SDK at /usr/local/google/home/efortuna/Android/Sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 27.0.3 β€’ Java binary at: /opt/android-studio-3.0/jre/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) β€’ All Android licenses accepted. [βœ“] Android Studio (version 3.0) β€’ Android Studio at /opt/android-studio-3.0 β€’ Flutter plugin version 23.2.1 β€’ Dart plugin version 171.4424 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [βœ“] IntelliJ IDEA Community Edition (version 2018.1) β€’ IntelliJ at /opt/intellij-ce-2018.1 β€’ Flutter plugin version 27.0.2 β€’ Dart plugin version 181.4892.1 [βœ“] IntelliJ IDEA Community Edition (version 2017.3) β€’ IntelliJ at /opt/intellij-ce-2017.3 β€’ Flutter plugin version 26.0.1 β€’ Dart plugin version 173.4700 [βœ“] VS Code (version 1.25.1) β€’ VS Code at /usr/share/code β€’ Flutter extension version 2.18.0 [βœ“] Connected devices (1 available) β€’ Pixel 2 XL β€’ 711KPAE0891080 β€’ android-arm64 β€’ Android 8.1.0 (API 27) β€’ No issues found! ```
tool,t: gradle,P2,a: plugins,team-tool,triaged-tool
low
Critical
357,509,406
vscode
Settings editor not showing inherited values in workspace scope
- VSCode Version: 1.27 - OS Version: Windows 10 1803 Steps to Reproduce: 1. Set some value to true in your user settings, like editor.formatOnSave: ![image](https://user-images.githubusercontent.com/8000820/45138329-94acaa80-b1de-11e8-8fa3-724d55bce045.png) 2. Open settings editor, switch to Workspace Settings, you will see the item is unchecked but showed (modified by user): ![image](https://user-images.githubusercontent.com/8000820/45138344-9d9d7c00-b1de-11e8-9de8-0f3c1b2ada4f.png) 3. If you want to set editor.formatOnSave to false in this workspace, there's no way to achieve this. If you check & uncheck the item, there will only be an empty settings.json file in .vscode folder: ![image](https://user-images.githubusercontent.com/8000820/45138389-cd4c8400-b1de-11e8-840a-08a1ad4a8167.png) Does this issue occur when all extensions are disabled?: Yes
feature-request,settings-editor
high
Critical
357,509,672
pytorch
Why does DistributedDataSampler not use default RNG?
Is there any reason that we have to use `set_epoch` method to set a new seed? If we don't call it, the order for each epoch will be **the same**! But we don't document `set_epoch` anywhere! cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @apaszke
oncall: distributed,triaged
low
Minor
357,513,449
godot
get_class() and is_class() not returning class_name
**v3.1.alpha.custom_build.5307043** The new `class_name` keyword doesn't affect the results of the methods for `get_class()` and `is_class()`. I noticed this earlier when encountering https://github.com/godotengine/godot/issues/21461, and it feels like maybe it might have been overlooked. Not sure if it falls under bug or a feature request, or if maybe its even intentional and required. It would be very useful to have these methods return the custom class types in certain situations.
enhancement,discussion,topic:core,topic:gdscript,confirmed
high
Critical
357,557,843
flutter
Race in VideoPlayer initialization
Video player widget is not sometimes displayed in an application that essentially follows [the example code](https://github.com/flutter/plugins/tree/master/packages/video_player#example) for VideoPlayer plugin. Sequence of events: 1. VideoPlayerController is created asynchronously. 2. The widgets builds. But since the controller has not yet finished asynchronous initialization at this point, VideoPlayer widget [renders to nothing](https://github.com/flutter/plugins/blob/f98d0d010ea38bb68f2d39afc8c2be3a610b8b97/packages/video_player/lib/video_player.dart#L430). 4. VideoPlayerController finishes initialization, but VideoPlayer wants to hear nothing of it. It keeps showing a blank Container. Unfortunately, making VideoPlayer stateful and making it rebuild itself once the controller becomes initialized doesn't immediately help. Sequence of events: 1. Dart VideoPlayerController is created: https://github.com/flutter/plugins/tree/master/packages/video_player#example 2. It [calls](https://github.com/flutter/plugins/blob/f98d0d010ea38bb68f2d39afc8c2be3a610b8b97/packages/video_player/lib/video_player.dart#L203) plugin "create" method asynchronously. 3. VideoPlayerPlugin [creates](https://github.com/flutter/plugins/blob/f98d0d010ea38bb68f2d39afc8c2be3a610b8b97/packages/video_player/android/src/main/java/io/flutter/plugins/videoplayer/VideoPlayerPlugin.java#L98) ExoPlayer. 4. Exoplayer initializes quickly and calls [onPlayerStateChanged](https://github.com/flutter/plugins/blob/f98d0d010ea38bb68f2d39afc8c2be3a610b8b97/packages/video_player/android/src/main/java/io/flutter/plugins/videoplayer/VideoPlayerPlugin.java#L161) 5. VideoPlayerPlugin tries to send initialized event to Dart, but there is [nothing listening](https://github.com/flutter/plugins/blob/f98d0d010ea38bb68f2d39afc8c2be3a610b8b97/packages/video_player/android/src/main/java/io/flutter/plugins/videoplayer/VideoPlayerPlugin.java#L215). 6. Dart VideoPlayerController [starts listening](https://github.com/flutter/plugins/blob/f98d0d010ea38bb68f2d39afc8c2be3a610b8b97/packages/video_player/lib/video_player.dart#L257) to the events on the channel. But it's too late. It missed the initialized event. So... 8. The listener is not invoked and VideoPlayer is never rebuilt with the correct texture.
platform-ios,p: video_player,package,P2,team-ios,triaged-ios
low
Major
357,668,927
opencv
Is it possible to make the class `GCGraph` available outside GrabCut?
This is a feature request, not a bug. ##### System information (version) - OpenCV =>3.3.1 - Operating System / Platform => Windows - Compiler => MSVC 1914 ##### Detailed description I'd like to use the max-flow/min-cut algorithm, which is used in GrabCut. It would be nice, if we could move `gcgraph.hpp` from the source directory to the header files. This would make the class `GCGraph` and its function `maxflow()` available outside GrabCut. ##### Steps to reproduce (not applicable)
feature,category: imgproc
low
Critical
357,672,787
godot
Objects are clickable when the splash screen is visible
**Godot version:** v3.1.alpha.calinou.f50dd68 **OS/device including version:** windows 10 x64 **Issue description:** Items (buttons & objects) are clickable and interact-able when the splash screen is visible. it looks like the scene is active but its hidden with the splash image. there is a turnaround for this which is: pause scene on _ready method and unpause after one second. **Steps to produce:** add button to scene >> add function to the button (when click change color/text/...) >>run the scene >>when the splash screen shows click on the place where the button is located >> the button will be clicked.
bug,topic:core,confirmed
low
Minor
357,724,755
flutter
Flutter memory leak just navigating two pages
I just run app in `Xcode` and I found the memory leak. What I did was basically tap the `IconButton` and navigate to the next page and `pop` to first page like code below. Here is images from `Xcode` **Beginning** ![2018-09-07 0 57 38](https://user-images.githubusercontent.com/41893584/45169945-ad967980-b239-11e8-92ef-f1003e59a28d.png) **After couple of minutes of navigate back and forth** ![2018-09-07 1 00 15](https://user-images.githubusercontent.com/41893584/45170017-d7e83700-b239-11e8-953b-2194d6fa9e25.png) **Code:** ```dart void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( debugShowCheckedModeBanner: false, title: 'Welcome to Flutter', home: new MyHomePage(), ); } } class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => new _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( actions: <Widget>[ new IconButton( icon: new Icon(Icons.whatshot, color: Colors.red), onPressed: () { Navigator.of(context).push(MaterialPageRoute(builder: (context) => ABC())); }, ) ], ), body: new Center( child: new Text('Welcome'), ), ); } } class ABC extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar(), body: new Center( child: new Text('ABC'), ), ); } } ``` Is this because I ran in `Xcode` or something I missed?
framework,c: performance,P2,team-framework,triaged-framework
low
Critical
357,765,683
go
cmd/compile: pointers passed to cgo escape to the heap
In https://go-review.googlesource.com/c/go/+/133836 I work around an extra allocation by moving `outLen` (a simple `size_t`, passed by pointer to a C function) to the C stack. I initially thought escaping was unavoidable across the cgo boundary, but in fact cgo has strict rules about not retaining any pointers to Go memory, so I'm not sure why that variable needed to escape. /cc @ianlancetaylor @dr2chase
NeedsInvestigation,compiler/runtime
low
Major
357,773,117
pytorch
Better user experience for using Generator object
Not a comprehensive list, but we should: - [x] Document `torch.Generator` better, e.g., it's only CPU RNG, examples, ctor, etc. - [x] Provide CUDA equivalent of `torch.Generator`. - [x] Provide better transformation between `Generator` and `rng_state`. - [ ] Document that `torch.manual_seed` seeds **all** CUDA devices. - [ ] Support `generator=` keyword argument in `torch.nn.init.*` (at least the stochastic ones). - [ ] Support `generator=` keyword argument for distributions classes (?)
todo,module: docs,module: cuda,triaged,module: random
medium
Major
357,775,710
realworld
Making RealWorld β€œrealer” (2.0?)
This past year I’ve been trying out lots of different front end libraries, and was very happy to discover this project and the community around it. I’ve been thinking about posting this comment for a while, as I’ve noticed these libraries have a fundamental design difference that RealWorld in its current form doesn’t account for: modularity and reuse. It seems front end libraries fall into two categories - they either support some kind of architecture for modular reuse (often a stateful component concept) or they don’t. The Conduit front end, per the current spec, does not present any use-case for any kind of UI control with any internal/accidental state - and while that may be realistic for some simple apps, in my experience, it isn’t enough for larger, more complex apps. Almost every real-world (duh) app features some kind of recurring UI control that has some kind of state that’s only relevant while the control is on-screen. Let me give a couple of examples to clarify what I’m talking about. My favorite example is a drop-down date-picker. It has the selected date state, which is relevant to the application, and therefore typically bound to the application state rather than stored internally in the control instance. But it also has state indicating whether the control is currently open, which month is currently showing, and so on - I refer to this state as accidental, because it is typically of no relevance to the application, and it’s only relevant while the control is visible. Another example is an auto-complete input. It has the selected value, which is relevant to the application. But also may have an XHR instance, a list of values, the current cursor position in the list, and so on - all of which are accidental, irrelevant to the application, and relevant only while it’s displayed. It’s not that these kinds of controls can’t be implemented with stateless components/views, they can of course - but the application will need to maintain all this irrelevant state somewhere, and will need to manually keep track of visible controls etc. so that, for example, switching to a different tab in the UI correctly clears the state of, say, a date-picker that is currently open, since the user would likely find it confusing to return to a previous tab and find a date-picker (that they didn’t just click on) already open. Implementing all this state management and wiring can sometimes be difficult in front-end libraries that don’t provide any kind of concept for modular reuse - sometimes near impossible. Almost every major React, Vue or Angular project uses either third-party or first-party components/controls that have accidental state, so it seems pretty relevant, I think. Something to think about for v2.0 maybe?
discussion
medium
Critical
357,798,219
godot
Editor will auto-focus on script when error happens, which causes silly things to appear
Consider this: you have script which (partially) might look like this: ``` if player.position.x > position.x and player.health < 8: do_something() ``` This is, say, enemy script. You now run your scene, go right and press Z to jump over enemy. BUT! Turns out player doesn't have health property. Your script now looks like this: ``` zzzzzzzzzzzzzzzzzzzif player.position.x > position.x and player.health < 8: do_something() ``` That's because Godot complained about the lack of property and tried to be useful by focusing your editor on that particular line. It didn't predict though that you are in the middle of jumping, still holding jump key (Z), so when your focus jumps on script editor your Z will now appear in the script. Bonus if you have two monitors and don't immediately notice the issue. Believe me, it happened enough times for me to create this issue >.> **Minimal reproduction project:** [TestProject.zip](https://github.com/godotengine/godot/files/2358530/TestProject.zip) Just run it and hold Z.
enhancement,discussion,topic:editor,confirmed,usability
medium
Critical
357,810,850
godot
Changing method's name with autocompletion creates extra parentheses
Simple example, you have this code: ![image](https://user-images.githubusercontent.com/2223172/45182582-0823db80-b222-11e8-8e32-24ea61b172a1.png) You decide you want to use `physics_process()`: ![image](https://user-images.githubusercontent.com/2223172/45182609-1ffb5f80-b222-11e8-8058-9b760bca5673.png) This happens: ![image](https://user-images.githubusercontent.com/2223172/45182629-2d184e80-b222-11e8-85c3-84923ed22479.png) Autocompletion shouldn't put anything after method name if it already contains opening parenthesis. Stuff like this happens too: ![image](https://user-images.githubusercontent.com/2223172/45182841-b29bfe80-b222-11e8-8e3a-741d9bd696e9.png) (when renaming func1 call to another one)
bug,topic:editor,confirmed,usability
low
Minor
357,822,330
TypeScript
Computing constraint of conditional type by replacing contravariant infer variables with their constraints is unsound
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** master (8f654f0) <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** conditional type assignability assignable constraint contravariant infer variable parameter unsound **Code** ```ts type Foo<A> = [A] extends [[infer B]] ? (arg: B) => void : never; function fortyTwo<A>(x: Foo<A>) { x(42); } fortyTwo<[string]>((arg: string) => console.log(arg.slice())); ``` **Expected behavior:** Compile error on `x(42)`. **Actual behavior:** Successful compilation and runtime error. **Playground Link:** [link](https://www.typescriptlang.org/play/#src=type%20Foo2%3CA%3E%20%3D%20%5BA%5D%20extends%20%5B%5Binfer%20B%5D%5D%20%3F%20(arg%3A%20B)%20%3D%3E%20void%20%3A%20never%3B%0D%0Afunction%20fortyTwo%3CA%3E(x%3A%20Foo2%3CA%3E)%20%7B%20x(42)%3B%20%7D%0D%0AfortyTwo%3C%5Bstring%5D%3E((arg%3A%20string)%20%3D%3E%20console.log(arg.slice()))%3B%0D%0A) **Related Issues:** #26933
Bug
low
Critical
357,825,900
every-programmer-should-know
Making your own compiler
I think that will be a nice topic to add to the list. Making your own compiler really helps you understanding how they work.
Needs some ❀️,good first issue
low
Major
357,871,883
pytorch
caffe2 failed to build from source
I'm trying to build caffe2 from source, but got stuck on this error. Any help would be appreciated! Building wheel torch-0.5.0a0+49231ab running install running build_deps Building in Release mode -- Need to define long as a separate typeid. -- std::exception_ptr is supported. -- NUMA is disabled -- Turning off deprecation warning due to glog. -- Current compiler supports avx2 extention. Will build perfkernels. -- Building using own protobuf under third_party per request. -- Use custom protobuf build. -- Caffe2 protobuf include directory: $<BUILD_INTERFACE:/home/qike/pytorch/third_party/protobuf/src>$<INSTALL_INTERFACE:include> -- The BLAS backend of choice:MKL -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl - guide - pthread - m] -- Library mkl: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl - guide - pthread - m] -- Library mkl: not found -- Brace yourself, we are building NNPACK -- Found PythonInterp: /usr/bin/python (found version "2.7.6") -- Found lmdb (include: /usr/include, library: /usr/lib/i386-linux-gnu/liblmdb.so) -- Found LevelDB (include: /usr/include, library: /usr/lib/i386-linux-gnu/libleveldb.so) -- Found Snappy (include: /usr/include, library: /usr/lib/libsnappy.so) -- OpenCV found (/usr/share/OpenCV) -- Using third party subdirectory Eigen. -- Setting Python's include dir to /usr/include/python2.7 from distutils.sysconfig -- Setting Python's library to /usr/lib/python2.7 -- Found PythonInterp: /usr/bin/python (found suitable version "2.7.6", minimum required is "2.7") -- NumPy ver. 1.15.1 found (include: /home/qike/.local/lib/python2.7/site-packages/numpy/core/include) -- Could NOT find pybind11 (missing: pybind11_INCLUDE_DIR) -- MPI support found -- MPI compile flags: -pthread -- MPI include path: /usr/lib/openmpi/include/openmpi/usr/lib/openmpi/include -- MPI LINK flags path: -L/usr/lib/openmpi/lib -pthread -- MPI libraries: /usr/lib/libmpi_cxx.so/usr/lib/libmpi.so/usr/lib/i386-linux-gnu/libdl.so/usr/lib/i386-linux-gnu/libhwloc.so -- -- ******** Summary ******** -- CMake version : 3.11.2 -- CMake command : /usr/local/bin/cmake -- System : Linux -- C++ compiler : /usr/bin/c++ -- C++ compiler version : 6.4.0 -- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -- Build type : Release -- Compile definitions : -- CMAKE_PREFIX_PATH : /usr/lib/python2.7/dist-packages -- CMAKE_INSTALL_PREFIX : /home/qike/pytorch/torch/lib/tmp_install -- CMAKE_MODULE_PATH : /home/qike/pytorch/cmake/Modules -- -- ONNX version : 1.3.0 -- ONNX NAMESPACE : onnx_torch -- ONNX_BUILD_TESTS : OFF -- ONNX_BUILD_BENCHMARKS : OFF -- ONNX_USE_LITE_PROTO : OFF -- -- Protobuf compiler : -- Protobuf includes : -- Protobuf libraries : -- BUILD_ONNX_PYTHON : OFF -- Found gcc >=5 and CUDA <= 7.5, adding workaround C++ flags -- Could not find CUDA with FP16 support, compiling without torch.CudaHalfTensor -- Removing -DNDEBUG from compile flags -- Compiling with OpenMP support -- MAGMA not found. Compiling without MAGMA support -- Could not find hardware support for NEON on this machine. -- No OMAP3 processor on this machine. -- No OMAP4 processor on this machine. -- SSE2 Found -- SSE3 Found -- AVX Found -- AVX2 Found -- Atomics: using GCC intrinsics -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_intel: not found -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] -- Library mkl_gf: not found -- Checking for [mkl - guide - pthread - m] -- Library mkl: not found -- MKL library not found -- Checking for [openblas] -- Library openblas: BLAS_openblas_LIBRARY-NOTFOUND -- Checking for [openblas - pthread] -- Library openblas: BLAS_openblas_LIBRARY-NOTFOUND -- Checking for [goto2 - gfortran] -- Library goto2: BLAS_goto2_LIBRARY-NOTFOUND -- Checking for [goto2 - gfortran - pthread] -- Library goto2: BLAS_goto2_LIBRARY-NOTFOUND -- Checking for [acml - gfortran] -- Library acml: BLAS_acml_LIBRARY-NOTFOUND -- Checking for [Accelerate] -- Library Accelerate: BLAS_Accelerate_LIBRARY-NOTFOUND -- Checking for [vecLib] -- Library vecLib: BLAS_vecLib_LIBRARY-NOTFOUND -- Checking for [ptf77blas - atlas - gfortran] -- Library ptf77blas: BLAS_ptf77blas_LIBRARY-NOTFOUND -- Checking for [blas] -- Library blas: /usr/lib/libblas.so -- Found a library with BLAS API (generic). -- Found a library with LAPACK API. (generic) -- CuDNN not found. Compiling without CuDNN support -- MIOpen not found. Compiling without MIOpen support -- Could NOT find MKLDNN (missing: MKLDNN_INCLUDE_DIR MKLDNN_LIBRARY) -- MKLDNN not found. Compiling without MKLDNN support -- GCC 6.4.0: Adding gcc and gcc_s libs to link line -- Using python found in /usr/bin/python -- Configuring build for SLEEF-v3.2 -- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -Wno-psabi -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef -- Building shared libs : OFF -- MPFR : LIB_MPFR-NOTFOUND -- GMP : LIBGMP-NOTFOUND -- RUNNING_ON_TRAVIS : 0 -- COMPILER_SUPPORTS_OPENMP : 1 -- Using python found in /usr/bin/python -- NCCL operators skipped due to no CUDA support -- Excluding ideep operators as we are not using ideep -- Including image processing operators -- Excluding video processing operators due to no opencv -- Excluding mkl operators as we are not using mkl -- Include Observer library -- Using lib/python2.7/dist-packages as python relative installation path -- Automatically generating missing __init__.py files. -- A previous caffe2 cmake run already created the __init__.py files. -- -- ******** Summary ******** -- General: -- CMake version : 3.11.2 -- CMake command : /usr/local/bin/cmake -- Git version : v0.1.11-10282-g49231ab -- System : Linux -- C++ compiler : /usr/bin/c++ -- C++ compiler version : 6.4.0 -- BLAS : MKL -- CXX flags : -msse3 -msse4.1 -msse4.2 -msse2 --std=c++11 -Wno-deprecated -fvisibility-inlines-hidden -D_FORCE_INLINES -D_MWAITXINTRIN_H_INCLUDED -D__STRICT_ANSI__ -fopenmp -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -Wno-unused-but-set-variable -Wno-maybe-uninitialized -- Build type : Release -- Compile definitions : ONNX_NAMESPACE=onnx_torch;USE_GCC_ATOMICS=1;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;HAVE_MALLOC_USABLE_SIZE=1 -- CMAKE_PREFIX_PATH : /usr/lib/python2.7/dist-packages -- CMAKE_INSTALL_PREFIX : /home/qike/pytorch/torch/lib/tmp_install -- -- BUILD_ATEN_MOBILE : OFF -- BUILD_BINARY : 1 -- BUILD_CUSTOM_PROTOBUF : ON -- Link local protobuf : ON -- BUILD_DOCS : OFF -- BUILD_PYTHON : ON -- Python version : 2.7.6 -- Python executable : /usr/bin/python -- Pythonlibs version : 2.7.6 -- Python library : /usr/lib/python2.7 -- Python includes : /usr/include/python2.7 -- Python site-packages: lib/python2.7/dist-packages -- BUILD_SHARED_LIBS : ON -- BUILD_TEST : 1 -- USE_ASAN : OFF -- USE_CUDA : 0 -- USE_ROCM : OFF -- USE_EIGEN_FOR_BLAS : ON -- USE_FFMPEG : OFF -- USE_GFLAGS : OFF -- USE_GLOG : OFF -- USE_LEVELDB : ON -- LevelDB version : 1.15 -- Snappy version : 1.1.0 -- USE_LITE_PROTO : OFF -- USE_LMDB : ON -- LMDB version : 0.9.10 -- USE_METAL : OFF -- USE_MKL : -- USE_MOBILE_OPENGL : OFF -- USE_NCCL : OFF -- USE_NERVANA_GPU : OFF -- USE_NNPACK : 1 -- USE_OBSERVERS : ON -- USE_OPENCL : OFF -- USE_OPENCV : ON -- OpenCV version : 2.4.8 -- USE_OPENMP : OFF -- USE_PROF : OFF -- USE_REDIS : OFF -- USE_ROCKSDB : OFF -- USE_ZMQ : OFF -- USE_DISTRIBUTED : ON -- USE_MPI : ON -- USE_GLOO : OFF -- USE_GLOO_IBVERBS : OFF -- Public Dependencies : Threads::Threads -- Private Dependencies : nnpack;cpuinfo;/usr/lib/i386-linux-gnu/liblmdb.so;/usr/lib/i386-linux-gnu/libleveldb.so;/usr/lib/libsnappy.so;opencv_core;opencv_highgui;opencv_imgproc;/usr/lib/libmpi_cxx.so;/usr/lib/libmpi.so;/usr/lib/i386-linux-gnu/libdl.so;/usr/lib/i386-linux-gnu/libhwloc.so;aten_op_header_gen;onnxifi_loader;rt;gcc_s;gcc;dl -- Configuring done -- Generating done -- Build files have been written to: /home/qike/pytorch/build [ 2%] Built target libprotobuf-lite [ 8%] Built target libprotobuf [ 8%] Built target js_embed [ 16%] Built target libprotoc [ 16%] Built target protoc [ 16%] Built target pthreadpool [ 17%] Built target nnpack_reference_layers [ 17%] Built target clog [ 19%] Built target cpuinfo [ 21%] Built target nnpack [ 22%] Built target gtest [ 22%] Built target gtest_main [ 24%] Built target benchmark [ 24%] Built target benchmark_main [ 24%] Built target gen_onnx_proto [ 25%] Built target onnx_proto [ 27%] Built target onnx [ 27%] Built target onnxifi_loader [ 28%] Built target onnxifi_wrapper [ 28%] Built target onnxifi_dummy [ 29%] Built target Caffe2_PROTO [ 29%] Built target nomnigraph [ 29%] Built target Caffe2_perfkernels_avx [ 29%] Built target ATEN_CPU_FILES_GEN_TARGET [ 29%] Built target caffe2_protos [ 29%] Built target __aten_op_header_gen [ 29%] Built target common [ 29%] Built target mkrename [ 29%] Built target renameSSE4.h_generated [ 29%] Built target sleefsse4 [ 29%] Built target renameFMA4.h_generated [ 29%] Built target sleeffma4 [ 29%] Built target renameAVX2.h_generated [ 29%] Built target sleefavx2 [ 30%] Built target renameAVX2128.h_generated [ 31%] Built target sleefavx2128 [ 31%] Built target renameAVX.h_generated [ 31%] Built target sleefavx [ 31%] Built target renameSSE2.h_generated [ 31%] Built target sleefsse2 [ 31%] Built target sleef [ 31%] Built target dispatch [ 31%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o /home/qike/pytorch/caffe2/perfkernels/math_cpu_avx2.cc: In function β€˜void caffe2::math::quantize_and_compress__avx2(const float*, uint8_t*, size_t, size_t, bool, std::unique_ptr<std::uniform_real_distribution<float> >&, std::minstd_rand&)’: /home/qike/pytorch/caffe2/perfkernels/math_cpu_avx2.cc:171:44: error: β€˜_mm256_extract_epi64’ was not declared in this scope _mm256_extract_epi64(orval_v, 0); ^ /home/qike/pytorch/caffe2/perfkernels/math_cpu_avx2.cc:214:44: error: β€˜_mm256_extract_epi64’ was not declared in this scope _mm256_extract_epi64(orval_v, 0); ^ make[2]: *** [caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o] Error 1 make[1]: *** [caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/all] Error 2 make: *** [all] Error 2 Failed to run 'bash ../tools/build_pytorch_libs.sh --use-nnpack --full-caffe2 caffe2 libshm gloo THD'
caffe2
low
Critical
357,895,129
pytorch
Hypothesis operator tests in Caffe2 generate too many warnings
Here is the full set of warnings from a recent run: ``` Max No attributes Shape No attributes=============================== warnings summary =============================== dataio_test.py::TestReaderBuilder cannot collect test class 'TestReaderBuilder' because it has a __init__ constructor hypothesis_test.py::TestOperators::test_abs /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element -1.7976931348623157e+308 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element -1.7976931348623157e+308 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 7.06080636606648e+117 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) hypothesis_test.py::TestOperators::test_add /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/hypothesis_test.py:77: HypothesisDeprecationWarning: The timeout setting is deprecated and will be removed in a future version of Hypothesis. To get the future behaviour set ``timeout=hypothesis.unlimited`` instead (which will remain valid for a further deprecation period after this setting has gone away). @settings(max_examples=3, timeout=100) /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/hypothesis_test.py:98: HypothesisDeprecationWarning: The timeout setting is deprecated and will be removed in a future version of Hypothesis. To get the future behaviour set ``timeout=hypothesis.unlimited`` instead (which will remain valid for a further deprecation period after this setting has gone away). @settings(max_examples=3, timeout=100) hypothesis_test.py::TestOperators::test_blobs_queue_threading hypothesis_temporary_module_2e20613c2ca13e8e32b6b5ad2c2cdaf62b352d46:1204: HypothesisDeprecationWarning: Test took 214.68ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 300 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. hypothesis_test.py::TestOperators::test_depth_concat hypothesis_temporary_module_3330aec9e9b5a7dc1605c71f9e2e80e7aeff3ca4:401: HypothesisDeprecationWarning: Test took 249.39ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 300 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. hypothesis_test.py::TestOperators::test_depth_concat_with_order hypothesis_temporary_module_b9beab0c8f0af9e31f4961cc816cd2d683650b6a:433: HypothesisDeprecationWarning: Test took 236.23ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 300 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. hypothesis_test.py::TestOperators::test_elman_recurrent_network hypothesis_temporary_module_d49ca75c314579510f2485bd77ff29fbb51196e2:1914: HypothesisDeprecationWarning: Test took 340.90ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 400 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. hypothesis_test.py::TestOperators::test_exp /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 1.7976931348623157e+308 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 6.595801951316392e+287 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/hypothesis_test.py:1156: RuntimeWarning: overflow encountered in exp return (np.exp(input_tensor),) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 1.7976931348623157e+308 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) hypothesis_test.py::TestOperators::test_pad_image hypothesis_temporary_module_d448766e2c26594c0f5f3873b19fb8949f5b680e:2128: HypothesisDeprecationWarning: Test took 443.96ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 500 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. hypothesis_test.py::TestOperators::test_replace_nan /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element -9.331274504684256e+256 from FloatStrategy() cannot be represented as dtype dtype('float32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) hypothesis_test.py::TestOperators::test_same_pad_image hypothesis_temporary_module_6821b7c3fde10dca9d78219232bec9446907432f:2089: HypothesisDeprecationWarning: Test took 205.78ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 300 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. hypothesis_test.py::TestOperators::test_slice /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/hypothesis_test.py:1626: FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated; use `arr[tuple(seq)]` instead of `arr[seq]`. In the future this will be interpreted as an array index, `arr[np.array(seq)]`, which will result either in an error or a different result. return (x[slc], ) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3196436800 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3309942838 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3877992868 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3405713381 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2902941834 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3331562762 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3805530738 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2829559959 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2790037929 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2696446726 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4059288713 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2916187109 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3402978913 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4289085716 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2197298482 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4257267532 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2956887914 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3549241141 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3097796189 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3004122297 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3087204266 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2229414537 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3203929115 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 3627849491 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4176986085 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4047228711 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4152952314 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3773237470 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2406901326 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2443852684 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4092909949 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2331497827 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3191084491 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2236138201 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2512305228 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2564837976 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3634502480 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2617141735 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3001831482 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3551051344 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2447556595 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4043180462 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3338632215 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3823686764 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3946356081 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3040810154 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2712719114 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4281689592 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2252470349 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2320216063 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2341154399 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3001821414 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4245175906 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3411061695 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2903870264 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2243802936 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2335991202 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2208341651 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3230634956 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3819077085 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3251723903 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2167940151 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3571403018 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2987666521 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4289983893 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3156459443 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3594033156 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2697226496 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3883368779 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2907264892 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3942922496 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3983958062 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2926625194 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3129080252 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4259948034 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3844996535 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2932243696 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2787811344 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4084954071 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2904119921 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3840548480 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2236169719 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3571446703 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3142142167 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2674833928 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3539645266 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4242847207 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2245086276 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2177762310 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3515621713 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3099121224 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2506812146 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2351213026 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3365782614 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3860937937 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4026398860 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3973048559 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3908410143 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3685444777 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3886104311 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3126635083 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3760511919 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2757117744 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2878178622 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2228754804 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3698026179 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3684287310 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3067253030 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3719867351 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2857844663 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3082030804 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2330031439 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3520306658 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 4187824002 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2163899449 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 3580695101 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2603794931 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2942874899 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 2586526870 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 3392163785 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3147300725 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3390669023 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 3278626726 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3205509723 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3881850857 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3759051248 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 3044340274 from BoundedIntStrategy(0, 4294967295) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) hypothesis_test.py::TestOperators::test_sparse_to_dense /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.0 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.09663447319911114 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.9665746774190684 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.3464000815968032 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.05146202735267892 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.9649148284416054 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7933286163512967 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.03229189878184103 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7984242335469012 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.19494675584371685 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.4227124275927844 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.07571384192160215 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.0804172547237978 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.27974948803305205 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.46008526090230906 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.57521205791093 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.4822733042252746 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.5974551416826329 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.30580099407262035 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.8033588965735052 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7218529467335043 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7745984406718556 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.3620892783817807 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.4968991735893279 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.8090493371663348 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.29524240866528323 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7928768248594116 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.30135432171929494 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.05312827747339345 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7999875293248699 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.6505387401879527 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.656937805087579 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7278429824080911 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.8929290157611787 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.3730260774088277 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.19529315253273555 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.21732228931413805 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.869655612491357 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.6735856426329151 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.1954448191311416 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.8482830017585972 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.5459902386475289 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7710743073335367 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.9531120220789153 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.5077577030029189 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.978136687193512 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.36535803939870154 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.2792946227388125 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.1971806815504516 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.6232647373769767 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.8811309195354744 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.4676783311549687 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.23884582947535266 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.2657981685887523 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.650768642043026 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.2596172756753066 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.43793264645027896 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.7089797973202673 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.29011683480568534 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.37228014104058055 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.5524226948931433 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.5875140417382817 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.9367046840149527 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.45927486016893704 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.6853577944587824 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.07986998416990555 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.5298542005598722 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:231: HypothesisDeprecationWarning: Generated array element 0.019252941830498974 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, result, i) /usr/local/lib/python2.7/dist-packages/hypothesis/extra/numpy.py:252: HypothesisDeprecationWarning: Generated array element 0.28156715983654707 from FixedBoundedFloatStrategy(0.0, 1.0) cannot be represented as dtype dtype('int32') without overflow or underflow. Consider using a more precise strategy, as this will be an error in a future version of Hypothesis. self.set_element(data, one_element, 0, self.fill) lengths_reducer_rowwise_8bit_ops_test.py::TestQuantize8bits::test_quantize_tensor_with_const_row_op /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/lengths_reducer_rowwise_8bit_ops_test.py:17: RuntimeWarning: divide by zero encountered in true_divide inv_scale = 1. / scale /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/lengths_reducer_rowwise_8bit_ops_test.py:19: RuntimeWarning: invalid value encountered in multiply data = np.round((data - bias) * inv_scale) * scale + bias memonger_test.py::MemongerTest::test_simple_memonger hypothesis_temporary_module_303bd1b7a169f7f11af75be1a474e128233afa45:37: HypothesisDeprecationWarning: Test took 42944.59ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 43000 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. parallelize_bmuf_distributed_test.py::DistributedTest::test_bmuf_distributed hypothesis_temporary_module_bd7c988af848da8b7b992ce7436c8940e716cf93:223: HypothesisDeprecationWarning: Test took 260.84ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 300 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. python_op_test.py::PythonOpTest::test_gradient_multiple hypothesis_temporary_module_2b5d08d42304bf41ad5318bc424d61ca05e30896:179: HypothesisDeprecationWarning: Test took 380.48ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 400 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. models/resnet_test.py::ResnetMemongerTest::test_resnet_shared_grads hypothesis_temporary_module_216b75f379a03f188567f206e28f65f043ed3528:44: HypothesisDeprecationWarning: Test took 6949.56ms to run. In future the default deadline setting will be 200ms, which will make this an error. You can set deadline to an explicit value of e.g. 7000 to turn tests slower than this into an error, or you can set it to None to disable this check entirely. onnx/tests/c2_ref_test.py::TestCaffe2Basic::test_cast /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/onnx/backend.py:702: UserWarning: This version of onnx-caffe2 targets ONNX operator set version 7, but the model we are trying to import uses version 8. We will try to import it anyway, but if the model uses operators which had BC-breaking changes in the intervening versions, import will fail. warnings.warn("This version of onnx-caffe2 targets ONNX operator set version {}, but the model we are trying to import uses version {}. We will try to import it anyway, but if the model uses operators which had BC-breaking changes in the intervening versions, import will fail.".format(cls._known_opset_version, imp.version)) onnx/tests/c2_ref_test.py::TestCaffe2Basic::test_initializer /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/onnx/backend.py:702: UserWarning: This version of onnx-caffe2 targets ONNX operator set version 7, but the model we are trying to import uses version 9. We will try to import it anyway, but if the model uses operators which had BC-breaking changes in the intervening versions, import will fail. warnings.warn("This version of onnx-caffe2 targets ONNX operator set version {}, but the model we are trying to import uses version {}. We will try to import it anyway, but if the model uses operators which had BC-breaking changes in the intervening versions, import will fail.".format(cls._known_opset_version, imp.version)) <undetermined location> could not create cache path /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/.pytest_cache/v/cache/nodeids could not create cache path /usr/local/caffe2/lib/python2.7/dist-packages/caffe2/python/.pytest_cache/v/cache/lastfailed -- Docs: http://doc.pytest.org/en/latest/warnings.html ====== 1 failed, 761 passed, 350 skipped, 224 warnings in 371.50 seconds ======= Exited with code 1 ``` pytest reports warnings after errors. This makes it very annoying to find what actually failed because you have to scroll past all the warnings. Also warnings are bad.
caffe2
low
Critical
357,910,087
go
net: support DNS-over-HTTPS
DNS-over-HTTPS is an evolution of DNS that allows us to secure the stream of DNS requests from a system or user in the same way we secure HTTP traffic with TLS. As of Sept 2018, it's currently deployed in two of the major browsers (Mozilla[1], Chrome) and 2 major service owners (Cloudflare[2], Google[3]) and has the backing of lot of folks in the field as what we need to fix DNS. There are a few Go implementations[4] already on GitHub, but those require buy-in and awareness to be used. Having it baked into the Go standard library would be an incredible boon in securing our systems and users. [1] https://blog.nightly.mozilla.org/2018/06/01/improving-dns-privacy-in-firefox/ [2] https://developers.cloudflare.com/1.1.1.1/dns-over-https/ [3] https://developers.google.com/speed/public-dns/docs/dns-over-https [4] e.g. https://github.com/coredns/coredns/pull/1619
FeatureRequest
low
Major
357,930,690
three.js
ColladaLoader doesn't support instantiated joints in kinematic models
The COLLADA 1.5 specification allows using both `<joint>` and <instance_joint> elements inside kinematics_model\technique_common. The <instance_joint> elements can refer to `<joint>` elements defined elsewhere in the document, usually in <library_joints>. The COLLADA loader seems to assume that `<joint>` elements are used, resulting in this error if <instance_joint> are used (three.js editor example version r96): ``` TypeError: joint is undefined ColladaLoader.js:2928:8 connect/< https://threejs.org/examples/js/loaders/ColladaLoader.js:2928:8 traverse https://threejs.org/build/three.js:8574:4 traverse https://threejs.org/build/three.js:8580:5 traverse https://threejs.org/build/three.js:8580:5 connect https://threejs.org/examples/js/loaders/ColladaLoader.js:2920:5 setupKinematics https://threejs.org/examples/js/loaders/ColladaLoader.js:2909:6 parse https://threejs.org/examples/js/loaders/ColladaLoader.js:3867:3 Loader/this.loadFile/< https://threejs.org/editor/js/Loader.js:179:20 ``` **Example COLLADA file using <instance_joint>:** [https://github.com/Metalfusion/public-files/blob/master/Cobra_s350.dae](https://github.com/Metalfusion/public-files/blob/master/Cobra_s350.dae) ##### Three.js version - [ ] Dev - [x] r96
Enhancement
low
Critical
357,956,738
pytorch
Suggest: DataLoader add device parameter
After fetching each tensor from dataloader, I need to feed to GPU, I should use the **to** function . if Dataloader add a parameter like device="cuda", then each tensor would be the torch.cuda.Tensor type, it will be more friendly. cc @SsnL
todo,module: dataloader,triaged,enhancement
medium
Critical
358,005,811
rust
opt-level: z often worse than s, sometimes worse than 3 on small files
script to get sizes ````bash #!/bin/bash for file in `ls -c1 | grep "\.rs$"`; do rustc ${file} -o ${file}.default rustc ${file} -o ${file}.O0 -C opt-level=0 rustc ${file} -o ${file}.O1 -C opt-level=1 rustc ${file} -o ${file}.O2 -C opt-level=2 rustc ${file} -o ${file}.O3 -C opt-level=3 rustc ${file} -o ${file}.Os -C opt-level=s rustc ${file} -o ${file}.Oz -C opt-level=z echo "`du -sb ${file}.O0 | cut -f -1`,`du -sb ${file}.O1 | cut -f -1`,`du -sb ${file}.O2 | cut -f -1`,`du -sb ${file}.O3 | cut -f -1`,`du -sb ${file}.Os | cut -f -1`,`du -sb ${file}.Oz | cut -f -1`,$file" >> table.txt done; ```` It seems that ````-C opt-level=z```` often fails to reduce size beyond what ````-C opt-level=s````can do, sometimes it's even outperformed by ````-C opt-level=3````. ## sizes of binarys wrt opt level <details><summary>table</summary> <p> | default | 1 | 2 | 3 | s | z | | |----------|---------|---------|---------|---------|---------|----------------------------------------------------------------------| | | | | | | | redundant.rs | | 4088816 | 4084352 | 4080000 | 4080000 | 4080008 | 4081232 | const-int-conversion.rs | | 4086800 | 4082680 | 4080008 | 4080008 | 4080008 | 4080072 | const-int-overflowing.rs | | 4081128 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | const-int-rotate.rs | | 4088720 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-int-sign.rs | | 4085792 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | const-int-wrapping.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | const-fn-const-eval.rs | | 4081024 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-fn-method.rs | | 4081024 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-fn-nested.rs | | 4088656 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | const-meth-pattern.rs | | 4088904 | 4088952 | 4088472 | 4088472 | 4088472 | 4088536 | const-pattern-variant.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | consts-in-patterns.rs | | 4080824 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | const-size_of-align_of.rs | | 4081024 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-unsafe-fn.rs | | 4253056 | 4224840 | 4151560 | 4151560 | 4153400 | 4155264 | invalid_const_promotion.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28822.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue29927-1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29927.rs | | 4081272 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33537.rs | | 4081320 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37991.rs | | 4088856 | 4083264 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48006.rs | | 4259768 | 4233536 | 4173336 | 4177432 | 4179032 | 4176968 | simd-target-feature-mixup.rs | | 4081072 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | try-from-int-error-partial-eq.rs | | 4110512 | 4102104 | 4081936 | 4081936 | 4083992 | 4084144 | futures-api.rs | | | | | | | | async-await.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | align-with-extern-c-fn.rs | | 4282096 | 4265552 | 4187848 | 4187848 | 4189920 | 4193336 | command-before-exec.rs | | | | | | | | issue-45124.rs | | 4088720 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | tool_attributes.rs | | | | | | | | try-block.rs | | 4081040 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | try-is-identifier-edition2015.rs | | 4081264 | 4081048 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-unique-type-id.rs | | 4081336 | 4081160 | 4079992 | 4079992 | 4079992 | 4080064 | unique-init.rs | | 4090560 | 4088552 | 4080000 | 4080000 | 4080072 | 4080928 | unique-in-vec.rs | | 4090832 | 4085560 | 4080000 | 4080000 | 4079992 | 4080216 | unique-kinds.rs | | 4094216 | 4094040 | 4088688 | 4088688 | 4088688 | 4088760 | unique-log.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080216 | unique-move-drop.rs | | 4081808 | 4081632 | 4079992 | 4079992 | 4079992 | 4080064 | unique-move.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-move-temp.rs | | 4081808 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-mutable.rs | | 4081552 | 4081552 | 4080000 | 4080000 | 4080000 | 4080072 | unique-object-move.rs | | 4089064 | 4081232 | 4080000 | 4080000 | 4080000 | 4080064 | unique-pat-2.rs | | 4106176 | 4100832 | 4093800 | 4093800 | 4093944 | 4094008 | unique-pat-3.rs | | 4088976 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | unique-pat.rs | | 4082296 | 4082112 | 4079992 | 4079992 | 4079992 | 4080064 | unique-rec.rs | | 4339472 | 4320448 | 4155016 | 4167392 | 4154048 | 4163752 | unique-send-2.rs | | 4256632 | 4252440 | 4135480 | 4139416 | 4133128 | 4141704 | unique-send.rs | | 4087288 | 4082288 | 4079992 | 4079992 | 4079992 | 4080440 | unique-swap.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | unsized2.rs | | 4081472 | 4081168 | 4080000 | 4080000 | 4080000 | 4080072 | unused-move-capture.rs | | 4081336 | 4081160 | 4079992 | 4079992 | 4079992 | 4080064 | unused-move.rs | | 4132296 | 4129856 | 4099880 | 4099896 | 4100192 | 4100728 | unwind-unique.rs | | | | | | | | use-macro-self.rs | | 4161648 | 4139664 | 4086280 | 4086808 | 4087472 | 4092384 | utf8_chars.rs | | 4081696 | 4081736 | 4080024 | 4080024 | 4080024 | 4080088 | variance-intersection-of-ref-and-opt-ref.rs | | 4091544 | 4088040 | 4080008 | 4080008 | 4080288 | 4080664 | variance-vec-covariant.rs | | 4086656 | 4082240 | 4079992 | 4079992 | 4079992 | 4080056 | vec-dst.rs | | 4084336 | 4083864 | 4080000 | 4080000 | 4080000 | 4080296 | vector-no-ann-2.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | x86stdcall2.rs | | | | | | | | z-crate-attr.rs | | 4089912 | 4085056 | 4080008 | 4080008 | 4080416 | 4080480 | traits-conditional-dispatch.rs | | 4106664 | 4101392 | 4098112 | 4098112 | 4098488 | 4098776 | typeclasses-eq-example.rs | | 4106712 | 4101440 | 4098144 | 4098144 | 4098528 | 4098816 | typeclasses-eq-example-static.rs | | 4099336 | 4084392 | 4080000 | 4080000 | 4080000 | 4080072 | type-id-higher-rank.rs | | 4082520 | 4081896 | 4080008 | 4080008 | 4080008 | 4080224 | type-param-constraints.rs | | 4099432 | 4098760 | 4092960 | 4092960 | 4092952 | 4093168 | ufcs-explicit-self.rs | | 4099112 | 4098992 | 4093264 | 4093264 | 4089168 | 4089232 | unboxed-closures-boxed.rs | | 4099672 | 4099552 | 4093800 | 4093800 | 4093800 | 4093864 | unboxed-closures-call-sugar-object-autoderef.rs | | 4099640 | 4099520 | 4093776 | 4093776 | 4093776 | 4093840 | unboxed-closures-call-sugar-object.rs | | 4082440 | 4082256 | 4080008 | 4080008 | 4080008 | 4080072 | uniq-self-in-mut-slot.rs | | 4082120 | 4081912 | 4080000 | 4080000 | 4080000 | 4080216 | unique-assign-copy.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080216 | unique-assign-drop.rs | | 4082248 | 4082072 | 4080000 | 4080000 | 4080008 | 4080416 | unique-assign-generic.rs | | 4081808 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-assign.rs | | 4082304 | 4082128 | 4080008 | 4080008 | 4080008 | 4080072 | unique-autoderef-field.rs | | 4090112 | 4086664 | 4080008 | 4080008 | 4080080 | 4080456 | unique-autoderef-index.rs | | 4090768 | 4085496 | 4079992 | 4079992 | 4079992 | 4081400 | unique-cmp.rs | | 4081352 | 4081168 | 4080008 | 4080008 | 4080008 | 4080072 | unique-containing-tag.rs | | 4081344 | 4081160 | 4080000 | 4080000 | 4080000 | 4080064 | unique-create.rs | | 4082120 | 4081920 | 4080008 | 4080008 | 4080008 | 4080224 | unique-decl-init-copy.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-decl-init.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-decl-move.rs | | 4081808 | 4081632 | 4079992 | 4079992 | 4080000 | 4080064 | unique-deref.rs | | 4082376 | 4081168 | 4080000 | 4080000 | 4080000 | 4080072 | unique-destructure.rs | | 4088984 | 4085528 | 4080000 | 4080000 | 4080000 | 4080376 | unique-drop-complex.rs | | 4082368 | 4082192 | 4080000 | 4080000 | 4080000 | 4080072 | unique-fn-arg-move.rs | | 4082392 | 4082192 | 4080000 | 4080000 | 4080000 | 4080216 | unique-fn-arg-mut.rs | | 4082360 | 4082184 | 4079992 | 4079992 | 4080816 | 4080960 | unique-fn-arg.rs | | 4082720 | 4082544 | 4080000 | 4080000 | 4080000 | 4080888 | unique-fn-ret.rs | | 4106240 | 4100896 | 4093800 | 4093800 | 4093944 | 4094008 | unique-in-tag.rs | | 4118840 | 4117832 | 4080672 | 4080672 | 4081136 | 4082320 | unique-in-vec-copy.rs | | 4086280 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | small-enum-range-edge.rs | | | | | | | | stack-probes-lto.rs | | | | | | | | stack-probes.rs | | 4080960 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | std-sync-right-kind-impls.rs | | 4354720 | 4287464 | 4121088 | 4120800 | 4116152 | 4122088 | sync-send-iterators-in-libcollections.rs | | 4111848 | 4091944 | 4085688 | 4085688 | 4085688 | 4086120 | sync-send-iterators-in-libcore.rs | | 4305880 | 4294064 | 4165192 | 4168992 | 4162664 | 4167024 | task-comm-0.rs | | 4429128 | 4406000 | 4203304 | 4223312 | 4198256 | 4206216 | task-comm-10.rs | | 4346760 | 4334952 | 4166072 | 4181936 | 4164416 | 4169872 | task-comm-11.rs | | 4142224 | 4136168 | 4111864 | 4111864 | 4107928 | 4112632 | task-comm-12.rs | | 4252776 | 4250296 | 4140072 | 4147952 | 4141376 | 4148592 | task-comm-13.rs | | 4311080 | 4297616 | 4160880 | 4168896 | 4163168 | 4167968 | task-comm-14.rs | | 4288736 | 4275680 | 4147488 | 4151392 | 4145032 | 4149184 | task-comm-15.rs | | 4129224 | 4121872 | 4098760 | 4098752 | 4098912 | 4099448 | task-comm-17.rs | | 4142040 | 4134992 | 4107416 | 4107416 | 4107576 | 4112264 | task-comm-1.rs | | 4344832 | 4321208 | 4171120 | 4175016 | 4169560 | 4178784 | task-comm-3.rs | | 4326632 | 4301344 | 4159200 | 4171096 | 4162416 | 4168264 | task-comm-7.rs | | 4310344 | 4289544 | 4160528 | 4168360 | 4162264 | 4166648 | task-comm-9.rs | | 4129368 | 4122504 | 4098720 | 4098728 | 4098912 | 4099440 | task-life-0.rs | | 4293496 | 4277672 | 4147952 | 4151728 | 4145440 | 4149816 | task-spawn-move-and-copy.rs | | 2765656 | 2765584 | 2764232 | 2764232 | 2764232 | 2764456 | thin-lto-global-allocator.rs | | 4142336 | 4135352 | 4111744 | 4115848 | 4107840 | 4112528 | threads.rs | | 4322040 | 4309504 | 4155672 | 4167968 | 4158592 | 4164080 | trait-bounds-in-arc.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | trait-bounds-on-structs-and-enums.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num0.rs | | 4082568 | 4081368 | 4080008 | 4080008 | 4080008 | 4080376 | trait-object-generics.rs | | 4082720 | 4082720 | 4080032 | 4080032 | 4080032 | 4080424 | regions-close-over-type-parameter-successfully.rs | | 4107680 | 4098928 | 4080008 | 4080008 | 4080080 | 4081328 | regions-dependent-addr-of.rs | | 4100632 | 4096072 | 4081376 | 4081376 | 4081616 | 4082704 | regions-early-bound-trait-param.rs | | 4081992 | 4081720 | 4080008 | 4080008 | 4080016 | 4080080 | regions-escape-into-other-fn.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | regions-fn-subtyping.rs | | 4082392 | 4082216 | 4080008 | 4080008 | 4080008 | 4080080 | regions-infer-borrow-scope.rs | | 4081936 | 4081192 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-borrow-scope-within-loop-ok.rs | | 4082144 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | regions-lifetime-nonfree-late-bound.rs | | 4090744 | 4086016 | 4080048 | 4080048 | 4080048 | 4080248 | regions-relate-bound-regions-on-closures-to-inference-variables.rs | | 4269440 | 4239632 | 4146016 | 4150760 | 4153576 | 4155352 | running-with-no-runtime.rs | | 4082096 | 4082688 | 4079992 | 4079992 | 4080240 | 4080576 | self-impl.rs | | 4082744 | 4082520 | 4080016 | 4080016 | 4080016 | 4080080 | self-in-mut-slot-default-method.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | self-in-typedefs.rs | | 4089928 | 4085272 | 4080000 | 4080000 | 4080544 | 4080704 | self-re-assign.rs | | 4147960 | 4142208 | 4116968 | 4116976 | 4117128 | 4113568 | sendfn-spawn-with-fn-arg.rs | | 4406376 | 4374240 | 4181040 | 4201136 | 4175448 | 4186696 | send-resource.rs | | | | | | | | sepcomp-lib-lto.rs | | 4081152 | 4081152 | 4080408 | 4080408 | 4080408 | 4080480 | signal-alternate-stack-cleanup.rs | | 4140064 | 4115080 | 4080008 | 4080008 | 4080008 | 4080072 | simd-intrinsic-float-math.rs | | 4115368 | 4111336 | 4110472 | 4080008 | 4110472 | 4110544 | simd-intrinsic-float-minmax.rs | | 4133528 | 4116096 | 4111056 | 4111056 | 4111056 | 4115224 | simd-intrinsic-generic-reduction.rs | | 4082496 | 4082096 | 4080216 | 4080216 | 4080216 | 4080288 | slice.rs | | | | | | | | method-self-arg-aux1.rs | | | | | | | | method-self-arg-aux2.rs | | 4082432 | 4081120 | 4080240 | 4080240 | 4080240 | 4080312 | method-self-arg.rs | | 4087352 | 4081872 | 4080496 | 4080496 | 4080496 | 4080560 | method-self-arg-trait.rs | | 4116424 | 4103480 | 4080016 | 4080016 | 4080472 | 4081408 | method-two-trait-defer-resolution-2.rs | | 4080808 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | method-two-traits-distinguished-via-where-clause.rs | | 4086952 | 4082632 | 4079992 | 4079992 | 4080000 | 4081160 | move-1-unique.rs | | 4082288 | 4082112 | 4079992 | 4079992 | 4079992 | 4080056 | move-2.rs | | 4082296 | 4082120 | 4080000 | 4080000 | 4080000 | 4080064 | move-2-unique.rs | | 4088840 | 4083800 | 4080000 | 4080000 | 4080000 | 4080960 | move-3-unique.rs | | 4082352 | 4082168 | 4079992 | 4079992 | 4079992 | 4080056 | move-4.rs | | 4082368 | 4082184 | 4080000 | 4080000 | 4080000 | 4080064 | move-4-unique.rs | | 4090672 | 4087144 | 4080864 | 4080864 | 4080864 | 4081240 | move-arg-2.rs | | 4090688 | 4087160 | 4080880 | 4080880 | 4080880 | 4081256 | move-arg-2-unique.rs | | 4146736 | 4140016 | 4111504 | 4111504 | 4107568 | 4112424 | moves-based-on-type-capture-clause.rs | | 4082616 | 4081424 | 4080008 | 4080008 | 4080008 | 4080224 | mut-function-arguments.rs | | 4099136 | 4099136 | 4093304 | 4093304 | 4093304 | 4093376 | new-box.rs | | 4134016 | 4109592 | 4081784 | 4081784 | 4081888 | 4087488 | nullable-pointer-iotareduction.rs | | 4099280 | 4099216 | 4093504 | 4093504 | 4093504 | 4093568 | object-one-type-two-traits.rs | | 4092576 | 4097936 | 4080712 | 4080712 | 4081152 | 4081432 | objects-owned-object-borrowed-method-headerless.rs | | 4082072 | 4081696 | 4080016 | 4080016 | 4080016 | 4080080 | objects-owned-object-owned-method.rs | | 4087064 | 4082616 | 4080008 | 4080008 | 4080008 | 4080072 | operator-overloading.rs | | 4086552 | 4082136 | 4080088 | 4080000 | 4080328 | 4080840 | output-slot-variants.rs | | 4171520 | 4141568 | 4081136 | 4081136 | 4089096 | 4094376 | overloaded-autoderef.rs | | 4116592 | 4103952 | 4080904 | 4080904 | 4081632 | 4082440 | overloaded-index-assoc-list.rs | | 4087232 | 4082864 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-index-autoderef.rs | | 4081536 | 4081600 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-index-in-field.rs | | 4086144 | 4082016 | 4080000 | 4080000 | 4080000 | 4080064 | overloaded-index.rs | | 4085584 | 4080416 | 4080016 | 4080016 | 4080008 | 4080080 | packed-struct-optimized-enum.rs | | 4142408 | 4130688 | 4101264 | 4101256 | 4101624 | 4102160 | panic-handler-chain.rs | | 4195704 | 4185272 | 4125128 | 4125384 | 4131880 | 4128984 | panic-handler-flail-wildly.rs | | 4141744 | 4129864 | 4100656 | 4100656 | 4101064 | 4101584 | panic-handler-set-twice.rs | | 4151576 | 4139744 | 4102448 | 4102448 | 4102896 | 4107664 | panic-recover-propagate.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | parallel-codegen-closures.rs | | | | | | | | paths-in-macro-invocations.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | pure-sum.rs | | 4194048 | 4159904 | 4097688 | 4097552 | 4093816 | 4102976 | range_inclusive.rs | | 4099216 | 4099040 | 4093376 | 4093376 | 4093376 | 4093440 | rcvr-borrowed-to-region.rs | | 4157584 | 4117056 | 4085448 | 4088976 | 4081800 | 4082168 | realloc-16687.rs | | 4098648 | 4098376 | 4088768 | 4088768 | 4088768 | 4088832 | regions-borrow-at.rs | | 4081888 | 4081616 | 4080000 | 4080000 | 4080000 | 4080072 | regions-borrow-uniq.rs | | 4239240 | 4197944 | 4108992 | 4109616 | 4111688 | 4113760 | issue-3563-3.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3609.rs | | 4123104 | 4123168 | 4122536 | 4122536 | 4122536 | 4122600 | issue-3753.rs | | 4099816 | 4099816 | 4093768 | 4093768 | 4093840 | 4093912 | issue-3794.rs | | | | | | | | issue-38226.rs | | | | | | | | issue-38715.rs | | 4081336 | 4081160 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3878.rs | | 4115632 | 4108080 | 4085400 | 4089392 | 4085768 | 4082344 | issue-40883.rs | | 4123656 | 4115384 | 4089136 | 4089312 | 4089256 | 4089976 | issue-4333.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44005.rs | | 4081480 | 4081640 | 4079992 | 4079992 | 4079992 | 4080176 | issue-4759.rs | | 4089144 | 4085472 | 4080768 | 4080768 | 4080872 | 4081232 | issue-48962.rs | | 4081944 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51907.rs | | 4081768 | 4081688 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5192.rs | | 4081760 | 4081928 | 4079992 | 4079992 | 4079992 | 4080064 | issue-52169.rs | | | | | | | | issue-52557.rs | | 4093176 | 4089152 | 4088584 | 4088584 | 4088584 | 4088656 | issue-53333.rs | | 4108272 | 4104256 | 4098656 | 4098656 | 4098656 | 4098960 | issue-5666.rs | | 4082104 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5718.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5884.rs | | 4081560 | 4081296 | 4079992 | 4079992 | 4079992 | 4080056 | issue-6318.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6557.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | issue-7673-cast-generically-implemented-trait.rs | | 4419056 | 4376896 | 4186568 | 4198224 | 4189576 | 4197272 | issue-8827.rs | | 4081840 | 4081528 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9129.rs | | 4089000 | 4085384 | 4079992 | 4079992 | 4080160 | 4080760 | issue-9382.rs | | 4298424 | 4290472 | 4153240 | 4156928 | 4151208 | 4159496 | ivec-tag.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | kindck-implicit-close-over-mut-var.rs | | 4082472 | 4082496 | 4080016 | 4080016 | 4080432 | 4080576 | kindck-owned-trait-contains-1.rs | | 4099112 | 4094816 | 4093040 | 4093040 | 4093112 | 4093376 | last-use-is-capture.rs | | 4081424 | 4081248 | 4080008 | 4080008 | 4080008 | 4080072 | leak-unique-as-tydesc.rs | | 4094520 | 4094344 | 4093024 | 4093024 | 4093024 | 4093088 | let-assignability.rs | | 4081424 | 4081248 | 4080152 | 4080152 | 4080152 | 4080296 | list.rs | | | | | | | | macro-at-most-once-rep.rs | | | | | | | | macro-comma-support.rs | | 4090464 | 4084904 | 4080000 | 4080000 | 4080000 | 4080824 | macro-first-set.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | macro-pub-matcher.rs | | 4086792 | 4082560 | 4080008 | 4080008 | 4080080 | 4080432 | match-implicit-copy-unique.rs | | 4088904 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | match-range.rs | | 4081888 | 4081704 | 4080000 | 4080000 | 4080000 | 4080136 | match-reassign.rs | | 4098576 | 4094304 | 4088768 | 4088768 | 4088768 | 4088832 | match-unique-bind.rs | | 4081816 | 4081592 | 4080016 | 4080016 | 4080016 | 4080320 | match-value-binding-in-guard-3291.rs | | 4096688 | 4090080 | 4080632 | 4080496 | 4080608 | 4081448 | method-mut-self-modifies-mut-slice-lvalue.rs | | 4081472 | 4081296 | 4079992 | 4079992 | 4079992 | 4080064 | issue-10682.rs | | 4081408 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-10767.rs | | 4090280 | 4084832 | 4079992 | 4079992 | 4081520 | 4081664 | issue-10802.rs | | 4089504 | 4084224 | 4080416 | 4080416 | 4080416 | 4080704 | issue-11552.rs | | 4080440 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | issue-13259-windows-tcb-trash.rs | | 4317632 | 4294320 | 4176616 | 4176512 | 4179536 | 4186176 | issue-13304.rs | | 4093424 | 4088504 | 4080928 | 4080928 | 4081072 | 4081424 | issue-13323.rs | | 4082048 | 4081288 | 4079992 | 4079992 | 4079992 | 4080064 | issue-14399.rs | | 4315224 | 4290088 | 4178120 | 4178256 | 4180912 | 4184040 | issue-14456.rs | | 4099040 | 4098864 | 4092792 | 4092792 | 4092792 | 4093168 | issue-15571.rs | | 4091312 | 4087368 | 4079992 | 4079992 | 4079992 | 4080896 | issue-15734.rs | | 4093960 | 4084608 | 4079992 | 4079992 | 4081312 | 4081528 | issue-15763.rs | | 4088832 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | issue-15881-model-lexer-dotdotdot.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-16668.rs | | 4087936 | 4083712 | 4079992 | 4079992 | 4081072 | 4081624 | issue-16739.rs | | 4090488 | 4085216 | 4080952 | 4080952 | 4081104 | 4081168 | issue-16774.rs | | 4129264 | 4122632 | 4099520 | 4099688 | 4099704 | 4100424 | issue-17322.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-17351.rs | | 4213512 | 4198576 | 4142368 | 4142368 | 4147864 | 4149224 | issue-20091.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-20454.rs | | 4081408 | 4081224 | 4079992 | 4079992 | 4079992 | 4080200 | issue-20616.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21562.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22346.rs | | 4081368 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22577.rs | | 4081744 | 4081656 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2288.rs | | 4081808 | 4081480 | 4079992 | 4079992 | 4079992 | 4080336 | issue-2633-2.rs | | 4081632 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2708.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2718.rs | | 4081768 | 4081768 | 4079992 | 4079992 | 4079992 | 4080208 | issue-2734.rs | | 4081768 | 4081768 | 4079992 | 4079992 | 4079992 | 4080208 | issue-2735.rs | | 4094472 | 4094472 | 4088912 | 4088912 | 4088912 | 4089056 | issue-2935.rs | | 4081400 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3121.rs | | 4081808 | 4081624 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3290.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33264.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33903.rs | | 4094288 | 4094096 | 4088872 | 4088872 | 4088776 | 4088840 | issue-3447.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34784.rs | | 4832352 | 4597272 | 4154264 | 4149984 | 4158680 | 4180688 | dropck_legal_cycles.rs | | 4082352 | 4081920 | 4079992 | 4079992 | 4079992 | 4080056 | dst-index.rs | | 4110464 | 4089016 | 4085704 | 4085704 | 4085704 | 4082120 | dst-struct.rs | | 4093528 | 4088648 | 4081696 | 4081696 | 4081696 | 4082064 | dst-trait.rs | | 4110456 | 4089008 | 4085696 | 4085696 | 4085696 | 4082112 | dst-tuple.rs | | | | | | | | edition-keywords-2015-2015.rs | | | | | | | | edition-keywords-2015-2018.rs | | | | | | | | edition-keywords-2018-2015.rs | | | | | | | | edition-keywords-2018-2018.rs | | 4089024 | 4081272 | 4080184 | 4080184 | 4080184 | 4080248 | enum-nullable-simplifycfg-misopt.rs | | 4099568 | 4095080 | 4086912 | 4086912 | 4087112 | 4087688 | env-home-dir.rs | | 4101256 | 4092328 | 4085208 | 4085208 | 4085504 | 4086232 | env-null-vars.rs | | 4137248 | 4123448 | 4086664 | 4086664 | 4087864 | 4084744 | existential_type.rs | | 4089168 | 4082752 | 4080008 | 4080008 | 4080008 | 4080072 | explicit-self-generic.rs | | 4082544 | 4082264 | 4080008 | 4080008 | 4080008 | 4080152 | explicit-self-objects-uniq.rs | | 4087232 | 4082768 | 4080000 | 4080000 | 4080000 | 4080920 | explicit-self.rs | | 4106688 | 4101376 | 4093736 | 4093736 | 4093880 | 4094024 | expr-block-generic-unique1.rs | | 4089816 | 4084472 | 4080008 | 4080008 | 4080008 | 4080224 | expr-block-generic-unique2.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080072 | expr-block-unique.rs | | 4081888 | 4081704 | 4080000 | 4080000 | 4080000 | 4080064 | expr-if-unique.rs | | 4089592 | 4084232 | 4080008 | 4080008 | 4080008 | 4080224 | expr-match-generic-unique1.rs | | 4089832 | 4084472 | 4080008 | 4080008 | 4080008 | 4080224 | expr-match-generic-unique2.rs | | 4089432 | 4081712 | 4080000 | 4080000 | 4080000 | 4080064 | expr-match-unique.rs | | | | | | | | extern-call-scrub.rs | | 4090280 | 4086112 | 4080592 | 4080592 | 4080592 | 4080976 | foreign-fn-linkname.rs | | 4096216 | 4087296 | 4080000 | 4080000 | 4080992 | 4081000 | fsu-moves-and-copies.rs | | 4082064 | 4081800 | 4080008 | 4080008 | 4080008 | 4080224 | func-arg-incomplete-pattern.rs | | 4082440 | 4082104 | 4080000 | 4080000 | 4080000 | 4080216 | func-arg-ref-pattern.rs | | 4099424 | 4099216 | 4093360 | 4093360 | 4093360 | 4093504 | generic-alias-unique.rs | | 4082456 | 4082280 | 4080008 | 4080008 | 4080008 | 4080072 | generic-exterior-unique.rs | | 4082144 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | generic-extern-mangle.rs | | 4094176 | 4093992 | 4088576 | 4088576 | 4088584 | 4088648 | generic-fn-unique.rs | | 4082552 | 4082552 | 4080000 | 4080000 | 4080000 | 4080360 | generic-object.rs | | 4081704 | 4081592 | 4080192 | 4080192 | 4080168 | 4080384 | generic-recursive-tag.rs | | 4081432 | 4081232 | 4079992 | 4079992 | 4079992 | 4080136 | generic-tag.rs | | 4082368 | 4082192 | 4080000 | 4080000 | 4080000 | 4080064 | generic-unique.rs | | 4575608 | 4519176 | 4222288 | 4242360 | 4227376 | 4242048 | hashmap-memory.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | hrtb-precedence-of-plus.rs | | 4323168 | 4255160 | 4214048 | 4214792 | 4210976 | 4203712 | ifmt.rs | | 4129224 | 4121856 | 4098760 | 4098752 | 4098920 | 4099440 | init-large-type.rs | | 4096208 | 4087792 | 4085696 | 4085648 | 4085768 | 4085832 | intrinsic-atomics.rs | | 4091600 | 4096816 | 4082368 | 4082224 | 4082376 | 4082848 | autoref-intermediate-types-issue-3585.rs | | 4081504 | 4081280 | 4080024 | 4080024 | 4080024 | 4080240 | cancel-clean-via-immediate-rvalue-ref.rs | | 4212544 | 4107608 | 4080896 | 4080896 | 4081312 | 4082376 | cast-rfc0401.rs | | | | | | | | cci_borrow.rs | | 4122928 | 4120960 | 4098032 | 4098032 | 4098120 | 4098648 | child-outlives-parent.rs | | | | | | | | class-cast-to-trait-cross-crate-2.rs | | 4136504 | 4124968 | 4099176 | 4099176 | 4100136 | 4100864 | class-separate-impl.rs | | 4081792 | 4081416 | 4080008 | 4080008 | 4080008 | 4080072 | cleanup-arm-conditional.rs | | 4087128 | 4081768 | 4080768 | 4080768 | 4080768 | 4080864 | cleanup-rvalue-during-if-and-while.rs | | 4164872 | 4150712 | 4100112 | 4100120 | 4100680 | 4101800 | cleanup-rvalue-temp-during-incomplete-alloc.rs | | 4130400 | 4128320 | 4099536 | 4099544 | 4099728 | 4100264 | clone-with-exterior.rs | | 4100352 | 4100328 | 4093776 | 4093776 | 4093776 | 4093840 | close-over-big-then-small-data.rs | | 4162224 | 4116408 | 4082240 | 4082240 | 4084672 | 4085264 | coerce-expect-unsized.rs | | 4301704 | 4289864 | 4164984 | 4168656 | 4162584 | 4166688 | comm.rs | | 4121808 | 4081920 | 4080240 | 4080240 | 4080240 | 4080304 | const-block.rs | | 4087312 | 4087376 | 4085592 | 4085592 | 4081496 | 4081568 | const-endianess.rs | | | | | | | | core-run-destroy.rs | | | | | | | | crate-method-reexport-grrrrrrr.rs | | 4091384 | 4091232 | 4081432 | 4081280 | 4081440 | 4081992 | c-stack-returning-int64.rs | | 4217480 | 4203584 | 4151224 | 4151224 | 4152472 | 4154072 | default-alloc-error-hook.rs | | 4099904 | 4094864 | 4088576 | 4088576 | 4088576 | 4088640 | deref-lval.rs | | 4081328 | 4081152 | 4079984 | 4079984 | 4079984 | 4080056 | deref.rs | | 4100112 | 4087672 | 4080928 | 4080928 | 4081064 | 4081256 | deriving-associated-types.rs | | 4088680 | 4084704 | 4080000 | 4080000 | 4080000 | 4081320 | deriving-default-box.rs | | 4135904 | 4121704 | 4086264 | 4086264 | 4087376 | 4088888 | deriving-hash.rs | | 4081376 | 4081168 | 4080008 | 4080008 | 4080008 | 4080072 | drop-on-empty-block-exit.rs | | 4082256 | 4082160 | 4080008 | 4080008 | 4080008 | 4080072 | drop-struct-as-object.rs | | 4324472 | 4299712 | 4159136 | 4170968 | 4161928 | 4167104 | drop-trait-enum.rs | | 4100328 | 4100304 | 4093768 | 4093768 | 4093768 | 4093832 | alignment-gep-tup-like-1.rs | | 4101704 | 4098456 | 4080680 | 4080680 | 4081976 | 4082384 | associated-types-doubleendediterator-object.rs | | 4080536 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | associated-types-nested-projections.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | attr-shebang.rs | | 4082328 | 4082024 | 4080008 | 4080008 | 4080008 | 4080704 | autoderef-method-on-trait.rs | | 4082064 | 4082040 | 4080008 | 4080008 | 4080008 | 4080392 | autoderef-method-priority.rs | | 4082016 | 4081624 | 4080000 | 4080000 | 4080000 | 4080064 | autoderef-method.rs | | 4082848 | 4082920 | 4080016 | 4080016 | 4080024 | 4080880 | autoderef-method-twice-but-not-thrice.rs | | 4082216 | 4081824 | 4080008 | 4080008 | 4080008 | 4080216 | autoderef-method-twice.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080016 | 4080080 | where-clause-region-outlives.rs | | | | | | | | where-clauses-cross-crate.rs | | 4081344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | where-clauses-lifetimes.rs | | 4093584 | 4089552 | 4088768 | 4088768 | 4088776 | 4088840 | where-clauses-method.rs | | 4095368 | 4095536 | 4088768 | 4088768 | 4088768 | 4089184 | where-clauses.rs | | 4080528 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | where-clauses-unboxed-closures.rs | | 4081608 | 4081552 | 4080480 | 4080480 | 4080480 | 4080544 | where-for-self.rs | | 4101480 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | while-cont.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | while-flow-graph.rs | | 4080928 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | while-label.rs | | 4108736 | 4101000 | 4085352 | 4085072 | 4081432 | 4081784 | while-let.rs | | 4101744 | 4100264 | 4093608 | 4093608 | 4093752 | 4093816 | while-loop-constraints-2.rs | | 4109256 | 4100096 | 4080200 | 4080840 | 4081048 | 4081256 | while-prelude-drop.rs | | 4093568 | 4093480 | 4092848 | 4092848 | 4092848 | 4092912 | while.rs | | 4102504 | 4102832 | 4093368 | 4093368 | 4093368 | 4093576 | while-with-break.rs | | 4147448 | 4104656 | 4080000 | 4080000 | 4080000 | 4080064 | wrapping-int-api.rs | | 4101928 | 4097608 | 4081392 | 4081392 | 4081736 | 4082136 | writealias.rs | | 4114304 | 4115024 | 4094272 | 4094152 | 4094528 | 4095512 | write-fmt-errors.rs | | 4256256 | 4214040 | 4104408 | 4104416 | 4102144 | 4108624 | wrong-hashset-issue-42918.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | x86stdcall.rs | | | | | | | | xcrate-address-insignificant.rs | | | | | | | | xcrate-associated-type-defaults.rs | | | | | | | | xcrate_generic_fn_nested_return.rs | | | | | | | | xcrate-static-addresses.rs | | | | | | | | xcrate-trait-lifetime-param.rs | | | | | | | | xcrate-unit-struct.rs | | 4142064 | 4136016 | 4107768 | 4111856 | 4107928 | 4112616 | yield1.rs | | 4093520 | 4093488 | 4092928 | 4092928 | 4088832 | 4092992 | yield2.rs | | 4138304 | 4117712 | 4080544 | 4080544 | 4080664 | 4080808 | zero-sized-binary-heap-push.rs | | 4201736 | 4165736 | 4086264 | 4086384 | 4087704 | 4087904 | zero-sized-btreemap-insert.rs | | 4108480 | 4093488 | 4080328 | 4080328 | 4080720 | 4080984 | zero-sized-linkedlist-push.rs | | 4080952 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | zero_sized_subslice_match.rs | | 4080792 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | zero-sized-tuple-struct.rs | | 4144336 | 4108448 | 4080736 | 4080736 | 4081336 | 4083264 | zero-sized-vec-deque-push.rs | | 4118896 | 4102128 | 4080272 | 4080272 | 4080408 | 4080568 | zero-sized-vec-push.rs | | 4081848 | 4081792 | 4080752 | 4080752 | 4080752 | 4080824 | zero-size-type-destructors.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unnamed_argument_mode.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | unreachable-code-1.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | unreachable-code.rs | | 4081016 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | unsafe-coercion.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unsafe-fn-called-from-unsafe-blk.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unsafe-fn-called-from-unsafe-fn.rs | | 4081360 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | unsafe-pointer-assignability.rs | | 4127896 | 4111296 | 4081000 | 4081000 | 4081304 | 4081896 | unsized3.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | unsized.rs | | 4268432 | 4219712 | 4106224 | 4106216 | 4112448 | 4116136 | unsized-tuple-impls.rs | | 4317256 | 4302624 | 4166760 | 4174656 | 4164992 | 4169552 | unwind-resource.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | use-crate-name-alias.rs | | 4080488 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | use-import-export.rs | | | | | | | | use_inline_dtor.rs | | 4080472 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | use-keyword-2.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | use-mod.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | use-nested-groups.rs | | 1322320 | 1322256 | 1322256 | 1322256 | 1322256 | 1322256 | use.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080008 | 4080072 | use-trait-before-def.rs | | 4093080 | 4089048 | 4088480 | 4088480 | 4088480 | 4088552 | use-uninit-match2.rs | | 4093072 | 4089048 | 4088480 | 4088480 | 4088480 | 4088552 | use-uninit-match.rs | | | | | | | | using-target-feature-unstable.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | utf8-bom.rs | | 4090512 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | utf8_idents.rs | | 4112568 | 4103320 | 4093240 | 4093240 | 4093240 | 4097544 | utf8.rs | | | | | | | | variadic-ffi.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | variance-iterators-in-libcore.rs | | 4083440 | 4083120 | 4080000 | 4080000 | 4080000 | 4080208 | variant-attributes.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | variant-structs-trivial.rs | | 4127096 | 4120400 | 4098288 | 4098288 | 4098496 | 4098912 | vec-concat.rs | | 4108304 | 4094000 | 4080128 | 4080128 | 4080232 | 4080752 | vec_cycle.rs | | 4108480 | 4098256 | 4080136 | 4080136 | 4080240 | 4080760 | vec_cycle_wrapped.rs | | 4085872 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | vec-fixed-length.rs | | 4107552 | 4099584 | 4080344 | 4080344 | 4080520 | 4081040 | vec-growth.rs | | 4102384 | 4102800 | 4092920 | 4092920 | 4092920 | 4093128 | vec-late-init.rs | | 4068856 | 4065296 | 1322256 | 1322256 | 1322256 | 4056152 | vec-macro-no-std.rs | | 4145744 | 4138672 | 4085936 | 4081392 | 4086960 | 4088520 | vec-macro-repeat.rs | | 4119176 | 4116840 | 4080608 | 4080608 | 4081368 | 4082032 | vec-macro-rvalue-scope.rs | | 4097648 | 4088288 | 4080008 | 4080008 | 4080208 | 4080592 | vec-macro-with-brackets.rs | | 4091912 | 4088920 | 4080616 | 4080616 | 4080712 | 4081376 | vec-macro-with-trailing-comma.rs | | 4096592 | 4084296 | 4080480 | 4080480 | 4080584 | 4081016 | vec-matching-autoslice.rs | | 4089320 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | vec-matching-fixed.rs | | 4081496 | 4081360 | 4080000 | 4080000 | 4080000 | 4080072 | vec-matching-fold.rs | | 4101912 | 4093408 | 4088752 | 4088752 | 4088752 | 4088816 | vec-matching-legal-tail-element-borrow.rs | | 4115352 | 4090520 | 4080000 | 4080000 | 4079992 | 4082576 | vec-matching.rs | | 4098136 | 4098352 | 4079992 | 4079992 | 4080192 | 4080488 | vec-push.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | vec-repeat-with-cast.rs | | 4090632 | 4090832 | 4079984 | 4079984 | 4079984 | 4081240 | vec.rs | | 4087576 | 4082672 | 4080000 | 4080000 | 4080000 | 4080720 | vec-slice-drop.rs | | 4090376 | 4086776 | 4079992 | 4079992 | 4079992 | 4080192 | vec-slice.rs | | 4096744 | 4084224 | 4080000 | 4080000 | 4080000 | 4081064 | vec-tail-matching.rs | | 4110976 | 4103696 | 4087088 | 4087088 | 4087264 | 4088128 | vec-to_str.rs | | 4081952 | 4082120 | 4080184 | 4080184 | 4080184 | 4080608 | volatile-fat-ptr.rs | | 4289032 | 4256440 | 4157728 | 4157632 | 4159256 | 4161256 | wait-forked-but-failed-child.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | warn-ctypes-inhibit.rs | | | | | | | | weak-lang-item.rs | | 4089720 | 4085712 | 4080016 | 4080016 | 4080016 | 4080328 | weak-new-uninhabited-issue-48493.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | weird-exit-code.rs | | 4168424 | 4142984 | 4105816 | 4106472 | 4106688 | 4107232 | weird-exprs.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | wf-bound-region-in-object-type.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | where-clause-bounds-inconsistency.rs | | 4080624 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | where-clause-early-bound-lifetimes.rs | | 4080512 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | where-clause-method-substituion.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | unique-decl.rs | | 4089840 | 4081432 | 4080000 | 4080000 | 4080000 | 4080072 | unique-ffi-symbols.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unique-generic-assign.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unique-match-discrim.rs | | 4145320 | 4133760 | 4100896 | 4100904 | 4101240 | 4101904 | unit-like-struct-drop-run.rs | | 4088880 | 4088944 | 4088464 | 4088464 | 4088464 | 4088536 | unit-like-struct.rs | | 4080384 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | unit.rs | | 4080816 | 4080456 | 4080048 | 4080048 | 4080048 | 4080112 | unboxed-closures-infer-arg-types-w-bound-regs-from-expected-bound.rs | | 4080936 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | unboxed-closures-infer-explicit-call-early.rs | | 4081160 | 4081128 | 4080024 | 4080024 | 4080024 | 4080096 | unboxed-closures-infer-fnmut-calling-fnmut.rs | | 4081032 | 4081016 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-infer-fnmut-move.rs | | 4081008 | 4080976 | 4080008 | 4080008 | 4080016 | 4080080 | unboxed-closures-infer-fnmut.rs | | 4081304 | 4081272 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-infer-fnonce-move.rs | | 4081288 | 4081256 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-infer-fnonce.rs | | 4081664 | 4081400 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-infer-kind.rs | | 4082200 | 4081424 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-infer-recursive-fn.rs | | 4110144 | 4102640 | 4080688 | 4080688 | 4080896 | 4081656 | unboxed-closures-infer-upvar.rs | | 4081648 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-manual-impl.rs | | 4091936 | 4095936 | 4081912 | 4081912 | 4082560 | 4083056 | unboxed-closures-monomorphization.rs | | 4089232 | 4085536 | 4080032 | 4080032 | 4080032 | 4080312 | unboxed-closures-move-from-projection-issue-30046.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-move-mutable.rs | | 4118544 | 4116344 | 4081776 | 4081776 | 4082368 | 4083616 | unboxed-closures-move-some-upvars-in-by-ref-closure.rs | | 4082504 | 4082024 | 4080008 | 4080008 | 4080008 | 4080456 | unboxed-closures-prelude.rs | | 4081480 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unboxed-closures-simple.rs | | 4082160 | 4081784 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-single-word-env.rs | | 4080480 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-static-call-fn-once.rs | | 4081072 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-sugar-object.rs | | 4080456 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-zero-args.rs | | 4080720 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | underscore-lifetimes.rs | | 4080456 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | underscore-method-after-integer.rs | | 4080408 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | unify-return-ty.rs | | 4080488 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | uninit-empty-types.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | uninstantiable-struct.rs | | 4088992 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | traits-default-method-trivial.rs | | 4088888 | 4088960 | 4088480 | 4088480 | 4088480 | 4088544 | traits-elaborate-type-region.rs | | 4080456 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | traits-impl-object-overlap-issue-23853.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-22019.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-22110.rs | | 4080416 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-22655.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | traits-issue-23003.rs | | 4089216 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-26339.rs | | 4081288 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | traits-multidispatch-infer-convert-target.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | traits-negative-impls.rs | | 4085984 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | traits-repeated-supertrait.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | transmute-non-immediate-to-immediate.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | transmute-specialization.rs | | 4081800 | 4081768 | 4080000 | 4080000 | 4080000 | 4080064 | trivial_casts.rs | | 4267728 | 4250568 | 4142896 | 4150728 | 4144464 | 4148400 | trivial-message.rs | | 4224696 | 4194024 | 4143256 | 4143176 | 4144792 | 4150944 | try-macro.rs | | 4102336 | 4093000 | 4080936 | 4080936 | 4081080 | 4081656 | try-operator-custom.rs | | 4082608 | 4082440 | 4080760 | 4080760 | 4080832 | 4080896 | try-operator-hygiene.rs | | 4146256 | 4125072 | 4091184 | 4091184 | 4088192 | 4093168 | try-operator.rs | | 4258856 | 4231224 | 4152744 | 4152760 | 4154720 | 4156720 | try-wait.rs | | 4087616 | 4083872 | 4080008 | 4080008 | 4080008 | 4081448 | tuple-index-fat-types.rs | | 4086192 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | tuple-index.rs | | 4082400 | 4082296 | 4080016 | 4080016 | 4080016 | 4080080 | tuple-struct-constructor-pointer.rs | | 4094016 | 4094080 | 4093400 | 4093400 | 4093400 | 4093464 | tuple-struct-construct.rs | | 4093992 | 4094056 | 4093304 | 4093304 | 4093304 | 4093368 | tuple-struct-destructuring.rs | | 4093984 | 4093408 | 4088752 | 4088752 | 4088752 | 4088816 | tuple-struct-matching.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | tuple-struct-trivial.rs | | 4081392 | 4080392 | 4079984 | 4079984 | 4079984 | 4080048 | tup.rs | | | | | | | | two-macro-use.rs | | 4081856 | 4082024 | 4080280 | 4080280 | 4080280 | 4080648 | tydesc-name.rs | | 4124616 | 4117776 | 4080976 | 4080976 | 4081232 | 4082184 | type-ascription.rs | | 4080528 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | typeck-fn-to-unsafe-fn-ptr.rs | | 4088840 | 4083280 | 4080016 | 4080016 | 4080016 | 4080088 | typeck-macro-interaction-issue-8852.rs | | 4117288 | 4103560 | 4080984 | 4080736 | 4081192 | 4081856 | typeck_type_placeholder_1.rs | | 4092416 | 4087376 | 4080264 | 4080264 | 4081024 | 4081304 | type-id-higher-rank-2.rs | | | | | | | | typeid-intrinsic.rs | | 4081560 | 4080976 | 4080016 | 4080016 | 4080008 | 4080080 | type-infer-generalize-ty-var.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | type-in-nested-module.rs | | 4113384 | 4106400 | 4082944 | 4082944 | 4083968 | 4084768 | type-macros-hlist.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | type-macros-simple.rs | | 4081336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | type-namespace.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | type-param.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | type-params-in-for-each.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | type-ptr.rs | | 4089640 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | type-sizes.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | typestate-cfg-nesting.rs | | 4080888 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | typestate-multi-decl.rs | | 4080408 | 4080472 | 4080008 | 4080008 | 4080008 | 4080072 | type-use-i1-versus-i8.rs | | 4148968 | 4128480 | 4127640 | 4127640 | 4127632 | 4127704 | u128-as-f32.rs | | 4161488 | 4109648 | 4096568 | 4096568 | 4096576 | 4097080 | u128.rs | | 4081112 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | u32-decr.rs | | 4080928 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | u8-incr-decr.rs | | 4080928 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | u8-incr.rs | | 4191264 | 4132320 | 4084968 | 4084968 | 4089800 | 4090872 | ufcs-polymorphic-paths.rs | | 4080992 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | ufcs-trait-object.rs | | 4080448 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | ufcs-type-params.rs | | 4080328 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | uint.rs | | 4093888 | 4093952 | 4093096 | 4093096 | 4093096 | 4093168 | unary-minus-suffix-inference.rs | | 4082128 | 4081760 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-all-traits.rs | | 4082000 | 4081520 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-blanket-fn-mut.rs | | 4081960 | 4081496 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-blanket-fn.rs | | 4081632 | 4081376 | 4080008 | 4080008 | 4080008 | 4080072 | unboxed-closures-by-ref.rs | | 4081576 | 4081552 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-call-fn-autoderef.rs | | 4081608 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | unboxed-closures-call-sugar-autoderef.rs | | 4103488 | 4101248 | 4081840 | 4081840 | 4081968 | 4082528 | unboxed-closures-counter-not-moved.rs | | | | | | | | unboxed-closures-cross-crate.rs | | 4080480 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-direct-sugary-call.rs | | 4092376 | 4082136 | 4080256 | 4080256 | 4080256 | 4080328 | unboxed-closures-drop.rs | | 4086352 | 4082120 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-extern-fn-hr.rs | | 4082008 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-extern-fn.rs | | 4081728 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | unboxed-closures-fn-as-fnmut-and-fnonce.rs | | 4081416 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-fnmut-as-fnonce.rs | | 4093752 | 4093528 | 4088680 | 4088680 | 4088680 | 4088744 | unboxed-closures-generic.rs | | 4080744 | 4080440 | 4080040 | 4080040 | 4080040 | 4080104 | unboxed-closures-infer-arg-types-from-expected-bound.rs | | 4080992 | 4080448 | 4080040 | 4080040 | 4080040 | 4080112 | unboxed-closures-infer-arg-types-from-expected-object-type.rs | | 4081464 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-default-method-bound.rs | | 4082680 | 4082352 | 4080016 | 4080016 | 4080016 | 4080080 | trait-default-method-bound-subst3.rs | | 4081224 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | trait-default-method-bound-subst4.rs | | | | | | | | trait-default-method-xc-2.rs | | | | | | | | trait-default-method-xc.rs | | 4080472 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | trait-false-ambiguity-where-clause-builtin-bound.rs | | 4181040 | 4160192 | 4088816 | 4092912 | 4094560 | 4096640 | trait-generic.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | trait-impl-2.rs | | | | | | | | trait-impl.rs | | 4081744 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | trait-inheritance2.rs | | 4081776 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-auto.rs | | | | | | | | trait-inheritance-auto-xc-2.rs | | | | | | | | trait-inheritance-auto-xc.rs | | 4081544 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-inheritance-call-bound-inherited2.rs | | 4081544 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-inheritance-call-bound-inherited.rs | | 4081728 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-cast.rs | | 4081832 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | trait-inheritance-cast-without-call-to-supertrait.rs | | 4081584 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | trait-inheritance-cross-trait-call.rs | | | | | | | | trait-inheritance-cross-trait-call-xc.rs | | 4081952 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-diamond.rs | | 4081888 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-inheritance-multiple-inheritors.rs | | 4086000 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | trait-inheritance-multiple-params.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num1.rs | | 4093600 | 4089544 | 4088776 | 4088776 | 4088776 | 4088840 | trait-inheritance-num2.rs | | 4093872 | 4089544 | 4088776 | 4088776 | 4088776 | 4088840 | trait-inheritance-num3.rs | | 4080688 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num5.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num.rs | | 4086960 | 4082680 | 4080016 | 4080016 | 4080016 | 4080080 | trait-inheritance-overloading.rs | | 4090312 | 4084744 | 4080016 | 4080016 | 4080016 | 4080088 | trait-inheritance-overloading-simple.rs | | | | | | | | trait-inheritance-overloading-xc-exe.rs | | 4090240 | 4084360 | 4080016 | 4080016 | 4080016 | 4080088 | trait-inheritance-self-in-supertype.rs | | 4093616 | 4093680 | 4088736 | 4088736 | 4088736 | 4088800 | trait-inheritance-self.rs | | 4081720 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-simple.rs | | 4081512 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-inheritance-static2.rs | | 4081512 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-static.rs | | 4081944 | 4081888 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-subst2.rs | | 4081760 | 4081704 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-subst.rs | | 4081480 | 4081544 | 4080008 | 4080008 | 4080008 | 4080080 | trait-inheritance-visibility.rs | | 4080560 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-item-inside-macro.rs | | 4081960 | 4081544 | 4080008 | 4080008 | 4080280 | 4080352 | trait-object-auto-dedup.rs | | 4081560 | 4081320 | 4080008 | 4080008 | 4080008 | 4080072 | trait-object-exclusion.rs | | 4092024 | 4096360 | 4082248 | 4082248 | 4082248 | 4082736 | trait-object-lifetime-first.rs | | 4082296 | 4082288 | 4080016 | 4080016 | 4080016 | 4080416 | trait-object-with-lifetime-bound.rs | | 4094200 | 4094160 | 4093272 | 4093272 | 4093272 | 4093336 | trait-region-pointer-simple.rs | | | | | | | | trait-safety-ok-cc.rs | | 4081440 | 4081512 | 4080000 | 4080000 | 4080000 | 4080064 | trait-safety-ok.rs | | 4096656 | 4088672 | 4080016 | 4080016 | 4080312 | 4080520 | traits-assoc-type-in-supertrait.rs | | | | | | | | traits-conditional-model-fn.rs | | 4090808 | 4086544 | 4081512 | 4081512 | 4081512 | 4081864 | traits-default-method-macro.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | traits-default-method-mut.rs | | 4088952 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | traits-default-method-self.rs | | 4089240 | 4089592 | 4088768 | 4088768 | 4088768 | 4089152 | trait-static-method-overwriting.rs | | 4183696 | 4154688 | 4088624 | 4092760 | 4094032 | 4095456 | trait-to-str.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-where-clause-vs-impl.rs | | 4092640 | 4092800 | 4081312 | 4081312 | 4081312 | 4081904 | trait-with-bounds-default.rs | | 4094512 | 4094512 | 4093152 | 4093152 | 4089056 | 4089120 | trait-coercion-generic.rs | | 4129200 | 4122536 | 4099536 | 4099704 | 4099664 | 4100528 | trait-coercion.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-composition-trivial.rs | | 4081376 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | trait-copy-guessing.rs | | 4081480 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | trait-default-method-bound-subst2.rs | | 4081608 | 4081480 | 4080016 | 4080016 | 4080016 | 4080080 | trait-default-method-bound-subst.rs | | 4850840 | 4698096 | 4285280 | 4324776 | 4281448 | 4302168 | task-comm-16.rs | | 4272440 | 4250704 | 4146928 | 4150712 | 4144264 | 4148416 | task-comm-4.rs | | 4255592 | 4238048 | 4130248 | 4133872 | 4131688 | 4131504 | task-comm-5.rs | | 4271032 | 4248784 | 4135512 | 4139304 | 4133456 | 4142120 | task-comm-6.rs | | 4255472 | 4238608 | 4129960 | 4134024 | 4127336 | 4131456 | task-comm-chan-nil.rs | | 4204816 | 4191872 | 4112960 | 4116792 | 4114272 | 4115552 | task-stderr.rs | | 4363192 | 4337632 | 4192240 | 4196232 | 4186360 | 4196464 | tcp-stress.rs | | 4142984 | 4131168 | 4100728 | 4100736 | 4101360 | 4102216 | terminate-in-initializer.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | test-allow-dead-extern-static-no-warning.rs | | | | | | | | test-allow-fail-attr.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | test-allow-non-camel-case-variant.rs | | | | | | | | test-fn-signature-verification-for-explicit-return-type.rs | | 4088664 | 4083176 | 4080776 | 4080776 | 4080920 | 4080984 | test-main-not-dead-attr.rs | | 4088656 | 4083168 | 4080768 | 4080768 | 4080912 | 4080984 | test-main-not-dead.rs | | 4088696 | 4083216 | 4080816 | 4080816 | 4080960 | 4081024 | test-runner-hides-buried-main.rs | | 4088664 | 4083176 | 4080776 | 4080776 | 4080920 | 4080984 | test-runner-hides-main.rs | | 4068504 | 4062952 | 4056864 | 4056864 | 4061104 | 4061104 | test-runner-hides-start.rs | | | | | | | | test-should-fail-good-message.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | test-vs-cfg-test.rs | | | | | | | | thread-local-extern-static.rs | | 4080392 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | thread-local-syntax.rs | | 4145288 | 4133472 | 4100792 | 4100792 | 4101448 | 4102088 | tls-dtors-are-run-in-a-static-binary.rs | | 4150792 | 4136112 | 4102240 | 4102240 | 4103176 | 4104104 | tls-init-on-init.rs | | 4150160 | 4134472 | 4100848 | 4100848 | 4102320 | 4103024 | tls-try-with.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | tool_lints_2018_preview.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | tool_lints.rs | | 4080616 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | trailing-comma.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | trait-bounds-basic.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-bounds-impl-comparison-duplicates.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-bounds-recursion.rs | | 4081512 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | trait-bounds.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-cache-issue-18209.rs | | 4110672 | 4101880 | 4080912 | 4080912 | 4081408 | 4082424 | static-recursive.rs | | 4324440 | 4295264 | 4176720 | 4176736 | 4179192 | 4181368 | stdio-is-blocking.rs | | 4081816 | 4081984 | 4080008 | 4080008 | 4080008 | 4080616 | stmt_expr_attr_macro_parse.rs | | 4106896 | 4102424 | 4098600 | 4098600 | 4098600 | 4098912 | str-concat.rs | | 4082488 | 4082552 | 4081320 | 4081320 | 4081392 | 4081568 | string-box-error.rs | | 4081760 | 4081928 | 4080000 | 4080000 | 4080000 | 4080064 | string-escapes.rs | | 4106840 | 4102112 | 4098232 | 4098232 | 4098232 | 4098440 | string-self-append.rs | | 4089432 | 4085168 | 4080296 | 4080296 | 4080296 | 4080760 | str-multiline.rs | | 4087352 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | struct-aliases.rs | | | | | | | | struct-aliases-xcrate.rs | | | | | | | | struct-destructuring-cross-crate.rs | | 4085584 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | struct-field-shorthand.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | struct-like-variant-construct.rs | | 4111568 | 4111632 | 4110880 | 4080008 | 4110880 | 4110952 | struct-like-variant-match.rs | | 4100928 | 4100544 | 4088608 | 4088608 | 4088608 | 4088808 | struct-literal-dtor.rs | | 4091720 | 4091544 | 4080896 | 4080896 | 4080896 | 4081488 | struct-lit-functional-no-fields.rs | | 4081280 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | struct-new-as-field-name.rs | | 4090536 | 4086112 | 4080728 | 4080728 | 4080800 | 4081152 | struct-order-of-eval-1.rs | | 4090560 | 4086136 | 4080800 | 4080800 | 4080800 | 4081176 | struct-order-of-eval-2.rs | | 4082176 | 4081184 | 4080136 | 4080136 | 4080136 | 4080208 | struct-order-of-eval-3.rs | | 4082096 | 4081184 | 4080136 | 4080136 | 4080136 | 4080208 | struct-order-of-eval-4.rs | | 4082904 | 4082256 | 4080008 | 4080008 | 4080008 | 4080072 | struct-partial-move-1.rs | | 4087648 | 4082968 | 4080008 | 4080008 | 4080008 | 4080072 | struct-partial-move-2.rs | | 4081800 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | struct-path-associated-type.rs | | 4086704 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | struct-path-self.rs | | 4093344 | 4093408 | 4088752 | 4088752 | 4088752 | 4088824 | struct-pattern-matching.rs | | | | | | | | struct-return.rs | | 4095832 | 4086248 | 4080000 | 4080000 | 4080000 | 4080072 | structured-compare.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | struct-variant-field-visibility.rs | | | | | | | | struct_variant_xc_match.rs | | | | | | | | struct_variant_xc.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | super-fast-paren-parsing.rs | | 4080328 | 4080392 | 4079984 | 4079984 | 4079992 | 4080056 | super.rs | | 4081568 | 4081512 | 4080008 | 4080008 | 4080008 | 4080080 | supertrait-default-generics.rs | | 4168704 | 4139896 | 4142440 | 4142440 | 4142440 | 4142512 | supported-cast.rs | | | | | | | | svh-add-nothing.rs | | 4081800 | 4081136 | 4079992 | 4079992 | 4079992 | 4080056 | swap-1.rs | | 4096272 | 4091808 | 4079992 | 4079992 | 4079992 | 4081200 | swap-2.rs | | 4083992 | 4083552 | 4080000 | 4080000 | 4080000 | 4080200 | swap-overlapping.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | sync-send-atomics.rs | | 4111456 | 4108168 | 4103280 | 4103280 | 4103408 | 4103744 | sync-send-in-std.rs | | 4088672 | 4083176 | 4080776 | 4080776 | 4080912 | 4080984 | syntax-extension-cfg.rs | | 4116680 | 4104752 | 4087344 | 4087112 | 4087672 | 4088432 | syntax-extension-source-utils.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | syntax-trait-polarity.rs | | 4088968 | 4083256 | 4080000 | 4080000 | 4080000 | 4080072 | tag-align-dyn-u64.rs | | 4094928 | 4085176 | 4080792 | 4080792 | 4080936 | 4081000 | tag-align-dyn-variants.rs | | 4108808 | 4104600 | 4099144 | 4099144 | 4099288 | 4099640 | tag-align-shape.rs | | 4088952 | 4083248 | 4080000 | 4080000 | 4080000 | 4080064 | tag-align-u64.rs | | 4107752 | 4103432 | 4098384 | 4098384 | 4098384 | 4098848 | tag-disr-val-shape.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | tag-exports.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | tag-in-block.rs | | 4088904 | 4083424 | 4079984 | 4079984 | 4079984 | 4080056 | tag.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | tag-variant-disr-type-mismatch.rs | | 4090608 | 4090448 | 4080992 | 4080992 | 4080992 | 4081456 | tag-variant-disr-val.rs | | 4083432 | 4083128 | 4080000 | 4080000 | 4080000 | 4080208 | tail-call-arg-leak.rs | | 4106152 | 4100544 | 4093680 | 4093680 | 4093888 | 4093952 | tail-cps.rs | | 4088928 | 4083312 | 4079992 | 4079992 | 4079992 | 4081120 | tail-direct.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | slowparse-string.rs | | 4120696 | 4103856 | 4092200 | 4092200 | 4092368 | 4089008 | small-enums-with-fields.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | snake-case-no-lowercase-equivalent.rs | | 4151408 | 4140136 | 4116360 | 4116360 | 4116552 | 4117080 | spawn2.rs | | 4154520 | 4148784 | 4117432 | 4117432 | 4118176 | 4118920 | spawn-fn.rs | | 4112944 | 4113088 | 4088432 | 4088432 | 4088496 | 4089024 | spawning-with-debug.rs | | 4147080 | 4140552 | 4116640 | 4116648 | 4112800 | 4113320 | spawn.rs | | 4212568 | 4216928 | 4121280 | 4124928 | 4122312 | 4124832 | spawn-types.rs | | 4117680 | 4100288 | 4081008 | 4081008 | 4081008 | 4081480 | sse2.rs | | 4080944 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | stable-addr-of.rs | | | | | | | | static-array-across-crate.rs | | | | | | | | static-fn-inline-xc.rs | | | | | | | | static-fn-trait-xc.rs | | 4081720 | 4081600 | 4080888 | 4080888 | 4080888 | 4080952 | static-function-pointer.rs | | | | | | | | static-function-pointer-xc.rs | | 4161960 | 4137880 | 4086720 | 4086712 | 4087784 | 4088848 | static-impl.rs | | 4081648 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | static-method-in-trait-with-tps-intracrate.rs | | 4080600 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | static-methods-in-traits2.rs | | 4081832 | 4081808 | 4080008 | 4080008 | 4080008 | 4080072 | static-methods-in-traits.rs | | | | | | | | static-method-xcrate.rs | | | | | | | | static-mut-foreign.rs | | | | | | | | static-mut-xc.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | slowparse-bstring.rs | | 4110208 | 4105512 | 4088560 | 4088560 | 4088560 | 4088768 | size-and-align.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | sized-borrowed-pointer.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | sized-owned-pointer.rs | | 4143040 | 4133904 | 4099600 | 4099600 | 4099784 | 4100608 | sleep.rs | | 4112920 | 4106256 | 4085584 | 4085584 | 4085680 | 4087744 | slice-2.rs | | 4103480 | 4101232 | 4080624 | 4080624 | 4080840 | 4081584 | slice_binary_search.rs | | 4106696 | 4091936 | 4080008 | 4080008 | 4080008 | 4080080 | slice-of-zero-size-elements.rs | | 4131528 | 4123744 | 4099816 | 4099808 | 4100048 | 4100568 | slice-panic-1.rs | | 4142456 | 4130104 | 4100608 | 4100600 | 4100952 | 4101472 | slice-panic-2.rs | | 4080400 | 4080464 | 4080056 | 4080056 | 4080056 | 4080128 | simple_global_asm.rs | | 4088888 | 4088952 | 4088472 | 4088472 | 4088472 | 4088544 | simple-match-generic-tag.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | simple-generic-tag.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | simple-infer.rs | | 4081328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | rfc1623.rs | | 4181688 | 4153864 | 4106944 | 4107056 | 4104112 | 4101896 | rfc1857-drop-order.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | rfc-2421-unreserve-pure-offsetof-sizeof-alignof.rs | | | | | | | | rmeta.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | rustc-rust-log.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | rvalue-static-promotion.rs | | 4422760 | 4127840 | 4121088 | 4121088 | 4116992 | 4117056 | saturating-float-casts.rs | | | | | | | | segfault-no-out-of-stack.rs | | 4081496 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | self-in-mut-slot-immediate-value.rs | | 4081432 | 4081888 | 4080008 | 4080008 | 4080008 | 4080072 | self-shadowing-import.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | self-type-param.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | semi-after-macro-ty.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | semistatement-in-lambda.rs | | 4196712 | 4197992 | 4112800 | 4112528 | 4109784 | 4112712 | sendable-class.rs | | 4081056 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | sendfn-is-a-block.rs | | 4103008 | 4098856 | 4080904 | 4080904 | 4081000 | 4081544 | send-is-not-static-par-for.rs | | 4213888 | 4178720 | 4104824 | 4104832 | 4109496 | 4111920 | send_str_hashmap.rs | | 4322136 | 4261040 | 4113080 | 4113080 | 4115984 | 4119288 | send_str_treemap.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | send-type-inference.rs | | | | | | | | sepcomp-cci.rs | | | | | | | | sepcomp-extern.rs | | 4081248 | 4081024 | 4080008 | 4080008 | 4080008 | 4080072 | sepcomp-fns-backwards.rs | | 4081208 | 4080984 | 4079992 | 4079992 | 4079992 | 4080064 | sepcomp-fns.rs | | | | | | | | sepcomp-lib.rs | | 4080904 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | sepcomp-statics.rs | | 4132448 | 4129080 | 4099920 | 4099920 | 4100256 | 4100784 | sepcomp-unwind.rs | | 4124336 | 4116352 | 4085736 | 4085736 | 4081888 | 4083992 | seq-compare.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | shadowed-use-visibility.rs | | 4116584 | 4083328 | 4079992 | 4079992 | 4079992 | 4080288 | shadow.rs | | 4088872 | 4088936 | 4088456 | 4088456 | 4088456 | 4088528 | shebang.rs | | 4123016 | 4080704 | 4080136 | 4080136 | 4080136 | 4080200 | shift-near-oflo.rs | | 4092144 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | shift.rs | | 4085632 | 4081152 | 4080000 | 4080000 | 4080000 | 4080072 | shift-various-types.rs | | 4100432 | 4100488 | 4093296 | 4093296 | 4089304 | 4089456 | show-boxed-slice.rs | | 4247176 | 4218888 | 4142168 | 4142160 | 4148104 | 4149880 | signal-exit-status.rs | | 4081376 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | signed-shift-const-eval.rs | | 4289160 | 4268072 | 4169704 | 4169880 | 4167688 | 4170176 | sigpipe-should-be-ignored.rs | | 4110880 | 4110944 | 4080000 | 4080000 | 4080000 | 4080064 | simd-generics.rs | | 4110512 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | simd-intrinsic-generic-arithmetic.rs | | 4171040 | 4133304 | 4125128 | 4125128 | 4125488 | 4125552 | simd-intrinsic-generic-cast.rs | | 4158104 | 4115504 | 4080016 | 4080016 | 4080016 | 4080080 | simd-intrinsic-generic-comparison.rs | | 4108024 | 4087080 | 4080016 | 4080016 | 4080016 | 4080872 | simd-intrinsic-generic-elements.rs | | 4135816 | 4129512 | 4115568 | 4115568 | 4115608 | 4116112 | simd-intrinsic-generic-gather.rs | | 4130640 | 4122472 | 4080016 | 4080016 | 4080016 | 4080080 | simd-intrinsic-generic-select.rs | | 4093424 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | simd-size-align.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | simd-type.rs | | 4081576 | 4081640 | 4080000 | 4080000 | 4080000 | 4080064 | simd-upgraded.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | simple-generic-match.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080024 | 4080088 | regions-no-variance-from-fn-generics.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-nullary-variant.rs | | 4081120 | 4081096 | 4080000 | 4080000 | 4080000 | 4080064 | regions-params.rs | | 4080448 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | regions-reassign-let-bound-pointer.rs | | 4080448 | 4080424 | 4080016 | 4080016 | 4080024 | 4080088 | regions-reassign-match-bound-pointer.rs | | 4201264 | 4168056 | 4099344 | 4099352 | 4100272 | 4102240 | regions-refcell.rs | | 4089240 | 4083752 | 4080016 | 4080016 | 4080016 | 4081288 | regions-return-interior-of-option.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-scope-chain-example.rs | | 4093496 | 4093560 | 4088736 | 4088736 | 4088736 | 4088800 | regions-self-impls.rs | | 4093328 | 4093392 | 4088736 | 4088736 | 4088736 | 4088800 | regions-self-in-enums.rs | | 4093320 | 4093384 | 4088728 | 4088728 | 4088728 | 4088792 | regions-simple.rs | | 4080752 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-static-bound.rs | | 4094616 | 4094264 | 4088968 | 4088968 | 4088968 | 4089040 | regions-static-closure.rs | | 4082240 | 4082240 | 4080008 | 4080008 | 4080008 | 4080384 | regions-trait-object-1.rs | | 4080368 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | regions-variance-contravariant-use-contravariant.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | regions-variance-covariant-use-covariant.rs | | 4106928 | 4103464 | 4093672 | 4093672 | 4093744 | 4093976 | repeated-vector-syntax.rs | | 4088160 | 4084936 | 4081112 | 4081112 | 4081216 | 4081504 | repeat-expr-in-static.rs | | 4088672 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | repr_c_int_align.rs | | 4081368 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | resolve-issue-2428.rs | | 4080608 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | resolve-pseudo-shadowing.rs | | 4100824 | 4100096 | 4093928 | 4093928 | 4093928 | 4098088 | resource-assign-is-not-copy.rs | | 4100376 | 4099576 | 4092840 | 4092840 | 4088744 | 4088816 | resource-destruct.rs | | 4090320 | 4084552 | 4080000 | 4080000 | 4080000 | 4080072 | resource-in-struct.rs | | 4137992 | 4119704 | 4081168 | 4081168 | 4081944 | 4083504 | result-opt-conversions.rs | | 4108536 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | ret-bang.rs | | 4080392 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | ret-none.rs | | 4089648 | 4081144 | 4080248 | 4080248 | 4080248 | 4080312 | return-from-closure.rs | | 4080392 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | return-nil.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | rfc-1014-2.rs | | 4088944 | 4089008 | 4088456 | 4088456 | 4088456 | 4088528 | rfc-1014.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | project-defer-unification.rs | | 4081128 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | promoted_overflow_opt.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | ptr-coercion.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | pub-extern-privacy.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | pub-item-inside-macro.rs | | 4080432 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | pub-method-inside-macro.rs | | | | | | | | pub_use_mods_xcrate_exe.rs | | | | | | | | pub-use-xcrate.rs | | 4089048 | 4089112 | 4088464 | 4088464 | 4088464 | 4088528 | purity-infer.rs | | 4091408 | 4085256 | 4080000 | 4080000 | 4080000 | 4081152 | range_inclusive_gate.rs | | 4089224 | 4081592 | 4080016 | 4080016 | 4080016 | 4080160 | range-inclusive-pattern-precedence.rs | | 4099976 | 4085448 | 4079984 | 4079984 | 4079984 | 4080968 | range.rs | | 4107616 | 4097912 | 4080000 | 4080000 | 4080000 | 4081552 | ranges-precedence.rs | | 4143728 | 4119624 | 4080576 | 4080576 | 4081744 | 4082432 | range-type-infer.rs | | 4240576 | 4181952 | 4090736 | 4090744 | 4092672 | 4102416 | raw-fat-ptr.rs | | 4086152 | 4082208 | 4079992 | 4079992 | 4079992 | 4080832 | raw-str.rs | | 4108216 | 4104264 | 4093408 | 4093408 | 4093408 | 4093688 | rcvr-borrowed-to-slice.rs | | | | | | | | reachable-unnameable-items.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | reachable-unnameable-type-alias.rs | | 4081320 | 4081392 | 4079992 | 4079992 | 4079992 | 4080056 | readalias.rs | | 4109424 | 4105144 | 4099232 | 4099232 | 4099376 | 4099720 | rec-align-u32.rs | | 4109424 | 4105144 | 4099232 | 4099232 | 4099376 | 4099720 | rec-align-u64.rs | | 4101144 | 4100776 | 4093096 | 4093096 | 4093096 | 4093432 | rec-auto.rs | | 4085616 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | rec-extend.rs | | 4081488 | 4081424 | 4079992 | 4079992 | 4079992 | 4080064 | record-pat.rs | | 4085600 | 4081456 | 4080776 | 4080776 | 4080776 | 4080840 | rec.rs | | 4085728 | 4081696 | 4080784 | 4080784 | 4080784 | 4080848 | rec-tup.rs | | | | | | | | reexported-static-methods-cross-crate.rs | | | | | | | | reexport-should-still-link.rs | | 4080472 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | reexport-star.rs | | | | | | | | reexport-test-harness-main.rs | | 4080888 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | refer-to-other-statics-by-value.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | regions-addr-of-interior-of-unique-box.rs | | 4093400 | 4093392 | 4088736 | 4088736 | 4088736 | 4088800 | regions-addr-of-ret.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-assoc-type-region-bound.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-assoc-type-static-bound.rs | | 4081416 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-borrow-evec-fixed.rs | | 4090016 | 4086336 | 4080008 | 4080008 | 4080008 | 4081192 | regions-borrow-evec-uniq.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | regions-bot.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | regions-bound-lists-feature-gate-2.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-bound-lists-feature-gate.rs | | 4082432 | 4082272 | 4080000 | 4080000 | 4080008 | 4080072 | regions-copy-closure.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-creating-enums2.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-creating-enums5.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-debruijn-of-object.rs | | 4080512 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-dependent-autofn.rs | | 4089104 | 4085272 | 4080008 | 4080008 | 4080008 | 4080216 | regions-dependent-autoslice.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-dependent-let-ref.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | regions-early-bound-lifetime-in-assoc-fn.rs | | 4081712 | 4081656 | 4080024 | 4080024 | 4080024 | 4080088 | regions-early-bound-used-in-bound-method.rs | | 4081696 | 4081640 | 4080016 | 4080016 | 4080016 | 4080080 | regions-early-bound-used-in-bound.rs | | 4081824 | 4081768 | 4080024 | 4080024 | 4080024 | 4080088 | regions-early-bound-used-in-type-param.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | regions-expl-self.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-fn-subtyping-2.rs | | 4080376 | 4080440 | 4080040 | 4080040 | 4080040 | 4080104 | regions-free-region-outlives-static-outlives-free-region.rs | | 4090128 | 4084408 | 4080016 | 4080016 | 4080016 | 4080088 | regions-infer-borrow-scope-addr-of.rs | | 4093008 | 4088336 | 4080016 | 4080016 | 4080016 | 4081400 | regions-infer-borrow-scope-view.rs | | 4081712 | 4081680 | 4080008 | 4080008 | 4080000 | 4080072 | regions-infer-call-2.rs | | 4081520 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | regions-infer-call.rs | | 4081480 | 4081544 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-contravariance-due-to-ret.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-reborrow-ref-mut-recurse.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-region-in-fn-but-not-type.rs | | 4080520 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-infer-static-from-proc.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | regions-issue-21422.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | regions-issue-22246.rs | | 4081976 | 4081920 | 4080032 | 4080032 | 4080032 | 4080096 | regions-lifetime-static-items-enclosing-scopes.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | regions-link-fn-args.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-lub-ref-ref-rc.rs | | 4082456 | 4082328 | 4080000 | 4080000 | 4080008 | 4080072 | regions-mock-codegen.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080016 | 4080088 | regions-no-bound-in-argument-cleanup.rs | | 4349160 | 4305192 | 4182568 | 4182552 | 4189120 | 4191880 | out-of-stack.rs | | 4081352 | 4081416 | 4080736 | 4080736 | 4080736 | 4080800 | out-pointer-aliasing.rs | | 4093240 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | over-constrained-vregs.rs | | 4126528 | 4088904 | 4080592 | 4080592 | 4080696 | 4081208 | overlap-doesnt-conflict-with-specialization.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | overlap-permitted-for-marker-traits-neg.rs | | 4126496 | 4088888 | 4080584 | 4080584 | 4080688 | 4081200 | overlap-permitted-for-marker-traits.rs | | 4089360 | 4084200 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-autoderef-count.rs | | 4081016 | 4081080 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-autoderef-indexing.rs | | 4095184 | 4085880 | 4080008 | 4080008 | 4080760 | 4080920 | overloaded-autoderef-order.rs | | 4081952 | 4082128 | 4080008 | 4080008 | 4080008 | 4081032 | overloaded-autoderef-vtable.rs | | | | | | | | overloaded-autoderef-xcrate.rs | | 4081792 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-object-one-arg.rs | | 4081872 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-object-two-args.rs | | 4081720 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-object-zero-args.rs | | 4080696 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-param-vtables.rs | | 4081488 | 4081192 | 4080008 | 4080008 | 4080008 | 4080072 | overloaded-calls-simple.rs | | 4081040 | 4081008 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-calls-zero-args.rs | | 4152632 | 4127240 | 4086640 | 4086640 | 4087824 | 4088888 | overloaded-deref-count.rs | | 4189136 | 4159568 | 4085560 | 4085560 | 4094032 | 4095800 | overloaded-deref.rs | | 4088888 | 4083448 | 4080032 | 4080032 | 4080032 | 4080096 | overloaded_deref_with_ref_pattern_issue15609.rs | | 4080984 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded_deref_with_ref_pattern.rs | | 4081416 | 4081240 | 4080000 | 4080000 | 4080000 | 4080072 | owned-implies-static.rs | | 4080848 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | packed-struct-borrow-element.rs | | 4087272 | 4082152 | 4080416 | 4080416 | 4080416 | 4080552 | packed-struct-drop-aligned.rs | | 4088048 | 4084808 | 4080760 | 4080760 | 4080728 | 4081296 | packed-struct-generic-layout.rs | | 4085024 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | packed-struct-generic-size.rs | | 4088040 | 4084808 | 4080616 | 4080616 | 4080720 | 4081288 | packed-struct-layout.rs | | 4085312 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | packed-struct-match.rs | | 4094120 | 4080872 | 4080000 | 4080000 | 4080000 | 4080072 | packed-struct-size.rs | | | | | | | | packed-struct-size-xc.rs | | 4100456 | 4090416 | 4085136 | 4085136 | 4081192 | 4081264 | packed-struct-vec.rs | | 4088040 | 4084808 | 4080624 | 4080624 | 4080728 | 4081288 | packed-tuple-struct-layout.rs | | 4089984 | 4080880 | 4080008 | 4080008 | 4080008 | 4080072 | packed-tuple-struct-size.rs | | 4132696 | 4129480 | 4100040 | 4100040 | 4100384 | 4101032 | panic-in-dtor-drops-fields.rs | | 4081736 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | panic-safe.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | parameterized-trait-with-bounds.rs | | 4093080 | 4088936 | 4088464 | 4088464 | 4088464 | 4088528 | paren-free.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | parse-assoc-type-lt.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080008 | 4080080 | parse-complex-macro-invoc-op.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | parse-panic.rs | | 4081128 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | parser-unicode-whitespace.rs | | 4080384 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | path.rs | | 4145344 | 4137192 | 4118400 | 4118424 | 4119304 | 4120640 | paths-containing-nul.rs | | 4088696 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-ranges.rs | | 4082824 | 4081720 | 4080008 | 4080008 | 4080016 | 4080080 | pattern-bound-var-in-for-each.rs | | 4093656 | 4093600 | 4092832 | 4092832 | 4088736 | 4088800 | pattern-in-closure.rs | | 4094208 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-1.rs | | 4088808 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-2.rs | | 4080952 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-3.rs | | 4093968 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-4.rs | | 4080472 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-5.rs | | 4085632 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-6.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-7.rs | | 4253712 | 4235232 | 4175000 | 4175000 | 4176536 | 4178312 | print-stdout-eprint-stderr.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | privacy1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | privacy-ns.rs | | | | | | | | privacy-reexport.rs | | 4080944 | 4080840 | 4080000 | 4080000 | 4080000 | 4080072 | private-class-field.rs | | 4082568 | 4081768 | 4080000 | 4080000 | 4080000 | 4080064 | private-method.rs | | | | | | | | priv-impl-prim-ty.rs | | 4409480 | 4349680 | 4178544 | 4178544 | 4181232 | 4190696 | process-envs.rs | | 4240944 | 4217464 | 4142032 | 4142032 | 4147824 | 4149672 | process-exit.rs | | 4337008 | 4291056 | 4166488 | 4166488 | 4164248 | 4167488 | process-remove-from-env.rs | | 4237648 | 4224560 | 4157824 | 4157824 | 4159232 | 4156680 | process-sigpipe.rs | | 4198944 | 4184224 | 4136480 | 4136480 | 4137672 | 4138736 | process-spawn-nonexistent.rs | | 4424464 | 4367984 | 4209176 | 4209344 | 4212752 | 4217872 | process-spawn-with-unicode-params.rs | | 4241176 | 4227800 | 4154032 | 4153960 | 4155576 | 4157384 | process-status-inherits-stdin.rs | | 4084880 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | project-cache-issue-31849.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | project-cache-issue-37154.rs | | 4081736 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | newlambdas.rs | | 4118144 | 4116904 | 4080768 | 4081504 | 4082072 | 4082544 | newtype-polymorphic.rs | | 4094080 | 4094064 | 4088720 | 4088720 | 4088720 | 4088792 | newtype.rs | | 4083200 | 4082496 | 4080008 | 4080008 | 4080008 | 4080072 | newtype-struct-drop-run.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | newtype-struct-with-dtor.rs | | | | | | | | newtype-struct-xc-2.rs | | | | | | | | newtype-struct-xc.rs | | 4081296 | 4081200 | 4080000 | 4080000 | 4080000 | 4080072 | newtype-temporary.rs | | 4109680 | 4098840 | 4086536 | 4086536 | 4083304 | 4083376 | next-power-of-two-overflow-debug.rs | | 4096112 | 4082048 | 4080192 | 4080192 | 4080184 | 4080256 | next-power-of-two-overflow-ndebug.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | nil-decl-in-foreign.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | nil-pattern.rs | | 4080480 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | no-core-1.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | no-drop-flag-size.rs | | 4132592 | 4129096 | 4100008 | 4100016 | 4100320 | 4100840 | no-landing-pads.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | non-built-in-quote.rs | | 4082160 | 4081296 | 4080000 | 4080000 | 4080000 | 4080064 | nondrop-cycle.rs | | 4081736 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | non-legacy-modes.rs | | 4089192 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | nonzero-enum.rs | | 4080480 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | no-std-1.rs | | 4080480 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | no-std-2.rs | | 4080664 | 4080592 | 4079992 | 4079992 | 4079992 | 4080056 | no-std-3.rs | | 4276208 | 4256504 | 4177656 | 4181920 | 4179368 | 4185880 | no-stdio.rs | | 4101712 | 4091608 | 4080168 | 4080168 | 4080168 | 4081984 | nul-characters.rs | | 4081440 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | nullable-pointer-ffi-compat.rs | | 4088968 | 4084120 | 4080112 | 4080112 | 4080112 | 4080312 | nullable-pointer-opt-closures.rs | | 4080840 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nullable-pointer-size.rs | | 4081376 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | nullary-or-pattern.rs | | 4081712 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | numeric-fields.rs | | 4094760 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | numeric-method-autoexport.rs | | 4312256 | 4196656 | 4119168 | 4119168 | 4119168 | 4119232 | num-wrapping.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | object-lifetime-default-default-to-static.rs | | 4080648 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | object-lifetime-default-from-ref-struct.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | object-lifetime-default-from-rptr-box.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080016 | 4080088 | object-lifetime-default-from-rptr-mut.rs | | 4080544 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | object-lifetime-default-from-rptr.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | object-lifetime-default-from-rptr-struct.rs | | 4081088 | 4081048 | 4080008 | 4080008 | 4080008 | 4080072 | object-method-numbering.rs | | 4081896 | 4081736 | 4080024 | 4080024 | 4080024 | 4080088 | object-safety-sized-self-by-value-self.rs | | 4082008 | 4081576 | 4080024 | 4080024 | 4080024 | 4080088 | object-safety-sized-self-generic-method.rs | | 4081888 | 4081568 | 4080024 | 4080024 | 4080016 | 4080088 | object-safety-sized-self-return-Self.rs | | 4081440 | 4081216 | 4080016 | 4080016 | 4080272 | 4080432 | objects-coerce-freeze-borrored.rs | | 4091760 | 4085896 | 4080096 | 4080096 | 4080096 | 4080240 | once-move-out-on-heap.rs | | 4080688 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | one-tuple.rs | | 4130352 | 4125880 | 4080008 | 4080008 | 4080008 | 4080080 | op-assign-builtins-by-ref.rs | | 4098352 | 4094064 | 4093312 | 4093312 | 4093312 | 4093376 | opeq.rs | | 4080944 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | operator-associativity.rs | | 4082232 | 4081824 | 4080008 | 4080008 | 4080008 | 4080072 | operator-multidispatch.rs | | 4080808 | 4080744 | 4080160 | 4080160 | 4080160 | 4080224 | optimization-fuel-0.rs | | 4081000 | 4080744 | 4080160 | 4080160 | 4080160 | 4080224 | optimization-fuel-1.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | optional_comma_in_match_arm.rs | | 4115072 | 4105120 | 4092872 | 4092872 | 4092872 | 4093024 | option-ext.rs | | 4091272 | 4085416 | 4080000 | 4080000 | 4080000 | 4080064 | option-unwrap.rs | | 4088704 | 4085264 | 4080936 | 4080936 | 4081040 | 4081328 | order-drop-with-match.rs | | 4081472 | 4081448 | 4079992 | 4079992 | 4079992 | 4080064 | or-pattern.rs | | 4081320 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | move-arg.rs | | 4080472 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | move-nullary-fn.rs | | 4110584 | 4102392 | 4080496 | 4081152 | 4081432 | 4081776 | move-out-of-field.rs | | | | | | | | moves-based-on-type-cross-crate.rs | | 4081264 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | move-scalar.rs | | 4100920 | 4100536 | 4088592 | 4088592 | 4088592 | 4088800 | move-self.rs | | | | | | | | msvc-data-only.rs | | 4088872 | 4088936 | 4088456 | 4088456 | 4088456 | 4088528 | multibyte.rs | | 4081880 | 4081704 | 4080000 | 4080000 | 4080000 | 4080064 | multidispatch1.rs | | 4081544 | 4081152 | 4080000 | 4080000 | 4080000 | 4080064 | multidispatch2.rs | | 4088176 | 4082680 | 4080032 | 4080032 | 4080032 | 4080096 | multidispatch-conditional-impl-not-considered.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | multi-let.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | multiline-comment.rs | | 4425104 | 4356664 | 4187224 | 4187000 | 4186000 | 4194792 | multi-panic.rs | | 4085680 | 4080864 | 4080000 | 4080000 | 4080000 | 4080064 | multiple-reprs.rs | | 4080416 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | multiple-trait-bounds.rs | | 4087608 | 4083384 | 4080200 | 4080200 | 4080200 | 4080264 | mutability-inherits-through-fixed-length-vec.rs | | 4115008 | 4105560 | 4092864 | 4092864 | 4093040 | 4093336 | mutable-alias-vec.rs | | 4120936 | 4111904 | 4110960 | 4110960 | 4110960 | 4111024 | mut-in-ident-patterns.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | mutual-recursion-group.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mut-vstore-expr.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | namespaced-enum-emulate-flat.rs | | | | | | | | namespaced-enum-emulate-flat-xc.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | namespaced-enum-glob-import.rs | | | | | | | | namespaced-enum-glob-import-xcrate.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | namespaced-enums.rs | | | | | | | | namespaced-enums-xcrate.rs | | 4073632 | 4069536 | 4069384 | 4069384 | 4069384 | 4069384 | native-print-no-runtime.rs | | 4088648 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | negative.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nested-block-comment.rs | | 4081448 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | nested-class.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nested-enum-same-names.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nested-exhaustive-match.rs | | 4081872 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | nested-function-names-issue-8587.rs | | | | | | | | nested_item_main.rs | | 4101616 | 4089112 | 4088480 | 4088480 | 4088480 | 4088544 | nested-matchs.rs | | 4101376 | 4099992 | 4088464 | 4088464 | 4088464 | 4088536 | nested-pattern.rs | | 4098264 | 4099592 | 4079992 | 4079992 | 4080288 | 4080848 | nested-vec-1.rs | | 4111224 | 4109352 | 4093400 | 4093400 | 4093600 | 4094128 | nested-vec-2.rs | | 4169368 | 4155872 | 4117384 | 4117392 | 4117936 | 4119208 | nested-vec-3.rs | | 4084480 | 4083320 | 4080000 | 4080000 | 4080000 | 4080200 | never_coercions.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | never-result.rs | | 4080344 | 4080400 | 4080000 | 4080000 | 4080000 | 4080072 | never-type-rvalues.rs | | 4081960 | 4081808 | 4080000 | 4080000 | 4080000 | 4080216 | new-box-syntax.rs | | 4094136 | 4094200 | 4093496 | 4093496 | 4093496 | 4093560 | new-impl-syntax.rs | | 4088880 | 4088944 | 4088472 | 4088472 | 4088464 | 4088536 | new-import-syntax.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | newlambdas-ret-infer2.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080008 | 4080072 | newlambdas-ret-infer.rs | | 4093400 | 4093464 | 4088808 | 4088808 | 4088808 | 4088872 | new-style-constants.rs | | 4093448 | 4093512 | 4088848 | 4092944 | 4088856 | 4088920 | new-style-fixed-length-vec.rs | | 4109984 | 4102384 | 4080480 | 4081136 | 4081344 | 4081936 | new-unicode-escapes.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | new-unsafe-pointers.rs | | 4115600 | 4101288 | 4080016 | 4080016 | 4080400 | 4081024 | method-two-trait-defer-resolution-1.rs | | 4082056 | 4082120 | 4080000 | 4080000 | 4080000 | 4080072 | method-where-clause.rs | | 4080576 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | mid-path-type-params.rs | | 4194720 | 4157904 | 4090112 | 4090112 | 4091848 | 4098288 | minmax-stability-issue-23687.rs | | 4093992 | 4089464 | 4080000 | 4080000 | 4080000 | 4080072 | mir_adt_construction.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | mir_ascription_coercion.rs | | 4116376 | 4102224 | 4080488 | 4080488 | 4080712 | 4081128 | mir_augmented_assignments.rs | | 4081752 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_autoderef.rs | | 4081872 | 4081696 | 4079992 | 4079992 | 4079992 | 4080064 | mir_boxing.rs | | 4090688 | 4082648 | 4080184 | 4080184 | 4080184 | 4080528 | mir_build_match_comparisons.rs | | 4107648 | 4098288 | 4082216 | 4082440 | 4082920 | 4082992 | mir_calls_to_shims.rs | | 4081120 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | mir_call_with_associated_type.rs | | 4081104 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_cast_fn_ret.rs | | 4095936 | 4092192 | 4088952 | 4088952 | 4088952 | 4089248 | mir_codegen_array_2.rs | | 4096024 | 4092192 | 4088944 | 4088944 | 4088944 | 4089240 | mir_codegen_array.rs | | 4081208 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | mir_codegen_call_converging.rs | | 4151744 | 4135640 | 4080416 | 4080416 | 4080408 | 4080480 | mir_codegen_calls.rs | | | | | | | | mir_codegen_calls_variadic.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | mir_codegen_critical_edge.rs | | 4093608 | 4089160 | 4088600 | 4088600 | 4088600 | 4088672 | mir_codegen_spike1.rs | | 4080896 | 4080960 | 4080000 | 4080000 | 4080008 | 4080072 | mir_codegen_switchint.rs | | 4085752 | 4081728 | 4080000 | 4080000 | 4080000 | 4080072 | mir_codegen_switch.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | mir_coercion_casts.rs | | 4107496 | 4098400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_coercions.rs | | 4090144 | 4086264 | 4081416 | 4081416 | 4081800 | 4082384 | mir_constval_adts.rs | | 4145432 | 4125736 | 4087160 | 4087272 | 4087888 | 4088904 | mir_drop_order.rs | | 4081696 | 4081536 | 4080008 | 4080008 | 4080008 | 4080072 | mir_early_return_scope.rs | | 4082768 | 4081584 | 4080248 | 4080248 | 4080248 | 4080312 | mir_fat_ptr_drop.rs | | 4089280 | 4085984 | 4079992 | 4079992 | 4079992 | 4080064 | mir_fat_ptr.rs | | 37647600 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | mir_heavy_promoted.rs | | 4081040 | 4081104 | 4080000 | 4080000 | 4080000 | 4080072 | mir_match_arm_guard.rs | | 4147960 | 4139592 | 4087664 | 4087664 | 4088384 | 4123832 | mir_misc_casts.rs | | 4086464 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | mir_overflow_off.rs | | 4186192 | 4153112 | 4086008 | 4090104 | 4087256 | 4089120 | mir_raw_fat_ptr.rs | | | | | | | | mir_refs_correct.rs | | 4080408 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | mir_small_agg_arg.rs | | 4081248 | 4081128 | 4080008 | 4080008 | 4080008 | 4080072 | mir_struct_with_assoc_ty.rs | | 4081296 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | mir_temp_promotions.rs | | 4080432 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | mir-typeck-normalize-fn-sig.rs | | 4080480 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | mir_void_return_2.rs | | 4080488 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_void_return.rs | | 4081360 | 4081424 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_implicit.rs | | 4081352 | 4081416 | 4079992 | 4079992 | 4080000 | 4080064 | mod_dir_path2.rs | | 4081352 | 4081416 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_path3.rs | | 4081472 | 4081536 | 4080000 | 4080000 | 4080000 | 4080072 | mod_dir_path_multi.rs | | 4081352 | 4081424 | 4080000 | 4080000 | 4079992 | 4080064 | mod_dir_path.rs | | 4081384 | 4081448 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_recursive.rs | | 4081360 | 4081424 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_simple.rs | | | | | | | | mod_file_aux.rs | | 4081336 | 4081400 | 4079992 | 4079992 | 4079992 | 4080056 | mod_file.rs | | 4081360 | 4081424 | 4080008 | 4080008 | 4080008 | 4080072 | mod_file_with_path_attr.rs | | 4081400 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mod-inside-fn.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | module-qualified-struct-destructure.rs | | 4083880 | 4083160 | 4080000 | 4080000 | 4080000 | 4080200 | mod-view-items.rs | | 4164528 | 4154496 | 4097768 | 4097768 | 4095272 | 4096696 | monad.rs | | 4083464 | 4083160 | 4080008 | 4080008 | 4080008 | 4080080 | monomorphize-abi-alignment.rs | | 4080888 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | monomorphized-callees-with-ty-params-3314.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | macro-invocation-in-count-expr-fixed-array-type.rs | | 4081832 | 4081928 | 4080000 | 4080000 | 4080000 | 4080064 | macro-lifetime.rs | | 4081864 | 4081944 | 4080016 | 4080016 | 4080016 | 4080080 | macro-lifetime-used-with-bound.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | macro-lifetime-used-with-labels.rs | | 4081864 | 4081944 | 4080016 | 4080016 | 4080016 | 4080080 | macro-lifetime-used-with-static.rs | | 4170432 | 4143352 | 4121064 | 4121064 | 4121168 | 4122472 | macro-literal.rs | | | | | | | | macro-meta-items.rs | | 4081360 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | macro-method-issue-4621.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | macro-multiple-items.rs | | 4080416 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-named-default.rs | | 4093216 | 4089184 | 4088624 | 4088624 | 4088624 | 4088696 | macro-nested_definition_issue-31946.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | macro-nested_expr.rs | | 4080632 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | macro-nested_stmt_macros.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | macro-nt-list.rs | | 4083136 | 4082768 | 4080008 | 4080008 | 4080008 | 4080072 | macro-of-higher-order.rs | | 4082200 | 4081272 | 4080000 | 4080000 | 4080000 | 4080064 | macro-pat-follow.rs | | 4081328 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | macro-path.rs | | 4088728 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | macro-pat-neg-lit.rs | | 4085472 | 4080856 | 4079992 | 4079992 | 4079992 | 4080056 | macro-pat.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | macro-seq-followed-by-seq.rs | | | | | | | | macros-in-extern.rs | | | | | | | | macro-stability.rs | | 4080800 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | macro-stmt_macro_in_expr_macro.rs | | 4081944 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | macro-stmt.rs | | 4101144 | 4096896 | 4082536 | 4082536 | 4082824 | 4083176 | macro-tt-followed-by-seq.rs | | | | | | | | macro-use-all-and-none.rs | | | | | | | | macro-use-all.rs | | | | | | | | macro-use-both.rs | | | | | | | | macro-use-one.rs | | 4080784 | 4080848 | 4080168 | 4080168 | 4080168 | 4080240 | macro-with-attrs1.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-with-attrs2.rs | | 4147624 | 4140328 | 4115880 | 4115880 | 4116368 | 4117112 | macro-with-braces-in-expr-position.rs | | | | | | | | macro_with_super_2.rs | | 4095288 | 4082184 | 4080000 | 4080000 | 4080000 | 4080640 | match-arm-statics.rs | | 4094240 | 4089672 | 4088488 | 4088488 | 4088488 | 4088552 | match-beginning-vert.rs | | 4103936 | 4095576 | 4086112 | 4086040 | 4086328 | 4087000 | match-borrowed_str.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | match-bot-2.rs | | 4101632 | 4093376 | 4088720 | 4088720 | 4088720 | 4088792 | match-bot.rs | | 4090152 | 4084032 | 4080008 | 4080008 | 4080008 | 4081360 | match-byte-array-patterns.rs | | 4088656 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-enum-struct-0.rs | | 4088672 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-enum-struct-1.rs | | 4081368 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | match-in-macro.rs | | 4100648 | 4095768 | 4088464 | 4088464 | 4088464 | 4088664 | match-join.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-larger-const.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | match-naked-record-expr.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-naked-record.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | match-path.rs | | 4088512 | 4084568 | 4080008 | 4080008 | 4080008 | 4080592 | match-pattern-bindings.rs | | 4106440 | 4100960 | 4088480 | 4088480 | 4088480 | 4098416 | match-pattern-lit.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | match-pattern-no-type-params.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-pattern-simple.rs | | 4080488 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | match-phi.rs | | 4106344 | 4088088 | 4081144 | 4081144 | 4081288 | 4081856 | match-pipe-binding.rs | | 4088704 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | match-range-infer.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-range-static.rs | | 4101952 | 4097632 | 4081416 | 4081416 | 4081760 | 4082152 | match-ref-binding-in-guard-3256.rs | | 4081472 | 4081440 | 4080016 | 4080016 | 4080016 | 4080080 | match-ref-binding-mut-option.rs | | 4081456 | 4081424 | 4080008 | 4080008 | 4080008 | 4080072 | match-ref-binding-mut.rs | | 4081352 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-ref-binding.rs | | 4081808 | 4081976 | 4080000 | 4080000 | 4080000 | 4080608 | match-ref-unsized.rs | | 4086024 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | match-static-const-rename.rs | | 4101632 | 4088336 | 4080904 | 4080904 | 4081048 | 4081888 | match-str.rs | | 4088704 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | match-struct-0.rs | | 4081376 | 4081440 | 4079992 | 4079992 | 4079992 | 4080824 | match-tag.rs | | 4081744 | 4081904 | 4080000 | 4080000 | 4079992 | 4080064 | match-unsized.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | match-var-hygiene.rs | | 4100096 | 4087096 | 4080008 | 4080008 | 4080008 | 4085264 | match-vec-alternatives.rs | | 4090296 | 4086528 | 4080000 | 4080000 | 4080000 | 4080712 | match-vec-rvalue.rs | | 4093880 | 4093944 | 4088912 | 4088912 | 4088912 | 4088976 | match-with-ret-arm.rs | | 4093752 | 4093600 | 4088744 | 4088744 | 4088744 | 4088816 | max-min-classes.rs | | 4082952 | 4082640 | 4080024 | 4080024 | 4081176 | 4081424 | method-argument-inference-associated-type.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | method-attributes.rs | | 4080552 | 4080424 | 4080024 | 4080024 | 4080016 | 4080088 | method-early-bound-lifetimes-on-self.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | method-normalize-bounds-issue-20604.rs | | 4091696 | 4091544 | 4081816 | 4081816 | 4081816 | 4082280 | method-projection.rs | | 4080496 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | method-recursive-blanket-impl.rs | | | | | | | | kinds-in-metadata.rs | | 4094152 | 4088488 | 4080000 | 4080000 | 4080000 | 4081064 | label_break_value.rs | | 4082280 | 4081272 | 4080000 | 4080000 | 4080000 | 4080064 | labeled-break.rs | | 4089448 | 4085320 | 4080008 | 4080008 | 4080008 | 4080208 | lambda-infer-unresolved.rs | | 4081456 | 4081520 | 4080000 | 4080000 | 4080000 | 4080072 | lambda-var-hygiene.rs | | 4080400 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | large-records.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | last-use-in-block.rs | | 4083336 | 4082296 | 4080008 | 4080008 | 4080008 | 4080584 | last-use-in-cap-clause.rs | | 4106856 | 4094280 | 4088760 | 4088760 | 4088760 | 4088824 | lazy-and-or.rs | | 4093376 | 4093440 | 4088720 | 4088720 | 4088720 | 4088792 | lazy-init.rs | | 4080784 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | let-destruct-ref.rs | | 4080784 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | let-var-hygiene.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | lex-bare-cr-nondoc-comment.rs | | 4115464 | 4100768 | 4081096 | 4081096 | 4081240 | 4081968 | lexer-crlf-line-endings-string-literal-doc-comment.rs | | 4080408 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | lexical-scoping.rs | | | | | | | | lib-defaults.rs | | 4117056 | 4113600 | 4097888 | 4097888 | 4097888 | 4098232 | linear-for-loop.rs | | | | | | | | linkage1.rs | | | | | | | | link-cfg-works.rs | | 4093720 | 4089536 | 4088904 | 4088904 | 4088896 | 4088968 | link-section.rs | | | | | | | | lint-cap.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | lint-dead-code-associated-type.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | lint-dead-code-variant.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | lint-expr-stmt-attrs-for-early-lints.rs | | 4080376 | 4080440 | 4080040 | 4080040 | 4080040 | 4080104 | lint-non-camel-case-types-non-uppercase-statics-unicode.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | lint-non-camel-case-with-trailing-underscores.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | lint-unknown-lints-at-crate-level.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | liveness-assign-imm-local-after-loop.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | liveness-assign-imm-local-after-ret.rs | | 4093152 | 4089120 | 4088488 | 4088488 | 4088488 | 4088552 | liveness-loop-break.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | liveness-move-in-loop.rs | | | | | | | | llvm-pr32379.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | log-err-phi.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | logging_before_rt_started.rs | | 4148432 | 4141120 | 4116344 | 4116344 | 4116504 | 4112928 | logging-only-prints-once.rs | | 4100136 | 4095784 | 4086432 | 4086432 | 4082408 | 4082872 | log-knows-the-names-of-variants-in-std.rs | | 4095632 | 4091280 | 4082064 | 4082064 | 4082128 | 4082600 | log-knows-the-names-of-variants.rs | | 4137712 | 4138464 | 4123264 | 4123264 | 4123368 | 4123656 | log-poly.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | log_syntax-trace_macros-macro-locations.rs | | 4080416 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | long-while.rs | | 4088656 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | loop-break-cont-1.rs | | 4106072 | 4093072 | 4092592 | 4092592 | 4088496 | 4088568 | loop-break-cont.rs | | 4132440 | 4110648 | 4080920 | 4080920 | 4081288 | 4084352 | loop-break-value.rs | | 4080408 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | loop-diverges.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | loop-labeled-break-value.rs | | 4102912 | 4093512 | 4080000 | 4080000 | 4080208 | 4080504 | loop-label-shadowing.rs | | 4080832 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | loop-no-reinit-needed-post-bot.rs | | 4090520 | 4086952 | 4079992 | 4079992 | 4080264 | 4080464 | loop-scope.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | lto-many-codegen-units.rs | | 4142968 | 4131464 | 4100176 | 4100184 | 4100760 | 4101384 | lto-still-runs-thread-dtors.rs | | 4080800 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | lub-glb-with-unbound-infer-var.rs | | 4081416 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | macro-2.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | macro-attribute-expansion.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | macro-attributes.rs | | 4081768 | 4081936 | 4080008 | 4080008 | 4080008 | 4080072 | macro-block-nonterminal.rs | | | | | | | | macro-comma-behavior.rs | | | | | | | | macro-crate-def-only.rs | | | | | | | | macro-crate-nonterminal-renamed.rs | | | | | | | | macro-crate-nonterminal.rs | | 4080960 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | macro-crate-use.rs | | 4081768 | 4081936 | 4080008 | 4080008 | 4080008 | 4080072 | macro-deep_expansion.rs | | 4084728 | 4085016 | 4080016 | 4080016 | 4080008 | 4080216 | macro-delimiter-significance.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-doc-comments.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080072 | macro-doc-escapes.rs | | 4081896 | 4082064 | 4080008 | 4080008 | 4080008 | 4080696 | macro-doc-raw-str-hashes.rs | | | | | | | | macro-export-inner-module.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | macro-followed-by-seq.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | macro-follow.rs | | 4080936 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-include-items.rs | | 4088752 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-interpolation.rs | | | | | | | | issue2170exe.rs | | 4104024 | 4093816 | 4080008 | 4080008 | 4080248 | 4080768 | issue28498-must-work-ex1.rs | | 4104096 | 4093896 | 4080008 | 4080008 | 4080248 | 4080768 | issue28498-must-work-ex2.rs | | 4104248 | 4093888 | 4080000 | 4080000 | 4080248 | 4080760 | issue28498-ugeh-ex1.rs | | 4107144 | 4102768 | 4098592 | 4098592 | 4098592 | 4098792 | issue28498-ugeh-with-lifetime-param.rs | | 4107824 | 4103816 | 4098896 | 4098896 | 4098896 | 4099104 | issue28498-ugeh-with-passed-to-fn.rs | | 4107128 | 4102752 | 4098584 | 4098584 | 4098584 | 4098792 | issue28498-ugeh-with-trait-bound.rs | | | | | | | | issue_3136_b.rs | | 4094128 | 4094208 | 4088760 | 4088760 | 4088760 | 4088832 | issue-7012.rs | | | | | | | | issue-7178.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7222.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7268.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7344.rs | | 4080432 | 4080416 | 4080016 | 4080016 | 4080008 | 4080080 | issue-7519-match-unit-in-arg.rs | | 4094528 | 4094592 | 4093656 | 4093656 | 4093736 | 4093800 | issue-7563.rs | | 4088720 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7575.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7607-2.rs | | 4186592 | 4157640 | 4098624 | 4098624 | 4099288 | 4100784 | issue-7660.rs | | 4081648 | 4082560 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7663.rs | | 4096240 | 4093064 | 4079992 | 4079992 | 4080752 | 4081576 | issue-7784.rs | | | | | | | | issue-7899.rs | | 4080728 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7911.rs | | | | | | | | issue-8044.rs | | 4080376 | 4080440 | 4080032 | 4080032 | 4080032 | 4080104 | issue-8171-default-method-self-inherit-builtin-trait.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8248.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8249.rs | | | | | | | | issue-8259.rs | | 4088664 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | issue-8351-1.rs | | 4088664 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-8351-2.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8391.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8398.rs | | | | | | | | issue-8401.rs | | 4247664 | 4200592 | 4137992 | 4142072 | 4146808 | 4143464 | issue-8460.rs | | 4086344 | 4081992 | 4079992 | 4079992 | 4079992 | 4080280 | issue-8498.rs | | 4080408 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8506.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8521.rs | | 4080384 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8578.rs | | 4081096 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-868.rs | | 4081800 | 4081976 | 4079992 | 4079992 | 4079992 | 4080600 | issue-8709.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8783.rs | | 4080480 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8851.rs | | 4086448 | 4082216 | 4080896 | 4080896 | 4080896 | 4080960 | issue-8860.rs | | 4110136 | 4102632 | 4087048 | 4087048 | 4083096 | 4087912 | issue-8898.rs | | 4100792 | 4100416 | 4088600 | 4088600 | 4088600 | 4088800 | issue-9047.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9110.rs | | | | | | | | issue-9123.rs | | | | | | | | issue_9155.rs | | | | | | | | issue-9188.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9243.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9249.rs | | 4090288 | 4085832 | 4080384 | 4080384 | 4080384 | 4080832 | issue-9259.rs | | 4090520 | 4086112 | 4080408 | 4080408 | 4080408 | 4080872 | issue-9394-inherited-trait-calls.rs | | 4255896 | 4251992 | 4133744 | 4137728 | 4134992 | 4142672 | issue-9396.rs | | 4101080 | 4100560 | 4088592 | 4088592 | 4088600 | 4088984 | issue-9446.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9719.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-9737.rs | | 4083400 | 4082592 | 4079992 | 4079992 | 4079992 | 4080056 | issue-979.rs | | 4081112 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9837.rs | | | | | | | | issue-9906.rs | | 4080760 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-9918.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-9942.rs | | 4081584 | 4081584 | 4079992 | 4079992 | 4080376 | 4080448 | issue-9951.rs | | | | | | | | issue-9968.rs | | 4136048 | 4123224 | 4098488 | 4099128 | 4099480 | 4100200 | istr.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | item-attributes.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | item-name-overload.rs | | 4083304 | 4082624 | 4080008 | 4080008 | 4080008 | 4080080 | iter-cloned-type-inference.rs | | 4101952 | 4093544 | 4088728 | 4088728 | 4088728 | 4088792 | iter-range.rs | | 4096568 | 4086000 | 4081192 | 4081192 | 4081536 | 4081608 | iter-step-overflow-debug.rs | | 4088304 | 4082824 | 4080008 | 4080008 | 4080008 | 4080080 | iter-step-overflow-ndebug.rs | | 4103504 | 4098560 | 4081504 | 4081504 | 4081920 | 4081984 | iter-sum-overflow-debug.rs | | 4089656 | 4085864 | 4080008 | 4080008 | 4080008 | 4080072 | iter-sum-overflow-ndebug.rs | | 4103552 | 4098624 | 4081520 | 4081520 | 4081928 | 4081992 | iter-sum-overflow-overflow-checks.rs | | 4157568 | 4131400 | 4086112 | 4085984 | 4086400 | 4087824 | iter-zip.rs | | 4084680 | 4085080 | 4080000 | 4080000 | 4080000 | 4080208 | ivec-pass-by-value.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | keyword-changes-2012-07-31.rs | | | | | | | | issue-4545.rs | | | | | | | | issue-45731.rs | | 4080504 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46069.rs | | 4080680 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46095.rs | | | | | | | | issue-46519.rs | | 4093456 | 4089144 | 4088576 | 4088576 | 4088576 | 4088648 | issue-46553.rs | | 4094040 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | issue-46845.rs | | 4093504 | 4089472 | 4088832 | 4088832 | 4088832 | 4088904 | issue-46855.rs | | 4086712 | 4082776 | 4080464 | 4080464 | 4080464 | 4081512 | issue-46920-byte-array-patterns.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46959.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46964.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47139-1.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47139-2.rs | | 4081440 | 4081280 | 4080232 | 4080232 | 4080232 | 4080304 | issue-4734.rs | | 4081528 | 4081352 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4735.rs | | 4088024 | 4083616 | 4080208 | 4080208 | 4080208 | 4080560 | issue-47364.rs | | 4080424 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-4759-1.rs | | 4080720 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47638.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47673.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47703-1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47703.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47703-tuple.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47722.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47789.rs | | 4080784 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48159.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4830.rs | | | | | | | | issue-48508-aux.rs | | 4080416 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48508.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48551.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4865-1.rs | | 4089024 | 4089288 | 4088640 | 4088640 | 4088640 | 4088784 | issue-4865-2.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-4865-3.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4875.rs | | | | | | | | issue-48984.rs | | 4122736 | 4106416 | 4081776 | 4081776 | 4082760 | 4083368 | issue-49298.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-49556.rs | | 4080376 | 4080448 | 4080040 | 4080040 | 4080040 | 4080112 | issue-49588-non-shorthand-field-patterns-in-pattern-macro.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-49632.rs | | 4084248 | 4082360 | 4079992 | 4079992 | 4080184 | 4080280 | issue-49685.rs | | 4089088 | 4084688 | 4081256 | 4081256 | 4081256 | 4081608 | issue-49854.rs | | | | | | | | issue-49955-2.rs | | 4122888 | 4106512 | 4081824 | 4081824 | 4082792 | 4083672 | issue-49955.rs | | 4080944 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-49973.rs | | 4101616 | 4101192 | 4093056 | 4093056 | 4093128 | 4093336 | issue-5008-borrowed-traitobject-method-call.rs | | 4082432 | 4082376 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50415.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50442.rs | | 4093352 | 4093416 | 4092776 | 4092776 | 4088680 | 4088752 | issue-5060.rs | | 4080880 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50689.rs | | 4080384 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50731.rs | | 4812160 | 4349352 | 4178320 | 4178320 | 4178320 | 4178392 | issue-50811.rs | | 4080808 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51185.rs | | 4083808 | 4081320 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51345.rs | | 4086824 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51582.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51655.rs | | 4081360 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-5239-2.rs | | 4080392 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5243.rs | | 4080456 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5280.rs | | 4080392 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5315.rs | | 4095056 | 4094400 | 4088488 | 4088488 | 4088488 | 4088552 | issue-5321-immediates-with-bare-self.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5353.rs | | | | | | | | issue-5518.rs | | | | | | | | issue-5521.rs | | 4085184 | 4081056 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5530.rs | | 4089912 | 4085576 | 4080296 | 4080296 | 4080296 | 4080496 | issue-5550.rs | | 4080560 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5554.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5572.rs | | 4100528 | 4100256 | 4093464 | 4093464 | 4093464 | 4093632 | issue-5688.rs | | 4093592 | 4093552 | 4088728 | 4088728 | 4088728 | 4088792 | issue-5708.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5741.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5754.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-5791.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5900.rs | | 4081400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5917.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5950.rs | | 4080520 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5988.rs | | 4088712 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5997.rs | | 4081408 | 4081232 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6117.rs | | 4130568 | 4116952 | 4089120 | 4089120 | 4089400 | 4093920 | issue-6128.rs | | 4088696 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6130.rs | | 4110392 | 4102968 | 4081048 | 4081048 | 4081248 | 4081944 | issue-6153.rs | | 4080840 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6157.rs | | 4081304 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6334.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6341.rs | | 4093392 | 4089152 | 4088592 | 4088592 | 4088592 | 4088656 | issue-6344-let.rs | | 4093400 | 4089152 | 4088592 | 4088592 | 4088592 | 4088656 | issue-6344-match.rs | | 4089712 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6449.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6470.rs | | 4086160 | 4081800 | 4080232 | 4080232 | 4080232 | 4080296 | issue-6892.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6898.rs | | | | | | | | issue-6919.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6991.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3895.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38987.rs | | 4093504 | 4089472 | 4088600 | 4088600 | 4088600 | 4088672 | issue-3904.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39089.rs | | 4089048 | 4089008 | 4088464 | 4088464 | 4088464 | 4088528 | issue-39292.rs | | 4092728 | 4087624 | 4080856 | 4080856 | 4081000 | 4081352 | issue-3935.rs | | 4105456 | 4099096 | 4082112 | 4082112 | 4082440 | 4082872 | issue-39367.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39467.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39548.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-39709.rs | | 4093864 | 4093936 | 4093256 | 4093256 | 4093256 | 4093320 | issue-39720.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-3979-2.rs | | 4081872 | 4081816 | 4080000 | 4080000 | 4080000 | 4080072 | issue-3979-generics.rs | | 4081664 | 4081632 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3979.rs | | | | | | | | issue-3979-xcrate.rs | | 4083320 | 4083008 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39808.rs | | | | | | | | issue-39823.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39827.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3991.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39984.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40003.rs | | 4080600 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40085.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40136.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40235.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4025.rs | | 4123032 | 4123096 | 4122536 | 4122536 | 4122536 | 4122600 | issue-40408.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40469.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40770.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40847.rs | | 4089152 | 4084616 | 4081232 | 4081232 | 4081232 | 4081432 | issue-40951.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40962.rs | | | | | | | | issue-41053.rs | | 4080496 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4107.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41213.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41272.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41298.rs | | | | | | | | issue-41394.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41479.rs | | 4080824 | 4080696 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41498.rs | | 4080512 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41604.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41628.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41677.rs | | 4110920 | 4101704 | 4086704 | 4090800 | 4086848 | 4087048 | issue-41696.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41744.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41803.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | issue-41849-variance-req.rs | | 4081384 | 4081176 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41888.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | issue-41936-variance-coerce-unsized-cycle.rs | | | | | | | | issue-42007.rs | | | | | | | | issue-4208.rs | | 4080408 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42148.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42210.rs | | 4080472 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4228.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42453.rs | | 4117712 | 4105272 | 4081328 | 4081328 | 4081752 | 4082360 | issue-42463.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42467.rs | | 4099008 | 4099072 | 4093560 | 4093560 | 4093632 | 4093704 | issue-4252.rs | | 4081488 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42552.rs | | 4090960 | 4085936 | 4079992 | 4079992 | 4079992 | 4081784 | issue-42679.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42747.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42956.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43057.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43132.rs | | 4093296 | 4089264 | 4088600 | 4088600 | 4088600 | 4088672 | issue-43205.rs | | 4081168 | 4080944 | 4080168 | 4080168 | 4080168 | 4080232 | issue-43291.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43357.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43483.rs | | 4081968 | 4081920 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43692.rs | | 4089888 | 4084800 | 4081608 | 4081608 | 4081816 | 4081880 | issue-43853.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4387.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43910.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43923.rs | | 4099488 | 4094384 | 4088480 | 4088480 | 4088480 | 4088544 | issue-4401.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44056.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44247.rs | | 4101832 | 4088936 | 4088464 | 4088464 | 4088464 | 4088528 | issue-44333.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44373.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44402.rs | | 4300840 | 4283808 | 4160096 | 4168032 | 4157736 | 4165912 | issue-4446.rs | | 4293640 | 4277544 | 4147928 | 4155856 | 4145536 | 4149800 | issue-4448.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4464.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44730.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44851.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-45152.rs | | 4138648 | 4129608 | 4098584 | 4098584 | 4099152 | 4099872 | issue-4541.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-45425.rs | | 4091512 | 4091640 | 4081656 | 4081656 | 4081784 | 4082224 | issue-4542.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3424.rs | | 4080424 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3429.rs | | 4110360 | 4100440 | 4080424 | 4080304 | 4080528 | 4080736 | issue-34427.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34503.rs | | 4080432 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34569.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34571.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34751.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34780.rs | | | | | | | | issue-34796.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34798.rs | | | | | | | | issue-34932.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3500.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35376.rs | | 4093376 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-35423.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35546.rs | | 4124936 | 4118952 | 4088344 | 4088344 | 4089440 | 4094304 | issue-3556.rs | | 4212248 | 4181064 | 4118160 | 4122256 | 4118912 | 4121032 | issue-3559.rs | | 4080432 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35600.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-3563-2.rs | | 4089720 | 4084336 | 4079992 | 4079992 | 4079992 | 4081312 | issue-3574.rs | | 4081024 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35815.rs | | 4101824 | 4088480 | 4080944 | 4080944 | 4081160 | 4081664 | issue-36023.rs | | 4080536 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | issue-36036-associated-type-layout.rs | | 4081272 | 4081240 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36053.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36075.rs | | 4080440 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | issue-36139-normalize-closure-sig.rs | | 4084664 | 4084424 | 4079992 | 4079992 | 4079992 | 4080288 | issue-36260.rs | | 4082200 | 4081264 | 4080008 | 4080008 | 4080008 | 4080080 | issue-36278-prefix-nesting.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36381.rs | | 4082400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36401.rs | | 4082384 | 4081792 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36474.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3656.rs | | 4103504 | 4103976 | 4088792 | 4088792 | 4088792 | 4088992 | issue-36744-bitcast-args-if-needed.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | issue-36744-without-calls.rs | | | | | | | | issue-36768.rs | | 4090272 | 4088160 | 4080608 | 4080608 | 4080896 | 4081096 | issue-36786-resolve-call.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36792.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36816.rs | | 4081520 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3683.rs | | 4088712 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36856.rs | | 4082128 | 4080656 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36936.rs | | | | | | | | issue-36954.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3702.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37109.rs | | 4093192 | 4089168 | 4088600 | 4088600 | 4088600 | 4088672 | issue-37175.rs | | 4082760 | 4082824 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37222.rs | | 4123304 | 4123344 | 4122552 | 4122552 | 4122552 | 4122616 | issue-3743.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37598.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37655.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37686.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37725.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37733.rs | | 4088648 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38002.rs | | 4116920 | 4103552 | 4080400 | 4080400 | 4080512 | 4080784 | issue-38033.rs | | 4081176 | 4081120 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38074.rs | | 4080448 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38091.rs | | | | | | | | issue-38190.rs | | 4101856 | 4100464 | 4093736 | 4093736 | 4089784 | 4089856 | issue-38437.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-3847.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38556.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38727.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-3874.rs | | 4080360 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38763.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-3888-2.rs | | 4093144 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | issue-38942.rs | | 4081792 | 4081088 | 4079992 | 4079992 | 4080232 | 4080296 | issue-29092.rs | | 4122336 | 4102904 | 4079992 | 4079992 | 4096016 | 4096296 | issue-29147.rs | | 4108400 | 4100392 | 4079992 | 4079992 | 4080328 | 4080696 | issue-29166.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29227.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29276.rs | | 4081544 | 4081520 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2936.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-29466.rs | | | | | | | | issue-29485.rs | | 4150832 | 4143808 | 4116960 | 4116640 | 4117200 | 4113904 | issue-29488.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29516.rs | | 4080408 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29522.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29540.rs | | 4100024 | 4096824 | 4086024 | 4086160 | 4082136 | 4082672 | issue-29663.rs | | 4093248 | 4089152 | 4088592 | 4088592 | 4088592 | 4088656 | issue-29668.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29710.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29740.rs | | 4171792 | 4151344 | 4086128 | 4086128 | 4086976 | 4089184 | issue-29746.rs | | 4089488 | 4086008 | 4080040 | 4080040 | 4080472 | 4080680 | issue-29844.rs | | 4140216 | 4128096 | 4098040 | 4098040 | 4098424 | 4099200 | issue-2989.rs | | 4080840 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-29914-2.rs | | 4080784 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-29914-3.rs | | 4080840 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29914.rs | | 4090512 | 4085520 | 4081504 | 4081512 | 4081752 | 4081816 | issue-29948.rs | | 4142216 | 4128688 | 4098232 | 4098120 | 4098432 | 4099440 | issue-30018-nopanic.rs | | 4132272 | 4128664 | 4099744 | 4099744 | 4100088 | 4100616 | issue-30018-panic.rs | | 4089256 | 4083648 | 4079992 | 4079992 | 4079992 | 4080344 | issue-30081.rs | | | | | | | | issue-3012-2.rs | | 4100864 | 4087576 | 4079992 | 4079992 | 4079992 | 4081528 | issue-30240.rs | | 4179488 | 4146544 | 4098696 | 4098688 | 4099368 | 4100544 | issue-3026.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30371.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3037.rs | | 4313128 | 4288248 | 4175792 | 4175928 | 4174112 | 4181192 | issue-30490.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3052.rs | | 4082168 | 4081480 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30530.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30615.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30756.rs | | 4081096 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30891.rs | | 4081168 | 4081232 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3091.rs | | 4093536 | 4089504 | 4088832 | 4088832 | 4088832 | 4088896 | issue-3109.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31260.rs | | 4099760 | 4099856 | 4089120 | 4089120 | 4089120 | 4089264 | issue-31267-additional.rs | | 4083416 | 4084296 | 4080464 | 4080464 | 4080576 | 4081000 | issue-31267.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31299.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3149.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31597.rs | | | | | | | | issue-31702.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31776.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32008.rs | | 4099488 | 4094384 | 4088480 | 4088480 | 4088480 | 4088544 | issue-3211.rs | | 4080656 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3220.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32292.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32324.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32389.rs | | | | | | | | issue-32518.rs | | 4218680 | 4192528 | 4142752 | 4142664 | 4144088 | 4150240 | issue-32805.rs | | 4080496 | 4080560 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32947.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33096.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33185.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33187.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-33202.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33287.rs | | 4091960 | 4092544 | 4080496 | 4080496 | 4080496 | 4081856 | issue-33387.rs | | 4080904 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-333.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33461.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33498.rs | | 4081272 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33687.rs | | 4320376 | 4290312 | 4179312 | 4179584 | 4178048 | 4182496 | issue-33770.rs | | 4144440 | 4138208 | 4098328 | 4098328 | 4099240 | 4100456 | issue-3389.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33992.rs | | 4086640 | 4082200 | 4080320 | 4080320 | 4080320 | 4080384 | issue-34053.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34074.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34194.rs | | | | | | | | issue-2631-b.rs | | 4081872 | 4081744 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26322.rs | | 4089064 | 4089072 | 4088464 | 4088464 | 4088464 | 4088528 | issue-2633.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2642.rs | | 4082952 | 4082024 | 4080472 | 4080472 | 4080472 | 4080544 | issue-26468.rs | | 4088952 | 4088992 | 4088448 | 4088448 | 4088448 | 4088512 | issue-26484.rs | | 4081744 | 4081472 | 4079992 | 4079992 | 4080440 | 4080512 | issue-26641.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26646.rs | | 4141808 | 4129776 | 4100144 | 4100144 | 4100456 | 4100992 | issue-26655.rs | | 4082152 | 4082128 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26709.rs | | 4082168 | 4081760 | 4079992 | 4079992 | 4079992 | 4080304 | issue-26802.rs | | 4091792 | 4085448 | 4079992 | 4079992 | 4079992 | 4080128 | issue-26805.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | issue-26873-multifile.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | issue-26873-onefile.rs | | 4081256 | 4080688 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26905.rs | | 4083792 | 4083016 | 4079992 | 4079992 | 4079992 | 4080200 | issue-26996.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26997.rs | | 4087992 | 4083080 | 4079992 | 4079992 | 4079992 | 4080200 | issue-27021.rs | | 4080896 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | issue-27054-primitive-binary-ops.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27060.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27105.rs | | | | | | | | issue-2723-b.rs | | 4089080 | 4085136 | 4079992 | 4079992 | 4079992 | 4080272 | issue-27240.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27268.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27281.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27320.rs | | 4090152 | 4084376 | 4080000 | 4080000 | 4079992 | 4080064 | issue-2735-2.rs | | 4090152 | 4084376 | 4080000 | 4080000 | 4079992 | 4080064 | issue-2735-3.rs | | 4083032 | 4082008 | 4080008 | 4080008 | 4080008 | 4080080 | issue-27401-dropflag-reinit.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-2748-a.rs | | 4081440 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2748-b.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27583.rs | | 4094936 | 4094008 | 4092576 | 4092576 | 4088480 | 4088544 | issue-27639.rs | | 4141576 | 4133336 | 4123448 | 4123448 | 4123640 | 4124080 | issue-27859.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27889.rs | | 4081288 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27890.rs | | 4082744 | 4082904 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27901.rs | | 4086160 | 4081520 | 4080264 | 4080264 | 4080264 | 4080328 | issue-27997.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-2804-2.rs | | 4080520 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28181.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28279.rs | | 4089176 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28550.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28561.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28600.rs | | | | | | | | issue-28676.rs | | 4085552 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28777.rs | | 4089928 | 4081552 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28828.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28839.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28871.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28936.rs | | 4144080 | 4133336 | 4099824 | 4099824 | 4100160 | 4100824 | issue-28950.rs | | 4080816 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2895.rs | | 4080928 | 4080912 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28983.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28999.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29030.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29037.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29048.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2904.rs | | 4089296 | 4084928 | 4079992 | 4079992 | 4079992 | 4080200 | issue-29053.rs | | 4081248 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-29071-2.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-29071.rs | | 4102256 | 4101872 | 4098144 | 4098144 | 4098144 | 4098352 | issue-23781.rs | | 4080832 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23808.rs | | | | | | | | issue-2380-b.rs | | 4125928 | 4121624 | 4115744 | 4115744 | 4115744 | 4116248 | issue-23825.rs | | 4099608 | 4099368 | 4089128 | 4089128 | 4089128 | 4089280 | issue-23833.rs | | 4109184 | 4104032 | 4079992 | 4079992 | 4081656 | 4082088 | issue-2383.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-23891.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23898.rs | | 4081496 | 4081376 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23958.rs | | 4086944 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | issue-23968-const-not-overflow.rs | | 4081552 | 4081616 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23992.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24085.rs | | 4081224 | 4081288 | 4079992 | 4079992 | 4080184 | 4080248 | issue-24086.rs | | | | | | | | issue-2414-c.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24161.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24227.rs | | 4081360 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2428.rs | | 4080544 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24308.rs | | 4330448 | 4291280 | 4182488 | 4182616 | 4180448 | 4186552 | issue-24313.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24353.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24389.rs | | | | | | | | issue-24434.rs | | 4080576 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-2445-b.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2445.rs | | 4089464 | 4085064 | 4080816 | 4080816 | 4080816 | 4081088 | issue-24533.rs | | | | | | | | issue-24535-allow-mutable-borrow-in-match-guard.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24589.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2463.rs | | | | | | | | issue-2472.rs | | 4081000 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24779.rs | | 4082512 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | issue-24805-dropck-itemless.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-2487-a.rs | | 4080800 | 4080416 | 4080008 | 4080008 | 4080016 | 4080080 | issue-24945-repeat-dash-opts.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24947.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24954.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2502.rs | | 4132728 | 4129656 | 4100328 | 4100320 | 4100680 | 4101192 | issue-25089.rs | | 4083488 | 4084352 | 4080464 | 4080464 | 4080576 | 4080856 | issue-25145.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25180.rs | | | | | | | | issue-25185.rs | | | | | | | | issue-2526-a.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25279.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25339.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25343.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25394.rs | | | | | | | | issue-25467.rs | | 4086920 | 4082792 | 4081048 | 4081048 | 4081168 | 4081312 | issue-25497.rs | | 4080456 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2550.rs | | 4090024 | 4085384 | 4079992 | 4079992 | 4080472 | 4080544 | issue-25515.rs | | 4081360 | 4081320 | 4080008 | 4080008 | 4080008 | 4080248 | issue-25549-multiple-drop.rs | | 4080488 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25679.rs | | 4081528 | 4081256 | 4080160 | 4080160 | 4080160 | 4080224 | issue-25693.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-25700-1.rs | | 4080928 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-25700-2.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | issue-25746-bool-transmute.rs | | 4081448 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25757.rs | | 4093400 | 4089368 | 4088584 | 4088584 | 4088584 | 4088648 | issue-25810.rs | | 4088608 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25916.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26095.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2611-3.rs | | 4080472 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26127.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26205.rs | | 4090072 | 4081928 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26251.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21520.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21622.rs | | 4178680 | 4158432 | 4140880 | 4140792 | 4137040 | 4138600 | issue-21634.rs | | 4092328 | 4088960 | 4079992 | 4079992 | 4080384 | 4080720 | issue-21655.rs | | 4088880 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21721.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21726.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21891.rs | | 4122312 | 4114512 | 4093304 | 4093304 | 4089392 | 4094016 | issue-2190-1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21909.rs | | 4093800 | 4089592 | 4092576 | 4092576 | 4092576 | 4088608 | issue-21922.rs | | 4094256 | 4094408 | 4088584 | 4088584 | 4088584 | 4088656 | issue-22008.rs | | 4097224 | 4089600 | 4079992 | 4079992 | 4080496 | 4080960 | issue-22036.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22066.rs | | 4111016 | 4111008 | 4106080 | 4106080 | 4106080 | 4106144 | issue-2214.rs | | 4093448 | 4093512 | 4088664 | 4088664 | 4088664 | 4088728 | issue-2216.rs | | 4123192 | 4123096 | 4122536 | 4122536 | 4122536 | 4122608 | issue-22258.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22356.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22375.rs | | 4100032 | 4100096 | 4088992 | 4088992 | 4089096 | 4089248 | issue-22403.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22426.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22463.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22471.rs | | 4081040 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | issue-22536-copy-mustnt-zero.rs | | 4101952 | 4089256 | 4088600 | 4088600 | 4088600 | 4088672 | issue-22546.rs | | 4083392 | 4083080 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22629.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22777.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22781.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22814.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22828.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2284.rs | | 4093384 | 4089160 | 4088600 | 4088600 | 4088600 | 4088664 | issue-22864-1.rs | | 4122984 | 4116312 | 4098024 | 4098024 | 4098112 | 4098640 | issue-22864-2.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22894.rs | | 4080520 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-22992-2.rs | | 4099384 | 4099040 | 4092768 | 4092768 | 4092768 | 4093688 | issue-22992.rs | | 4192944 | 4160048 | 4099448 | 4099448 | 4100432 | 4102312 | issue-23036.rs | </p> </details> the files I tested are in src/test/run-pass I wonder if ````z```` performing so bad is due to how inlining is handled.
A-LLVM,T-compiler,C-bug,WG-embedded,I-heavy
low
Critical
358,051,713
go
fmt: fix up examples
The examples in the fmt package are inconsistent, which makes them confusing. They need to be cleaned up and categorized better. There are several needs as I see it, at least for the printing side: 1) A consistent set of one-line examples demonstrating, for the same non-trivial arguments, what each of Print, Printf, and Println do. 2) A consistent set of one-line examples demonstrating, for the same non-trivial arguments, the difference between Print, Fprint, and Sprint (etc.). 3) A carefully written package-level example demonstrating how the formats for Printf etc. work, including flags, padding, etc. Assigning to myself.
Documentation,NeedsFix
medium
Major
358,127,516
angular
Service worker doesn't support seeking in videos
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [x] Feature request (not sure, maybe this is more a feature request?) </code></pre> ## Current behavior If you `ng run app:build:production` and your pwa comes with a `<video>` element where you also utilize seeking (setting `currentTime` depending on your app logic and/or user input) it will not work or only very inconsistently. Most videos will simply run from start and not at the setted `currentTime` position. This is only the case when videos are delivered/fetched by the service worker. So it works in development mode. ## Expected behavior Videos should start at the setted `currentTime`. ## Minimal reproduction of the problem with instructions <pre> // on template &lt;video id=&quot;myVideo&quot;&gt;&lt;source id=&quot;myVideoSrc&quot; src=&quot;video.mp4&quot; type=&quot;video/mp4&quot;&gt;&lt;/video&gt; // in page.ts let videoObject = document.getElementById("myVideo"); videoObject.currentTime = 100; videoObject.play(); // now build for production // @angular/pwa has to be installed > ng run app:build:production </pre> ## Environment Angular version: 6.1.2 Browser: Chrome (desktop) version 69 ## Others: This seems to be a known problem since service workers don't know Range requests. However it also looks like very easily fixable if I understand this thread comment correctly: https://bugs.chromium.org/p/chromium/issues/detail?id=575357#c10 A workaround would be a convenient way to completely exclude requests from service worker (not just set strategies for them). But obviously it would be better if we also could cache some videos. For exclusion also this issue may be relevant : https://github.com/angular/angular/issues/21191 ## _**EDIT(gkalpak):** Issue summary in https://github.com/angular/angular/issues/25865#issuecomment-634048868._
type: bug/fix,help wanted,freq2: medium,workaround2: non-obvious,area: service-worker,state: confirmed,browser: safari,P4
medium
Critical
358,161,538
pytorch
[distributions] Torch distribution samplers slow on expanded parameters
## Issue description We use expanded tensors as distribution parameters in many cases where we dynamically broadcast the parameters at runtime. While working on a related (https://github.com/pytorch/pytorch/pull/11341) PR, I noticed that sampling can be slow when using expanded tensors as distribution parameters. I have narrowed this slowdown to the native torch samplers. While this is likely expected behavior, it raises the question of: (a) whether we should be doing anything inside of distributions to ensure that parameter tensors are contiguous, and if so, (b) under what conditions should we ensure contiguity - always by default, or have it be controllable by the user via an optional keyword argument. If we use the same instance to draw multiple samples, it is worth the one time cost of calling `.contiguous` on the distribution parameters (I think, given the relatively low overhead of `.contiguous`, we can probably make it the default). ## Profiling code ```python In [36]: m1, s1 = torch.ones(2, 10, 10000), torch.ones(2, 10, 10000) In [37]: m2, s2 = torch.ones(10000).expand([2, 10, 10000]), torch.ones(10, 10000).expand([2, 10, 10000]) In [38]: m3, s3 = m2.contiguous(), s2.contiguous() In [39]: m1.is_contiguous(), m2.is_contiguous(), m3.is_contiguous() Out[39]: (True, False, True) In [40]: %timeit -n 1000 -r 10 torch.normal(m1, s1) 1.53 ms Β± 47 Β΅s per loop (mean Β± std. dev. of 10 runs, 1000 loops each) In [41]: %timeit -n 1000 -r 10 torch.normal(m2, s2) 1.98 ms Β± 18 Β΅s per loop (mean Β± std. dev. of 10 runs, 1000 loops each) In [42]: %timeit -n 1000 -r 10 torch.normal(m3, s3) 1.5 ms Β± 36.6 Β΅s per loop (mean Β± std. dev. of 10 runs, 1000 loops each) In [43]: %timeit m2.contiguous() 134 Β΅s Β± 1.25 Β΅s per loop (mean Β± std. dev. of 7 runs, 10000 loops each) ``` cc. @fritzo, @vishwakftw cc @fritzo @neerajprad @alicanb @vishwakftw @nikitaved
todo,module: distributions,triaged
low
Major
358,166,118
pytorch
Views created in no_grad block still have requires_grad=True
``` >>> x = torch.randn(3, requires_grad=True) >>> with torch.no_grad(): ... print(x[1]) ... tensor(-0.0967, requires_grad=True) ```
high priority,module: docs,module: autograd,triaged
medium
Major
358,175,069
opencv
VideoWriter produces distorted outputs for certain aspect ratios
OpenCV version 3.4.2 on OSX Sierra 10.13.6 I wrote a simple test where I read an mp4 video and write a cropped version out. For certain widths, the output appears distorted. Changing the height is fine. Changing the width produces distortion. ![distortion](https://user-images.githubusercontent.com/7737286/45237552-e2cfb580-b293-11e8-9a86-c00e6f5435b0.png) I've included a zip file with everything needed to reproduce this issue. [VidWriter_test.zip](https://github.com/opencv/opencv/files/2362166/VidWriter_test.zip) The following works fine: `python test_video.py drift_short.mp4 -w 960 -h 540` The following produces a distorted output: `python test_video.py drift_short.mp4 -w 900 -h 540` Thanks - ------------------------ ``` """ Test video reading and writing. Reads a video, writes the same video out, cropped to the specified width and height. Usage: test_video.py VID [--width=W] [--height=H] Arguments: VID Path to video file Options: -w --width=W Width of the crop -h --height=H Height of the crop Example: python test_video.py video.mp4 -w 960 -h 540 """ import os import pdb import time import cv2 import numpy as np import docopt from imutils.video import FileVideoStream from imutils.video import FPS class VideoReader(object): def __init__(self, video_path, verbose=True): assert isinstance(video_path, str) assert os.path.exists(video_path), "{} does not exist".format(video_path) self.video_path = os.path.expanduser(video_path) self.verbose = verbose if self.verbose: print("[INFO] starting video file thread...") self.fvs = FileVideoStream(self.video_path).start() time.sleep(1.0) self.fps = FPS().start() def get_video_props(self): """Collect dictionary containing video properties in order to set up the video writer """ cam = cv2.VideoCapture(self.video_path) props = {} props["width"] = int(cam.get(cv2.CAP_PROP_FRAME_WIDTH)) props["height"] = int(cam.get(cv2.CAP_PROP_FRAME_HEIGHT)) props["fourcc"] = int(cam.get(cv2.CAP_PROP_FOURCC)) props["fps"] = cam.get(cv2.CAP_PROP_FPS) props["number_of_frames"] = cam.get(cv2.CAP_PROP_FRAME_COUNT) return props def get_frame(self): """Retrieve a frame from video. If no more, return None """ frame = None if self.fvs.more(): frame = self.fvs.read() self.fps.update() return frame def more(self): """Return True if there are remaining frames """ return self.fvs.more() def __del__(self): self.fps.stop() if self.verbose: print("[INFO] elapsed time: {:.2f}".format(self.fps.elapsed())) print("[INFO] approx. FPS: {:.2f}".format(self.fps.fps())) self.fvs.stop() class VideoWriter(object): def __init__(self, output_name, verbose=True): """output_name can be None, in which case this class does nothing. """ assert isinstance(verbose, bool) self.vid_writer = None self.output_name = output_name self.setup_done = False self.verbose = verbose if self.verbose and self.output_name is None: print("Setting up VideoWriter as dummy class") def set_props_similar_to(self, video_path): """Set up the video writer properties based on the properties of the input video: fps, codec, etc :video_path: Path to input video whose props we want to replicate (str) """ assert os.path.exists(os.path.expanduser(video_path)) if self.output_name is not None: if self.verbose: print("VideoWriter: Properties replicated from {}".format(video_path)) cam = cv2.VideoCapture(video_path) fourcc = int(cam.get(cv2.CAP_PROP_FOURCC)) fps = cam.get(cv2.CAP_PROP_FPS) size = (int(cam.get(cv2.CAP_PROP_FRAME_WIDTH)), int(cam.get(cv2.CAP_PROP_FRAME_HEIGHT))) self.vid_writer = cv2.VideoWriter(self.output_name, fourcc, fps, size) self.setup_done = True def set_video_props(self, props): """Set video writer properties from props dictionary :props: Dictionary containing video properties (dict) """ assert "fourcc" in props.keys() assert "fps" in props.keys() assert "width" in props.keys() assert "height" in props.keys() if self.output_name is not None: self.vid_writer = cv2.VideoWriter( self.output_name, props["fourcc"], props["fps"], (props["width"], props["height"])) self.setup_done = True def write(self, frame): """Write a frame out. :frame: An frame image (np.ndarray) """ assert self.setup_done, "Call set_props_similar_to() or set_video_props() first" assert isinstance(frame, np.ndarray) if self.output_name is not None: self.vid_writer.write(frame) def __del__(self): if self.output_name is not None: self.vid_writer.release() def main(): try: # Parse arguments arguments = docopt.docopt(__doc__) video_path = os.path.expanduser(arguments["VID"]) crop_width = int(arguments["--width"]) crop_height = int(arguments["--height"]) # Create Video reader, get its video properties vid_reader = VideoReader(video_path) vid_props = vid_reader.get_video_props() # Modify those properties for the resized outptut assert crop_width > 0 assert crop_width <= vid_props["width"] assert crop_height > 0 assert crop_height <= vid_props["height"] vid_props["width"] = crop_width vid_props["height"] = crop_height print("New vid_props: {}".format(vid_props)) # Create Video writer, set its properties vid_writer = VideoWriter("out.mp4") vid_writer.set_video_props(vid_props) # Read a frame, crop it, write it out while vid_reader.more(): frame = vid_reader.get_frame() frame_out = frame[:vid_props["height"], :vid_props["width"], :] vid_writer.write(frame_out) except docopt.DocoptExit as err: print(err) if __name__ == "__main__": main() ```
category: videoio,platform: ios/osx,incomplete,needs investigation
low
Minor
358,185,790
go
net/url: PathEscape treatment of reserved characters is inconsistent
`;` and `,` are permitted by [RFC 3986](https://tools.ietf.org/html/rfc3986#page-23) in path segments, but `PathEscape` percent-encodes them because "URI producing applications often use the reserved characters allowed in a segment to delimit scheme-specific or dereference-handler-specific subcomponents". However, it does _not_ escape other reserved characters potentially subject to the same kind of special treatment: * `=` is "often used to delimit parameters and parameter values", particularly in conjunction with `;` (e.g., "name;v=1.1") * `.` is used in `.` and `..` "dot-segments" to "indicate relative position within the hierarchical tree of names… interpreted within the URI path hierarchy… removed as part of the resolution process". * `:` is not allowed in the first path segment of a relative-path reference, "as it would be mistaken for a scheme name" (e.g., a URI reference of "foo:bar/baz/quux" is very different from "foo-bar/baz/quux"). ### What version of Go are you using (`go version`)? 1.11 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? linux amd64 ### What did you do? https://play.golang.org/p/f-byVa3k2gi ```go pathSegments := []string{"non-scheme:non-authority", "foo=bar;bar=baz", ".."} for i, segment := range pathSegments { pathSegments[i] = url.PathEscape(segment) } fmt.Println(strings.Join(pathSegments, "/")) ``` ### What did you expect to see? `non-scheme%3Anon-authority/foo%3Dbar%3Bbar%3Dbaz/%2E%2E` (all potentially special characters percent-encoded), or maybe `non-scheme:non-authority/foo=bar;bar=baz/..` (no characters percent-encoded unless required by RFC). ### What did you see instead? `non-scheme:non-authority/foo=bar%3Bbar=baz/..`
NeedsInvestigation
low
Major
358,188,319
flutter
[Material] Include support for cut corner borders in NoStrokeInputBorder widget
Widget is introduced in #21289
c: new feature,framework,f: material design,P3,team-design,triaged-design
low
Minor
358,192,157
flutter
platform_channel and platform_channel_swift examples don't seem to work with the iOS simulator
I tried doing `flutter run` in `flutter/examples/platform_channel` and in `flutter/examples/platform_channel_swift` on my macOS machine using an iPhone 8 Plus simulator that used iOS 11.4. In both cases, the example app reports "Battery level: unknown" and "Battery status: unknown". Tapping on the "Refresh" button shows "Failed to get battery level." I haven't tried it with a physical iOS device because I don't have a provisioning profile set up.
e: device-specific,platform-ios,engine,d: examples,has reproducible steps,P3,team-ios,triaged-ios,found in release: 3.22,found in release: 3.23
low
Critical
358,200,837
go
x/text/message/catalog: documentation mentions type that doesn't exist
In the documentation for [`golang.org/x/text/message/catalog`] it says: > Package catalog defines various interfaces: Dictionary, Loader, and Message. But there is no such type `Loader`. I started to change the documentation, but wasn't sure if this was an oversight, something that was removed, or some functionality that hadn't been committed yet. /cc @mpvl [`golang.org/x/text/message/catalog`]: https://godoc.org/golang.org/x/text/message/catalog
Documentation,NeedsInvestigation
low
Minor
358,227,422
TypeScript
Inserting intersections with 'Function' while narrowing breaks code
@ahejlsberg and I ran into something like this in the RWC. This currently repros on the nightlies. ```ts function foo(x: Object | (() => string)) { if (typeof x === "function") { // Previously had no errors x(); } } ``` **Expected**: No error **Actual**: ``` [ts] Cannot invoke an expression whose type lacks a call signature. Type '(() => string) | (Object & Function)' has no compatible call signatures. ``` Potentially related to #25243.
Suggestion,Breaking Change,Awaiting More Feedback
low
Critical
358,230,302
TypeScript
Import type is escaped
**TypeScript Version:** 3.1.0-dev.20180906 **Code** ```ts // @declaration: true // @Filename: /jalapeΓ±o.ts export interface I { x: number; } export function f(): I { return { x: 0 }; } // @Filename: /a.ts import { f } from "./jalapeΓ±o"; export const x = f(); ``` **Expected behavior:** `a.d.ts` is: `export declare const x: import("./jalapeΓ±o").I;` **Actual behavior:** `a.d.ts` is: `export declare const x: import("./jalape\u00F1o").I;`
Bug,Domain: Declaration Emit
low
Minor
358,262,897
go
x/vgo: delete repo in March 2019 (1 month after Go 1.12)
Since Go 1.11 was released several issues related to mixing vgo and go 1.11 have been logged, eg, #27562 I propose that vgo should be changed to work only with versions of Go in the range [1.10.3,1.11)
NeedsFix
low
Major
358,266,904
rust
-C remark=loop-vectorize doesn't point to the source line
I was trying to use `-C remark` to understand why a loop didn't get vectorized. You can [see the simple example code on godbolt](https://rust.godbolt.org/z/KHuX1A). ```rust fn simple_loop(values: &[u32; 1024]) -> u32 { values.into_iter().fold(0, |acc, i| { /* something */ }) } ``` The loop itself isn't very important, the issue is with what the remark message says: ``` note: optimization analysis for loop-vectorize at /checkout/src/libcore/slice/mod.rs:2431:20: ... ``` As you can see, instead of saying something like `at <source_file>:2:5: ...`, it points to a method in the standard library. In this case, there was only one iterator loop in the file, but it quickly becomes impossible to determine which loop it refers to if there are multiple ones. A temporary solution is to give up on Rust's iterators and use a primitive `while` loop to get an accurate indication: ```rust let mut i = 0; while i < 1024 { /* ... */ } ``` Now the message becomes: ```rust note: optimization analysis for loop-vectorize at <source>:14:4: ... ``` So it's easier to determine which loop it was referring to.
A-LLVM,C-enhancement,A-diagnostics,T-compiler,C-optimization
low
Minor
358,285,878
rust
Slow performance of std::iter::Rev with iterator adapters using std::iter::Iterator::nth()
The following example shows a benchmark of the iterator adapter `step_by()`. Once using `step_by()` directly on the range and once with a redirection via `rev()`. ```rust use test::Bencher; #[bench] fn bench_forward_skip(b: &mut Bencher) { b.iter(|| (0..10001).step_by(100).sum::<i32>()); } #[bench] fn bench_reverse_skip(b: &mut Bencher) { b.iter(|| (0..10001).rev().step_by(100).sum::<i32>()); } ``` Running this benchmark with the current nightly shows these results: ``` test tests::bench_forward_skip ... bench: 137 ns/iter (+/- 6) test tests::bench_reverse_skip ... bench: 3,878 ns/iter (+/- 327) ``` `step_by()` makes use of `nth()` of the adapted iterator. A range provides an optimized version of `nth()`, but by using `rev()` we get to use the default implementation of `nth()`. We should Extend `std::iter::DoubleEndedIterator` to provide a new method maybe `nth_back()` or `rnth()` with a default implementation which then can get adapted by `rev()`. Similar to the already existing `next_back()`, `try_rfold()`, `rfold()` and `rfind()`. **Update:** `nth_back()` has been merged in #56802. Types which have a specialized `nth()` and implement `DoubleEndedIterator` are candidates for a specialized `nth_back()`. The following list shows these candidates and their implementation status: - [x] Box (#59328) - [x] Bytes (#60023) - [X] Chain (#60492) - [X] Chunks (#61048) - [x] ChunksExact (#62064) - [X] ChunksExactMut (#63265) - [x] ChunksMut (#62074) - [X] &mut DoubleEndedIterator (#56802) - [x] Enumerate (#60023) - [x] Fuse _(default fn)_ (#60023) - [x] Fuse _(where FusedIterator)_ (#60023) - [x] slice::Iter _(defined by a macro)_ (#60772) - [x] slice::IterMut _(defined by a macro)_ (#60772) - [x] Range (#61671) - [x] RangeInclusive (#61671) - [X] RChunks (#60555) - [X] RChunksExact (#60555) - [X] RChunksExactMut (#60555) - [X] RChunksMut (#60555) - [X] Rev (#56802) - [x] Skip (#60454) - [X] Windows (#59328) - [ ] Zip - [ ] Zip _(in ZipImpl default fn)_ - [ ] Zip _(in ZipImpl where TrustedRandomAccess)_
I-slow,C-enhancement,E-mentor,T-libs-api,A-iterators
low
Major
358,295,251
flutter
Table > TableRow > TableCell colspan
Hi, How can I have a colspan in the Table Widget ? Mean: |--------|--------| |..**`col1`**..|..**`col2`**.| |--------|--------| |.........**`col3`**........| |--------|--------| Thank you.
c: new feature,framework,f: material design,customer: crowd,c: proposal,P2,team-design,triaged-design
low
Critical
358,303,473
opencv
Bad error message from VideoWriter::open() about unknown fourcc
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest developer build. * Check if other person has already created the same issue to avoid duplicates. You can comment on it if there already is an issue. * Try to be as detailed as possible in your report. * Report only one problem per created issue. This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library. --> ##### System information (version) <!-- Example - OpenCV => 3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> - OpenCV => 3.4.0 - Operating System / Platform => all - Compiler => all ##### Detailed description <!-- your description --> When one runs the following code: fourcc = cv2.VideoWriter_fourcc(*'PIM1') out = cv2.VideoWriter('output.mpeg',fourcc, 20.0, (640,480)) The code complains about an invalid fourcc value, but still runs correctly. ##### Steps to reproduce The problem seems to be in cap_ffmpeg_impl.hpp ( CvVideoWrite_FFMPEG::open ) This code first uses the file extension (av_guess_format) to find an appropriate list of fourcc's to check for. If it does not find the fourcc in this list, it then uses a default list of fourcc's ( avformat_get_mov_video_tags). The fourcc checks are using av_codec_get_id(). After if finds a fourcc match, it then validates that the fourcc is in the original list from the file extension, and prints an error message if this is the case. When the fourcc is from the default list, it does not match the original list, so an error message is always printed in this case. The error message is just informational and does not change the program flow. There seems to be two solutions: (1) remove the final valid step (not sure why needed) (2) validate against the default list when use default list (this seems to be the easier of the two) The change for (2) is quite small: ``` diff modules/videoio/src/cap_ffmpeg_impl.hpp hold/ 1930d1929 < const AVCodecTag *const *chk_tags = fmt->codec_tag; 1961,1963c1960 < }else{ < chk_tags = fallback_tags; < } --- > } 1966c1963 < if (cv_ff_codec_tag_list_match(chk_tags, codec_id, fourcc) == false) --- > if (cv_ff_codec_tag_list_match(fmt->codec_tag, codec_id, fourcc) == false) ``` <!-- to add code example fence it with triple backticks and optional file extension ```.cpp // C++ code example ``` or attach as .txt or .zip file -->
category: videoio,RFC
low
Critical
358,303,532
rust
Treat closures as `move` when their type escapes their captures' scope.
Unlike previously discussed *inference* of `move` from lifetimes (which has been deemed unfeasible/undesirable), we can completely ignore lifetime bounds and NLL analysis. *Note: everything discussed here "trivially" doesn't pass lifetime inference/checks currently, so allowing such code to compile should be entirely backwards-compatible.* <hr/> Instead, I think we should focus on expressions that had their types inferred to contain closure types, and compare their (lexical/"drop") scopes with the scopes the closure captures are declared in, e.g.: ```rust let x = String::new(); let f = { let y = vec![0]; Some(|| (x.clone(), y.clone())) }; ``` `typeof f` is `Option<closure>`, where the closure captures `x` and `y`, and *the only way* the closure could be capturing any of them by reference, is if their scopes contain the scope of `f`. This is true for `x` (assuming `f` is as far as the closure escapes), but *not* `y`, and the closure should *therefore* capture `x` by value, allowing that code to compile without explicit `move`. Another, perhaps more common example is `.flat_map(|x| (0..n).map(|i| x + i))` - the inner closure escapes the scope of `x` (by being returned from the outer closure). <hr/> If the closure is turned into a trait object (e.g. `Box<dyn Fn(...) -> _>`) in the scope where it is created in (with all the captures in scope), we can't change anything there, since it'd require lifetime analysis. But since the stabilization of `impl Trait`, it's becoming increasingly common to return various types that contain closures (such as iterators), and that case can be *readily* served by this change, e.g.: ```rust fn compose<A, B, C>( f: impl Fn(A) -> B, g: impl Fn(B) -> C, ) -> impl Fn(A) -> C { // Currently requires `move`, but we can solve that. /*move*/ |x| g(f(x)) } ``` <hr/> There's only one issue I could think of, with this approach: `Copy` by-value captures can have surprising outcomes, in that the capture leaves the original accessible, without a syntactical indication, e.g.: ```rust let outer_get_x = { let mut x = 0; let get_x = || x; x += 1; get_x }; assert_eq!(outer_get_x(), 0); ``` If `x` were to be declared before `outer_get_x`, then this code would not compile, as the closure would be borrowing it (which would conflict with `x += 1` mutating `x`), instead of holding onto a copy of it. What can we do? I think that ideally we'd treat the closure as capturing by borrow, but only in terms of preventing mutable access to `x` for the remainder of its scope, and otherwise capture a copy. (Then you could only observe a problem if you had a copyable type with interior mutability.) But I'm not sure what the best implementation approach for that would be. cc @nikomatsakis @cramertj @withoutboats
C-enhancement,A-closures,T-lang,T-compiler
low
Minor
358,306,770
pytorch
[Feature request] Intuitive error message when input to Linear is not cudarized
If you have a question or would like help and support, please ask at our [forums](https://discuss.pytorch.org/). If you are submitting a feature request, please preface the title with [feature request]. If you are submitting a bug report, please fill in the following details. ## Issue description I run a program. The result is: ``` File "/toknas/hugh/condap4/lib/python3.6/site-packages/torch/nn/modules/linear.py", line 55, in forward return F.linear(input, self.weight, self.bias) File "/toknas/hugh/condap4/lib/python3.6/site-packages/torch/nn/functional.py", line 1024, in linear return torch.addmm(bias, input, weight.t()) RuntimeError: Expected object of type torch.cuda.FloatTensor but found type torch.FloatTensor for argument #4 'mat1' ``` From inspection, I guess that argument 4 is probably argument 3, in `torch.addmm(bias, input, weight.t())`, and that there is some hidden 1st argument, which is why it's not 'argument 3'. Thus I deduce that the problem is that the Linear's `weight` has not been converted to cuda, and thus that the `Linear` itself hasnt been converted to `cuda`. I spend ... a while .. trying to figure out why. In fact, I'm totally wrong. It's the input that is not cuda... I reckon the error message is not very clear. I'm not sure how to fix pytorch to give a clearer message, but I reckon it would be clearer if the pytorch message said something like 'mismatch between Linear(is_cuda=True) and input tensor (is_cuda=False)'. How to achieve this is not clear to me. I'm just reporting this preference :) ## Code example ``` import torch from torch import nn h = nn.Linear(2, 3) h = h.cuda() i = torch.rand(1, 2) h(i) ``` output: ``` Traceback (most recent call last): File "tmp_prog/test.py", line 7, in <module> h(i) File "/toknas/hugh/condap4/lib/python3.6/site-packages/torch/nn/modules/module.py", line 477, in __call__ result = self.forward(*input, **kwargs) File "/toknas/hugh/condap4/lib/python3.6/site-packages/torch/nn/modules/linear.py", line 55, in forward return F.linear(input, self.weight, self.bias) File "/toknas/hugh/condap4/lib/python3.6/site-packages/torch/nn/functional.py", line 1024, in linear return torch.addmm(bias, input, weight.t()) RuntimeError: Expected object of type torch.cuda.FloatTensor but found type torch.FloatTensor for argument #4 'mat1' ``` ## System Info Please copy and paste the output from our [environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py) (or fill out the checklist below manually). You can get the script and run it with: ``` wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py # For security purposes, please check the contents of collect_env.py before running it. python collect_env.py ``` ``` Collecting environment information... PyTorch version: 0.4.1 Is debug build: No CUDA used to build PyTorch: 9.0.176 OS: Ubuntu 16.04.5 LTS GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609 CMake version: version 3.5.1 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: 9.0.176 GPU models and configuration: GPU 0: Tesla M60 Nvidia driver version: 384.130 cuDNN version: Probably one of the following: /usr/lib/x86_64-linux-gnu/libcudnn.so.5.1.10 /usr/lib/x86_64-linux-gnu/libcudnn.so.6.0.21 /usr/lib/x86_64-linux-gnu/libcudnn.so.7.0.3 /usr/lib/x86_64-linux-gnu/libcudnn_static_v5.a /usr/lib/x86_64-linux-gnu/libcudnn_static_v6.a /usr/lib/x86_64-linux-gnu/libcudnn_static_v7.a Versions of relevant libraries: [pip] numpy (1.14.3) [pip] torch (0.4.1) [pip] torchtext (0.2.3) [pip] torchvision (0.2.1) [conda] pytorch 0.4.1 py36_cuda9.0.176_cudnn7.1.2_1 pytorch [conda] torchtext 0.2.3 <pip> [conda] torchvision 0.2.1 py36_1 pytorch ``` - PyTorch or Caffe2: pytorch 0.4.1 - How you installed PyTorch (conda, pip, source): conda - Build command you used (if compiling from source): n/a - OS: ubuntu 16.04 - PyTorch version: 0.4.1 - Python version: 3.6.6 - CUDA/cuDNN version: - GPU models and configuration: - GCC version (if compiling from source): - CMake version: - Versions of any other relevant libraries:
module: error checking,triaged
low
Critical
358,308,428
opencv
make VideoWriter::open() print out all appropriate fourcc codes
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest developer build. * Check if other person has already created the same issue to avoid duplicates. You can comment on it if there already is an issue. * Try to be as detailed as possible in your report. * Report only one problem per created issue. This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library. --> ##### System information (version) <!-- Example - OpenCV => 3.4.0 - Operating System / Platform => - Compiler => Visual Studio 2015 --> - OpenCV => 3.4.0 - Operating System / Platform => all - Compiler => all ##### Detailed description <!-- your description --> Figuring out what fourcc codes one can use is a pain. If would be great is VideoWriter::open could return all the possible codes or at least print them them out. A very simple way would be to print the codes to stdout if a fourcc == -1 is given/ ##### Steps to reproduce The change would seem to be in cap_ffmpeg_impl.hpp ( CvVideoWrite_FFMPEG::open ) ```` 1914d1913 < 1921,1959d1919 < // need to define fallback_tags earlier < const struct AVCodecTag * fallback_tags[] = { < #if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(54, 1, 0) < // APIchanges: < // 2012-01-31 - dd6d3b0 - lavf 54.01.0 < // Add avformat_get_riff_video_tags() and avformat_get_riff_audio_tags(). < avformat_get_riff_video_tags(), < #endif < #if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(55, 25, 100) && defined LIBAVFORMAT_VERSION_MICRO && LIBAVFORMAT_VERSION_MICRO >= 100 < // APIchanges: ffmpeg only < // 2014-01-19 - 1a193c4 - lavf 55.25.100 - avformat.h < // Add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags(). < avformat_get_mov_video_tags(), < #endif < codec_bmp_tags, // fallback for avformat < 54.1 < NULL }; < < if (fourcc==-1 || fourcc == CV_FOURCC('#','#','#','#')){ < const AVCodecTag *const *chk_tags = fallback_tags; < std::string tag_type = "fallback"; < if (fmt && fmt->codec_tag){ < chk_tags = fmt->codec_tag; < tag_type = "extension based"; < } < int i; < fflush(stdout); < for (i = 0; chk_tags && chk_tags[i]; i++) { < const AVCodecTag *tags = chk_tags[i]; < while(tags->id != AV_CODEC_ID_NONE){ < fprintf(stdout,"%s: codec_id=%x fourc=%c%c%c%c\n", < tag_type.c_str(),tags->id, < CV_TAG_TO_PRINTABLE_CHAR4(tags->tag)); < tags++; < } < } < fflush(stdout); < return false; < } < 1978a1938,1952 > const struct AVCodecTag * fallback_tags[] = { > #if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(54, 1, 0) > // APIchanges: > // 2012-01-31 - dd6d3b0 - lavf 54.01.0 > // Add avformat_get_riff_video_tags() and avformat_get_riff_audio_tags(). > avformat_get_riff_video_tags(), > #endif > #if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(55, 25, 100) && defined LIBAVFORMAT_VERSION_MICRO && LIBAVFORMAT_VERSION_MICRO >= 100 > // APIchanges: ffmpeg only > // 2014-01-19 - 1a193c4 - lavf 55.25.100 - avformat.h > // Add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags(). > avformat_get_mov_video_tags(), > #endif > codec_bmp_tags, // fallback for avformat < 54.1 > NULL }; ````
feature,priority: low,category: videoio
low
Critical
358,314,922
go
gccgo: internal compiler error: in mangled_name
## Update I change package domain from `9fans.net` to `fans.net`, it can build without any error. I think package domain can't start with number in gccgo. -------------- gccgo 8.2.0 work well in most case at my **SunOS 5.10/SPARC** mechine. But compiler error when I trying to build `9fans.net/go/draw` I try gccgo in Windows WSL, and the error can be reproduced. ### What version of Go are you using (`go version`)? go1.10.3 gccgo (GCC) 8.2.0 solaris/sparc go1.10.3 gccgo (GCC) 8.2.0 linux/amd64(in windows WSL) ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? SunOS 5.10/SPARC windows10 WSL(ubuntu)/amd64 ### What did you do? ```bash cd $GOPATH/src/9fans.net/go/draw go build ``` ### What did you expect to see? success build ### What did you see instead? ``` # 9fans.net/go/draw/drawfcall go1: internal compiler error: in mangled_name, at go/gofrontend/names.cc:539 0x668549 Type::mangled_name[abi:cxx11](Gogo*) const ../../gcc-8.2.0/gcc/go/gofrontend/names.cc:539 0x710b8a Gogo::specific_type_function_names(Type const*, Named_type const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) ../../gcc-8.2.0/gcc/go/gofrontend/names.cc:290 0x74f897 Type::specific_type_functions(Gogo*, Named_type*, long, Function_type*, Function_type*, Named_object**, Named_object**) ../../gcc-8.2.0/gcc/go/gofrontend/types.cc:2014 0x74e395 Type::type_functions(Gogo*, Named_type*, Function_type*, Function_type*, Named_object**, Named_object**) ../../gcc-8.2.0/gcc/go/gofrontend/types.cc:1946 0x6e9a02 Specific_type_functions::type(Type*) ../../gcc-8.2.0/gcc/go/gofrontend/gogo.cc:2424 0x7378d2 Type::traverse(Type*, Traverse*) ../../gcc-8.2.0/gcc/go/gofrontend/types.cc:318 0x73a324 Forward_declaration_type::do_traverse(Traverse*) ../../gcc-8.2.0/gcc/go/gofrontend/types.cc:12059 0x7378e8 Type::traverse(Type*, Traverse*) ../../gcc-8.2.0/gcc/go/gofrontend/types.cc:326 0x6e9988 Specific_type_functions::type(Type*) ../../gcc-8.2.0/gcc/go/gofrontend/gogo.cc:2447 0x7378d2 Type::traverse(Type*, Traverse*) ../../gcc-8.2.0/gcc/go/gofrontend/types.cc:318 0x6ecedc Bindings::traverse(Traverse*, bool) ../../gcc-8.2.0/gcc/go/gofrontend/gogo.cc:7950 0x6ed101 Gogo::traverse(Traverse*) ../../gcc-8.2.0/gcc/go/gofrontend/gogo.cc:2498 0x6ed197 Gogo::write_specific_type_functions() ../../gcc-8.2.0/gcc/go/gofrontend/gogo.cc:2474 0x6e876a go_parse_input_files(char const**, unsigned int, bool, bool) ../../gcc-8.2.0/gcc/go/gofrontend/go.cc:162 0x6e456f go_langhook_parse_file ../../gcc-8.2.0/gcc/go/go-lang.c:329 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See <https://gcc.gnu.org/bugs/> for instructions. ```
NeedsInvestigation
low
Critical
358,316,957
TypeScript
Covariant assignability of type guard functions is unsound
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** master (af8e44a) <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** user-defined type guard predicate assignable assignability unsound covariant invariant **Code** ```ts class A { a: string; } class B extends A { b: string; } function isB(x: {}): x is B { return x instanceof B; } const isA: (x: {}) => x is A = isB; // allowed, should be compile error const x = <A | string>new A(); if (!isA(x)) { console.log(x.slice()); // runtime error } ``` **Expected behavior:** Assignability error where marked. **Actual behavior:** Successful compilation, runtime error. **Playground Link:** [link](https://www.typescriptlang.org/play/#src=class%20A%20%7B%0D%0A%20%20%20%20a%3A%20string%3B%0D%0A%7D%0D%0Aclass%20B%20extends%20A%20%7B%20%0D%0A%20%20%20%20b%3A%20string%3B%0D%0A%7D%0D%0Afunction%20isB(x%3A%20%7B%7D)%3A%20x%20is%20B%20%7B%20%0D%0A%20%20%20%20return%20x%20instanceof%20B%3B%0D%0A%7D%0D%0Aconst%20isA%3A%20(x%3A%20%7B%7D)%20%3D%3E%20x%20is%20A%20%3D%20isB%3B%20%20%2F%2F%20allowed%2C%20should%20be%20error%0D%0A%0D%0Aconst%20x%20%3D%20%3CA%20%7C%20string%3Enew%20A()%3B%0D%0Aif%20(!isA(x))%20%7B%0D%0A%20%20%20%20console.log(x.slice())%3B%20%20%2F%2F%20runtime%20error%0D%0A%7D%0D%0A) **Related Issues:** #24865 If we want a kind of type guard function that is covariant, we need to not narrow when it returns false, i.e., a "true" result would be sufficient but not necessary for the value to be of the tested type. And we'd need a different syntax for the type of a type guard function that is necessary and sufficient compared to a type guard function that is sufficient but not necessary. One idea for the latter is `(x: {}) => x is A | false`. (A type guard function that is necessary but not sufficient would then be `(x: {}) => x is A | true`.) Getting all these variants supported would help us support conjunctions and disjunctions of type guard calls with other boolean expressions in #24865. If you like, this issue can be for the removal of the unsound assignability rule and I can file a separate suggestion for the new kinds of type guard functions.
Suggestion,Help Wanted,Committed
low
Critical
358,335,687
go
cmd/compile: eliminate unnecessary extend-of-truncate calculations in prove pass
Consider: ```go func f(x uint64) uint64 { return uint64(uint32(x)) } ``` If, when inlined, x is known to be small, then f can be replaced by the identity function. I was curious, so I sketched this quickly for a specific case by adding this case to `func simplifyBlock` in prove.go: ```go case OpZeroExt32to64: if trunc := v.Args[0]; trunc.Op == OpTrunc64to32 { orig := trunc.Args[0] lim, ok := ft.limits[orig.ID] if !ok { continue } if lim.umax < (1<<32) || (lim.max < (1<<31) && ft.isNonNegative(orig)) { if b.Func.pass.debug > 0 { b.Func.Warnl(v.Pos, "Proved %v bounded", v.Op) } v.reset(OpCopy) v.AddArg(orig) } } ``` It triggers just a few times during make.bash. This issue is to explore whether adding more cases makes this trigger enough times to be worth doing. There are lots more variants of signed/zero extension, and maybe other ways to generalize this optimization. (It also needs tests, both of correctness and that the optimization triggers.) Also, my limit tests in the code above could easily have fencepost problems. :) cc @rasky @randall77
Performance,NeedsInvestigation,compiler/runtime
low
Critical
358,353,375
go
cmd/gofmt: call("arg", newline /* comment */) is changed to syntax error
### What version of Go are you using (`go version`)? go version go1.10.3 windows/amd64 ### Does this issue reproduce with the latest release? Yes, see https://play.golang.org/p/Gv-AmNeMSdT ### What did you do? Open https://play.golang.org/p/Gv-AmNeMSdT, click Format. ### What did you expect to see? After formatting, the program still compiles. ### What did you see instead? Gofmt removes the comma, leading to a syntax error: > prog.go:8:33: syntax error: unexpected newline, expecting comma or )
NeedsFix
low
Critical
358,356,511
pytorch
Assorted issues in Caffe2's Metal ops
I've been playing around with Caffe2's Metal ops in the iOS contrib module on macOS and have noticed a few issues. I'm not certain if some of these can be attributed to the differences in macOS vs iOS; however, it's probably worth a quick review by someone familiar with it. **1. Potentially incorrect texture write in concat op** For the texture2d write call here: https://github.com/pytorch/pytorch/blob/v0.4.1/caffe2/mobile/contrib/ios/mpscnn/MPSCNN.metal#L954 , I believe the correct call should omit the final `gid.z` argument (which is the `lod` arg according to the Metal language spec). On macOS this is a hard compilation error as `lod` is constrained to be 0. **2. Uninitialized member variables** A number of ops have uninitialized member vars (eg: https://github.com/pytorch/pytorch/blob/v0.4.1/caffe2/mobile/contrib/ios/mpscnn/mpscnn.mm#L1776) that are lazily initialized based on their uninitialized value (https://github.com/pytorch/pytorch/blob/v0.4.1/caffe2/mobile/contrib/ios/mpscnn/mpscnn.mm#L1701). These can and do (at least on macOS) lead to segfaults. **3. Assorted minor inconsistencies in comments/messages/etc...** Examples: In `MPSCNNNormalizePlanarYUVOp`: ``` VLOG(2) << "InstanceNorm took: " << t.MilliSeconds(); ``` In `MPSCNNConcatOp`: ``` // Only handle three inputs for now. OPERATOR_NEEDS_FEATURE(Inputs().size() <= 4, "MPSCNNConcat only handles up to four inputs"); ```
caffe2
low
Critical
358,361,909
TypeScript
Error output: Don't deep compare to native objects
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.1.0-dev.201xxxxx <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** Currently if we assign not assignable type to a variable, ts shows a deep 'not assignable' error with mark all not compatible fields. Even for a native objects like Array, Promise, Date etc... But I think this is too noisily. All I want to know is that my type in not assignable to Array. Don't try to compare guts of Array with my type. **Code** ```ts type A = {a: string} var y:A = {a: ''} var x0: string = y; // Type 'A' is not assignable to type 'string'. -- it's ok! var x1: A[] = y; // Property 'length' is missing in type 'A'. var x2: Promise<A> = y; // Property 'then' is missing in type 'A'. var x3: Date = y; // Property 'toDateString' is missing in type 'A'. var x4: Node = y; // Property 'baseURI' is missing in type 'A'. ``` **Expected behavior:** **Actual behavior:** **Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior --> **Related Issues:** <!-- Did you find other bugs that looked similar? -->
Suggestion,Committed,Domain: Error Messages,Rescheduled
low
Critical
358,376,368
godot
Mono_logs folder gobbles up disk space
**Godot version:** 3.1 Alpha Mono **OS/device including version:** KDE Neon **Issue description:** After some months of using Godot, I noticed I suddenly ran out of disk space. Using k4dirstat, I found the culprit: the folder `~/.local/share/godot/mono/mono_logs` grew to a whopping 6.18 GB, filled with nothing but text files containing logs: ![mem](https://user-images.githubusercontent.com/31383123/45264649-28c97c80-b440-11e8-8c7a-e841f4d9aa5c.png) **Steps to reproduce:** Not sure, it seems to be triggered by using Godot Mono for a while.
bug,confirmed,topic:dotnet
medium
Critical
358,390,230
go
runtime: feature request: Support for ASLR with the heap
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ```go version go1.11 freebsd/amd64``` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOCACHE="/home/shawn/.cache/go-build" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="freebsd" GOOS="freebsd" GOPATH="/home/shawn/go" GOPROXY="" GORACE="" GOROOT="/usr/local/go" GOTMPDIR="" GOTOOLDIR="/usr/local/go/pkg/tool/freebsd_amd64" GCCGO="gccgo" CC="clang" CXX="clang++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build851003260=/tmp/go-build -gno-record-gcc-switches" ``` ### What did you do? Run a go application ### What did you expect to see? The heap mapped at a non-fixed location. ### What did you see instead? The heap mapped at a fixed location. ### More information: I've read through a previous discussion in 2012 about golang's use of deterministic memory allocations here: https://groups.google.com/forum/#!msg/golang-nuts/Jd9tlNc6jUE/qp2oyfEEfjQJ Back then, -buildmode=pie didn't exist back then, so I figured a revisit of the topic might be warranted. Go 1.11 introduced -buildmode=pie for FreeBSD, which HardenedBSD is able to take advantage of, given HBSD's PaX ASLR implementation. HardenedBSD is a hardened derivative of FreeBSD. When applying -buildmode=pie with gitea, I wanted to verify that golang was able to take full advantage of HardenedBSD's robust ASLR implementation. I noticed a fixed mapping at 0xc000000000. I restarted the process, looked at the memory mappings again (`procstat -v $PID`) and saw 0xc000000000 again. Grepping through the golang 1.11 codebase revealed that Go allocates its heap at a fixed address, starting at 0xc000000000. With the heap being allocated at a fixed mapping, golang applications are still not able to really utilize ASLR. Thus, -buildmode=pie is moot. Given that the reason to implement PIE support is to take advantage of ASLR, I'm curious if perhaps updating the heap management code for ASLR support was overlooked. Or perhaps it wasn't, and this is deliberate. Or perhaps a totally different reason. Either way, could someone shed some light on this? I submitted a post on the golang-nuts mailing list, asking the same questions. It can be found here: https://groups.google.com/d/msg/golang-nuts/pAGcmRA_V5s/2NnOPDEcBgAJ
NeedsInvestigation,compiler/runtime
medium
Critical
358,393,191
godot
FileDialog type ahead does not position to file or directory in editor
**Godot version:** ![screen shot 2018-09-09 at 12 33 39 pm](https://user-images.githubusercontent.com/930478/45266720-75578c80-b42d-11e8-987c-4d4e35f0b6ae.png) **OS/device including version:** MacBook Pro (15-inch, Mid 2012) 10.13.6 (High Sierra) **Issue description:** Cannot type ahead to locate file or folder. This may be a widespread issue with Open File appears. Load Custom Font for a Button ![screen shot 2018-09-09 at 12 31 56 pm](https://user-images.githubusercontent.com/930478/45266785-9076cc00-b42e-11e8-9492-b49613839740.png) Install an Asset from the online Asset Library ![screen shot 2018-09-09 at 12 50 13 pm](https://user-images.githubusercontent.com/930478/45266802-fcf1cb00-b42e-11e8-9573-e2c2d5452b9f.png) **Steps to reproduce:** Try to open a file or select directory by typing first letter. It will not position there. Also should be case insensitive.
enhancement,topic:gui
low
Minor
358,395,074
vscode
Allow text-shadow to be used in themes
I used to use a neon theme in brackets that had really awesome glowing neon text See below: https://github.com/remonbonbon/brackets-theme-neon-sign I tried making a similar theme in vscode but didn't realise the CSS property text-shadow was not supported. I know this is a very small and low priority request but it would totally make my day if we could implement glowing text in our themes. Thank you for your awesome work!
feature-request,tokenization,editor-theming
high
Critical
358,395,429
go
cmd/compile: BCE optimizes less for string than slice
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.11 linux/amd64 ### Does this issue reproduce with the latest release? yes ### What did you do? ```golang package main type T = string // type T = []int func NumSameBytes_1(x, y T) int { if len(x) > len(y) { x, y = y, x } for i := 0; i < len(x); i++ { if x[i] != y[i] { // y[i] needs bound check return i } } return len(x) } func NumSameBytes_2(x, y T) int { if len(x) > len(y) { x, y = y, x } y = y[:len(x)] // this line doesn't work for i := 0; i < len(x); i++ { if x[i] != y[i] { // y[i] still needs bound check (line 25) return i } } return len(x) } func NumSameBytes_3(x, y T) int { if len(x) > len(y) { x, y = y, x } if len(x) <= len(y) { // this line works for i := 0; i < len(x); i++ { if x[i] != y[i] { // bound check elimated for y[i] return i } } } return len(x) } func main() {} ``` ### What did you expect to see? For `T` is either `string` or `[]int`, the bounds check for `y[i]` at line 25 should be eliminated. But this is only true for `T` is `[]int`. ### What did you see instead? When `T` is `string`, the bounds check for y[i] at line 25 is still needed. ``` $ go build -gcflags="-d=ssa/check_bce/debug=1" main.go # command-line-arguments ./main.go:11:15: Found IsInBounds ./main.go:23:7: Found IsSliceInBounds ./main.go:25:15: Found IsInBounds ```
Performance,NeedsInvestigation,compiler/runtime
low
Critical
358,395,831
pytorch
High leverage TH operations to port to ATen
Now that the THTensor/THStorage structs live directly in ATen, this unlocks some core tensor operations which we should port to ATen sooner rather than later. Here is an incomplete list: - [ ] Copying/tensor conversions, e.g., `THByteTensor_copyByte` - [ ] Basic storage functionality in `THStorage.h` - [ ] Basic tensor functionality in `THTensor.h`. Of particular importance (e.g., these are exercised when you call `at::empty()`): - [ ] `THTensor_(newWithSize)` - [ ] `THTensor_(newWithStorage)` - [ ] `THTensor_(setStorageNd)` - [ ] `THTensor_resizeNd` Rewrites should NOT use raw pointers (use smart pointers instead). There may also be some macro-level organization that makes sense; for example, it probably doesn't make too much sense for `setStorageNd` to also know how to allocate storages. cc @gchanan @mruberry
triaged,module: porting,better-engineering,module: tensor creation
low
Minor
358,398,940
go
x/build/cmd/gopherbot: auto-Subscribe owners to reported issues based on directory
We now have an owners file which assigns various Gophers as owners/cc'd on issues for different directories. It would be good to match incoming issues and auto-subscribe the relevant people, e.g. to do in an automatic fashion what @bcmills is doing manually here. https://github.com/golang/go/issues/27524#issuecomment-419147447
Builders
medium
Major
358,403,560
rust
Make codegen treat inline fns the same as regular fns in non-opt builds
See https://github.com/rust-lang/rust/pull/53963#issuecomment-419472343 and following. There's no need to create private duplicates of `#[inline]` functions in debug builds, since we don't even run an inlining pass there.
A-codegen,I-compiletime,T-compiler,A-incr-comp,WG-compiler-performance,WG-llvm
low
Critical
358,408,488
vscode
[html] Automatically delete HTML closing tag when converting to self-closing tag
A simple but useful feature would be to automatically delete an HTML or a JSX closing tag when converting to a self-closing tag. In the latest version of VS Code (1.27.1), in order to go from ``` <App><App> ``` to ``` <App /> ``` , I need to do the following: ``` <App /></App> ``` and then manually delete the closing tag. It would be great if, at this point, VS Code would do that automatically. I think it's simple enough and would be a nice feature especially for web developers who use Emmet. Therefore, it could be a core feature. I tried searching for an extension that does this, but I was not able to find any. If an extension already exists, please link it here. *This is not a duplicate of any of the issues linked by the experimental duplicate detection.*
feature-request,html
medium
Critical
358,419,750
TypeScript
ConstructorOf<T> wrapper to declare type of constructor of type parameter
so if I have ```ts class MyClass { } ``` Then the type of `MyClass.prototype` is `MyClass` And the type of `MyClass` is `typeof MyClass` If I want these two functions ```ts function takesPrototype(p: MyClass) { /* ... */ } function takesClass(p: typeof MyClass) { /* ... */ } ``` I can call them as ```ts takesPrototype(MyClass.prototype) takesClass(MyClass) ``` But what if `MyClass` was defined as a type parameter. For example if I want to have a function that of this type - ```ts const mod = getModule(ModuleClass) // mod should be of type ModuleClass ``` I would like to define this as such ```ts function getModule<M extends Module>(moduleClass: typeof M): M { // something like a getInstance() pattern } ``` The problem with this is `typeof M` will complain that **I am trying to use M as a value while it is a type**. So I suggest a type wrapper of this type ```ts type ConstructorOf<C> = { new( ...args: any[] ): C } ``` Now I can define my function as such ```ts function getModule<M extends Module>(moduleClass: ConstructorOf<M>): M { // something like a getInstance() pattern } ```
Suggestion,In Discussion
low
Major
358,428,808
go
proposal: encoding/json: "nonil" struct tag to marshal nil slices and maps as non-null
There have been many reports about encoding a nil slice or map as `[ ]` or `{ }` respectively. See: https://github.com/golang/go/issues/2278 Currently it is encoded as `null`. This is a source of bugs in many non-theoretical cases (eg consumers of JSON APIs). There are many issues on Google about others falling into this pitfall so it is at least not uncommon. It would be nice if a struct tag can be used to signify that we intend the nil slice or map to be treated as an empty slice or map respectively for the purposes of marshalling. Current solutions include: https://github.com/helloeave/json. This is not a nice solution because it requires the assistance of a third-party package. This is how it's implemented in third party lib: https://github.com/helloeave/json/commit/7b6e442cca931fedb7c01443aaaa23aea0585062 **My PR can be found here: https://github.com/golang/go/pull/27813** (subject to an agreed struct tag name, which when decided, can be updated in the PR)
Proposal,Proposal-Hold
high
Critical
358,432,600
nvm
Trouble using NVM as non-root user
<!-- Thank you for being interested in nvm! Please help us by filling out the following form if youβ€˜re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! --> - Operating system and version: CentOS 7.5.1804 - `nvm debug` output: <details> <!-- do not delete the following blank line --> ```sh nvm --version: v0.33.11 $SHELL: /usr/local/cpanel/bin/jailshell $SHLVL: 1 $HOME: /home/squak $NVM_DIR: '$HOME/.nvm' $PATH: $NVM_DIR/versions/node/v8.9.4/bin:/usr/local/cpanel/3rdparty/lib/path-bin:/usr/local/jdk/bin:/usr/local/cpanel/3rdparty/lib/path-bin:/usr/lib64/qt-3.3/bin:$HOME/perl5/bin:/usr/local/cpanel/3rdparty/lib/path-bin:/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin:/opt/cpanel/composer/bin:/usr/local/bin:/usr/X11R6/bin:$HOME/.local/bin:$HOME/bin $PREFIX: '' $NPM_CONFIG_PREFIX: '' $NVM_NODEJS_ORG_MIRROR: '' $NVM_IOJS_ORG_MIRROR: '' shell version: 'GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)' uname -a: 'Linux 3.10.0-042stab130.1 #1 SMP Tue May 22 09:19:34 MSK 2018 x86_64 x86_64 x86_64 GNU/Linux' curl: /bin/curl, curl 7.29.0 (x86_64-redhat-linux-gnu) libcurl/7.29.0 NSS/3.34 zlib/1.2.7 libidn/1.28 libssh2/1.4.3 wget: /bin/wget, GNU Wget 1.14 built on linux-gnu. git: /usr/local/cpanel/3rdparty/lib/path-bin/git, git version 2.18.0 grep: (grep --color=auto), grep (GNU grep) 2.20 awk: /bin/awk, GNU Awk 4.0.2 sed: /bin/sed, sed (GNU sed) 4.2.2 cut: /bin/cut, cut (GNU coreutils) 8.22 basename: /bin/basename, basename (GNU coreutils) 8.22 rm: (rm -i), rm (GNU coreutils) 8.22 mkdir: /bin/mkdir, mkdir (GNU coreutils) 8.22 xargs: /bin/xargs, xargs (GNU findutils) 4.5.11 nvm current: v8.9.4 which node: $NVM_DIR/versions/node/v8.9.4/bin/node which iojs: which: no iojs in ($NVM_DIR/versions/node/v8.9.4/bin:/usr/local/cpanel/3rdparty/lib/path-bin:/usr/local/jdk/bin:/usr/local/cpanel/3rdparty/lib/path-bin:/usr/lib64/qt-3.3/bin:$HOME/perl5/bin:/usr/local/cpanel/3rdparty/lib/path-bin:/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin:/opt/cpanel/composer/bin:/usr/local/bin:/usr/X11R6/bin:$HOME/.local/bin:$HOME/bin) which npm: $NVM_DIR/versions/node/v8.9.4/bin/npm npm config get prefix: npm root -g: ``` </details> - `nvm ls` output: <details> <!-- do not delete the following blank line --> ```sh -> v8.9.4 default -> node (-> v8.9.4) node -> stable (-> v8.9.4) (default) stable -> 8.9 (-> v8.9.4) (default) iojs -> N/A (default) lts/* -> lts/carbon (-> N/A) lts/argon -> v4.9.1 (-> N/A) lts/boron -> v6.14.4 (-> N/A) lts/carbon -> v8.11.4 (-> N/A) ``` </details> - How did you install `nvm`? (e.g. install script in readme, Homebrew): install script in readme using curl - What steps did you perform? ```sh nvm install 8.9.4 ``` - What happened? ```sh manpath: can't open the manpath configuration file /etc/man_db.conf nvm is not compatible with the npm config "prefix" option: currently set to "" Run nvm use --delete-prefix v8.9.4 to unset it. ``` - What did you expect to happen? I expected it to be installed properly to allow for node usage on SSH for other cPanel accounts that don't have access to root - Is there anything in any of your profile files (`.bashrc`, `.bash_profile`, `.zshrc`, etc) that modifies the `PATH`? Only what NVM put there
root / multiuser issues
low
Critical
358,511,626
godot
bad polygon! error when changing TextureProgress value from 0 to 1
latest master. compiled last night. in any event. this bug is pretty weird. took me a while to track it down steps: - create TextureProgress - give it texture **progress** texture - create a tween in the scene - attach gdscript file put in gdscript: ``` tween.interpolate_property(texture_progress, "value", 100, 0, 2, 0, 0) tween.start() ``` and look at the error: ![](https://i.gyazo.com/b02b14a5e2ef50bda459c555efb2057b.png) full error: https://github.com/godotengine/godot/blob/cf834a22dc78950a9fba484a7f9db98da84cae59/servers/visual/visual_server_canvas.cpp#L692 ``` 0:00:04:0775 - Bad Polygon! ---------- Type:Error Description: Bad Polygon! Time: 0:00:04:0775 C Error: Method/Function Failed, returning: C Source: servers\visual\visual_server_canvas.cpp:692 C Function: VisualServerCanvas::canvas_item_add_polygon ```
bug,topic:gui
low
Critical
358,539,892
pytorch
[caffe2] caffe2 openmp linking error with xcode 9.0(AppleClang 9.0) on mac
## Issue description build pytorch and caffe2 from: python setup.py build develop ## System Info - PyTorch or Caffe2: pytorch and caffe2 - How you installed PyTorch (conda, pip, source): source - Build command you used (if compiling from source): python setup.py build develop - OS: mac - Compiler: xcode 9.0(AppleClang 9.0) - PyTorch version: Today's pytorch/master commit 87a9a8f80a9bda49181f9052762ad771f4746c24 - Python version: 3.7 I don't turn on OpenMP, so I don't know why where are a lot of OpenMP related function linking. error message: ``` Undefined symbols for architecture x86_64: "___kmpc_critical", referenced from: _THFloatTensor_addmm in THTensorMath.cpp.o _THDoubleTensor_addmm in THTensorMath.cpp.o _THByteTensor_addmm in THTensorMath.cpp.o _THCharTensor_addmm in THTensorMath.cpp.o _THShortTensor_addmm in THTensorMath.cpp.o _THIntTensor_addmm in THTensorMath.cpp.o _THLongTensor_addmm in THTensorMath.cpp.o ... "___kmpc_end_critical", referenced from: _THFloatTensor_addmm in THTensorMath.cpp.o _THDoubleTensor_addmm in THTensorMath.cpp.o _THByteTensor_addmm in THTensorMath.cpp.o _THCharTensor_addmm in THTensorMath.cpp.o _THShortTensor_addmm in THTensorMath.cpp.o _THIntTensor_addmm in THTensorMath.cpp.o _THLongTensor_addmm in THTensorMath.cpp.o ... "___kmpc_end_reduce_nowait", referenced from: _.omp_outlined..270 in THTensorMoreMath.cpp.o _.omp_outlined..271 in THTensorMoreMath.cpp.o _.omp_outlined..273 in THTensorMoreMath.cpp.o _.omp_outlined..275 in THTensorMoreMath.cpp.o _.omp_outlined..43 in THTensorEvenMoreMath.cpp.o _.omp_outlined..44 in THTensorEvenMoreMath.cpp.o _.omp_outlined..46 in THTensorEvenMoreMath.cpp.o ... "___kmpc_end_serialized_parallel", referenced from: at::native::embedding_renorm_cpu_(at::Tensor&, at::Tensor const&, double, double) in Embedding.cpp.o at::native::_embedding_bag_dense_backward_cpu(at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, long long, bool, long long) in EmbeddingBag.cpp.o at::native::softmax_cpu(at::Tensor const&, long long) in SoftMax.cpp.o at::native::log_softmax_cpu(at::Tensor const&, long long) in SoftMax.cpp.o at::native::softmax_backward_cpu(at::Tensor const&, at::Tensor const&, long long, at::Tensor const&) in SoftMax.cpp.o at::native::log_softmax_backward_cpu(at::Tensor const&, at::Tensor const&, long long, at::Tensor const&) in SoftMax.cpp.o at::TensorIterator::for_each(std::__1::function<void (int, char**, long long const*, long long)> const&) in TensorIterator.cpp.o ... "___kmpc_for_static_fini", referenced from: _.omp_outlined..9 in Embedding.cpp.o _.omp_outlined. in EmbeddingBag.cpp.o _.omp_outlined. in GridSampler.cpp.o _.omp_outlined..42 in GridSampler.cpp.o _.omp_outlined..44 in GridSampler.cpp.o _.omp_outlined..45 in GridSampler.cpp.o _.omp_outlined..47 in GridSampler.cpp.o ... "___kmpc_for_static_init_4", referenced from: _.omp_outlined. in init.cpp.o _.omp_outlined..35 in init.cpp.o _.omp_outlined..36 in init.cpp.o _.omp_outlined..37 in init.cpp.o _.omp_outlined..49 in init.cpp.o _.omp_outlined..52 in init.cpp.o _.omp_outlined..220 in init.cpp.o ... "___kmpc_for_static_init_8", referenced from: _.omp_outlined..9 in Embedding.cpp.o _.omp_outlined. in EmbeddingBag.cpp.o _.omp_outlined. in GridSampler.cpp.o _.omp_outlined..42 in GridSampler.cpp.o _.omp_outlined..44 in GridSampler.cpp.o _.omp_outlined..45 in GridSampler.cpp.o _.omp_outlined..47 in GridSampler.cpp.o ... "___kmpc_for_static_init_8u", referenced from: _.omp_outlined..203 in init.cpp.o _.omp_outlined..207 in init.cpp.o _.omp_outlined..209 in init.cpp.o _.omp_outlined..210 in init.cpp.o "___kmpc_fork_call", referenced from: at::native::embedding_dense_backward_cpu(at::Tensor const&, at::Tensor const&, long long, long long, bool) in Embedding.cpp.o at::native::embedding_renorm_cpu_(at::Tensor&, at::Tensor const&, double, double) in Embedding.cpp.o at::native::_embedding_bag_dense_backward_cpu(at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, long long, bool, long long) in EmbeddingBag.cpp.o at::native::grid_sampler_2d_cpu(at::Tensor const&, at::Tensor const&, long long, long long) in GridSampler.cpp.o at::native::grid_sampler_3d_cpu(at::Tensor const&, at::Tensor const&, long long, long long) in GridSampler.cpp.o at::native::grid_sampler_2d_backward_cpu(at::Tensor const&, at::Tensor const&, at::Tensor const&, long long, long long) in GridSampler.cpp.o at::native::grid_sampler_3d_backward_cpu(at::Tensor const&, at::Tensor const&, at::Tensor const&, long long, long long) in GridSampler.cpp.o ... "___kmpc_global_thread_num", referenced from: at::native::embedding_renorm_cpu_(at::Tensor&, at::Tensor const&, double, double) in Embedding.cpp.o at::native::_embedding_bag_dense_backward_cpu(at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, long long, bool, long long) in EmbeddingBag.cpp.o at::native::softmax_cpu(at::Tensor const&, long long) in SoftMax.cpp.o at::native::log_softmax_cpu(at::Tensor const&, long long) in SoftMax.cpp.o at::native::softmax_backward_cpu(at::Tensor const&, at::Tensor const&, long long, at::Tensor const&) in SoftMax.cpp.o at::native::log_softmax_backward_cpu(at::Tensor const&, at::Tensor const&, long long, at::Tensor const&) in SoftMax.cpp.o at::TensorIterator::for_each(std::__1::function<void (int, char**, long long const*, long long)> const&) in TensorIterator.cpp.o ... "___kmpc_push_num_threads", referenced from: void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 0, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 0, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 1, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 1, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 1, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 1, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 0, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 0, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 1, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 1, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o ... "___kmpc_reduce_nowait", referenced from: _.omp_outlined..270 in THTensorMoreMath.cpp.o _.omp_outlined..271 in THTensorMoreMath.cpp.o _.omp_outlined..273 in THTensorMoreMath.cpp.o _.omp_outlined..275 in THTensorMoreMath.cpp.o _.omp_outlined..43 in THTensorEvenMoreMath.cpp.o _.omp_outlined..44 in THTensorEvenMoreMath.cpp.o _.omp_outlined..46 in THTensorEvenMoreMath.cpp.o ... "___kmpc_serialized_parallel", referenced from: at::native::embedding_renorm_cpu_(at::Tensor&, at::Tensor const&, double, double) in Embedding.cpp.o at::native::_embedding_bag_dense_backward_cpu(at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, at::Tensor const&, long long, bool, long long) in EmbeddingBag.cpp.o at::native::softmax_cpu(at::Tensor const&, long long) in SoftMax.cpp.o at::native::log_softmax_cpu(at::Tensor const&, long long) in SoftMax.cpp.o at::native::softmax_backward_cpu(at::Tensor const&, at::Tensor const&, long long, at::Tensor const&) in SoftMax.cpp.o at::native::log_softmax_backward_cpu(at::Tensor const&, at::Tensor const&, long long, at::Tensor const&) in SoftMax.cpp.o at::TensorIterator::for_each(std::__1::function<void (int, char**, long long const*, long long)> const&) in TensorIterator.cpp.o ... "_omp_get_max_threads", referenced from: _THGetNumThreads in THGeneral.cpp.o caffe2::Caffe2SetOpenMPThreads(int*, char***) in init_omp.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 0, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 0, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 1, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 1, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> >, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 1, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 1, false, float, 1, false, 0>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Transpose<Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::Stride<0, 0> > const>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::Stride<0, 0> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o void Eigen::internal::parallelize_gemm<true, Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> >, long>(Eigen::internal::gemm_functor<float, long, Eigen::internal::general_matrix_matrix_product<long, float, 0, false, float, 0, false, 0>, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1> const, 0, Eigen::OuterStride<-1> >, Eigen::Map<Eigen::Matrix<float, -1, -1, 0, -1, -1>, 0, Eigen::OuterStride<-1> >, Eigen::internal::gemm_blocking_space<0, float, float, -1, -1, -1, 1, false> > const&, long, long, long, bool) in math_cpu.cc.o ... "_omp_get_num_procs", referenced from: _THGetNumCores in THGeneral.cpp.o "_omp_get_num_threads", referenced from: _.omp_outlined. in Embedding.cpp.o _.omp_outlined. in SoftMax.cpp.o _.omp_outlined..35 in SoftMax.cpp.o _.omp_outlined..37 in SoftMax.cpp.o _.omp_outlined..38 in SoftMax.cpp.o _.omp_outlined..46 in SoftMax.cpp.o _.omp_outlined..47 in SoftMax.cpp.o ... "_omp_get_thread_num", referenced from: _.omp_outlined. in Embedding.cpp.o _.omp_outlined. in SoftMax.cpp.o _.omp_outlined..35 in SoftMax.cpp.o _.omp_outlined..37 in SoftMax.cpp.o _.omp_outlined..38 in SoftMax.cpp.o _.omp_outlined..46 in SoftMax.cpp.o _.omp_outlined..47 in SoftMax.cpp.o ... "_omp_in_parallel", referenced from: _THFloatTensor_copy in THTensorCopy.cpp.o _THDoubleTensor_copy in THTensorCopy.cpp.o _THByteTensor_copy in THTensorCopy.cpp.o _THCharTensor_copy in THTensorCopy.cpp.o _THShortTensor_copy in THTensorCopy.cpp.o _THIntTensor_copy in THTensorCopy.cpp.o _THLongTensor_copy in THTensorCopy.cpp.o ... "_omp_set_num_threads", referenced from: _THSetNumThreads in THGeneral.cpp.o caffe2::Caffe2SetOpenMPThreads(int*, char***) in init_omp.cc.o ld: symbol(s) not found for architecture x86_64 ```
caffe2
low
Critical
358,547,020
TypeScript
Error output: difficult to understand multistorey errors
### Incompatible type ```ts var foo = {a: {b: {c: {d: 3}}}}; var bar: {a: {b: {c: {d: {e: number}}}}} = foo; ``` Instead of ``` Type '{ a: { b: { c: { d: number; }; }; }; }' is not assignable to type '{ a: { b: { c: { d: { e: number; }; }; }; }; }'. Types of property 'a' are incompatible. Type '{ b: { c: { d: number; }; }; }' is not assignable to type '{ b: { c: { d: { e: number; }; }; }; }'. Types of property 'b' are incompatible. Type '{ c: { d: number; }; }' is not assignable to type '{ c: { d: { e: number; }; }; }'. Types of property 'c' are incompatible. Type '{ d: number; }' is not assignable to type '{ d: { e: number; }; }'. Types of property 'd' are incompatible. Type 'number' is not assignable to type '{ e: number; }'. ``` Print something like that ``` Type '{ a: { b: { c: { d: number; }; }; }; }' is not assignable to type '{ a: { b: { c: { d: { e: number; }; }; }; }; }'. Property 'a.b.c.d: number' is not assignable to 'a.b.c.d: {...}' ``` ### Missing property ```ts var foo = {a: {b: {c: {d: 3}}}}; var bar: {a: {b: {c: {d: number, e: number}}}} = foo; ``` ``` Type '{ a: { b: { c: { d: number; }; }; }; }' is not assignable to type '{ a: { b: { c: { d: number; e: number; }; }; }; }'. Types of property 'a' are incompatible. Type '{ b: { c: { d: number; }; }; }' is not assignable to type '{ b: { c: { d: number; e: number; }; }; }'. Types of property 'b' are incompatible. Type '{ c: { d: number; }; }' is not assignable to type '{ c: { d: number; e: number; }; }'. Types of property 'c' are incompatible. Type '{ d: number; }' is not assignable to type '{ d: number; e: number; }'. Property 'e' is missing in type '{ d: number; }'. ``` vs ``` Type '{ a: { b: { c: { d: number; }; }; }; }' is not assignable to type '{ a: { b: { c: { d: number; e: number; }; }; }; }'. Property 'a.b.c.e: number' is missing ``` ### Incompatible function parameter ```ts var foo = {a: {b: {c: {d(y: number, x: string, z: number) {}}}}}; var bar: {a: {b: {c: {d(y: number, x: number, z: number):void}}}} = foo; ``` ``` Type '{ a: { b: { c: { d(y: number, x: string, z: number): void; }; }; }; }' is not assignable to type '{ a: { b: { c: { d(y: number, x: number, z: number): void; }; }; }; }'. Parameter 'a.b.c.d(...,x: string,...)' is not compatible to 'a.b.c.d(...,x: number,...)' ``` ### Incompatible function return ```ts var foo = {a: {b: {c: {d(x: number) {}}}}}; var bar: {a: {b: {c: {d(x: number):Date}}}} = foo; ``` ``` Type '{ a: { b: { c: { d(x: number): void; }; }; }; }' is not assignable to type '{ a: { b: { c: { d(x: number): Date; }; }; }; }'. Return type of 'a.b.c.d(...): void' is not compatible to 'a.b.c.d(...): Date' ```
Suggestion,Needs Proposal
low
Critical
358,580,307
flutter
The exception thrown by Overlay.of(context).insert(entry) during build is insufficiently clear. Error message needs to improve.
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.io/ * https://docs.flutter.io/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have found a bug or if our documentation doesn't have an answer to what you're looking for, then fill our the template below. Please read our guide to filing a bug first: https://flutter.io/bug-reports/ --> **Impact**: Overlays not working. This makes a range of UX solutions not usable. **Description** The sample app uses a FAB to show a simple overlay. The intent of this is to eventually show as speed dial with multiple buttons revealing when the FAB is tapped. ## Steps to Reproduce <!-- Please tell us exactly how to reproduce the problem you are running into. Please attach a small application (ideally just one main.dart file) that reproduces the problem. You could use https://gist.github.com/ for this. If the problem is with your application's rendering, then please attach a screenshot and explain what the problem is. --> Use the code from this gist: https://gist.github.com/bizz84/63dea8a27fc9414c9cd830ab908606e2 1. Run the app 2. Tap on the FAB button ## Logs <!-- Run your application with `flutter run --verbose` and attach all the log output below between the lines with the backticks. If there is an exception, please see if the error message includes enough information to explain how to solve the issue. --> ``` [+7814 ms] [DEVICE LOG] 2018-09-10 12:19:02.813770+0100 localhost Runner[45112]: (Flutter) flutter: addToOverlay [ +1 ms] flutter: addToOverlay [ +8 ms] [DEVICE LOG] 2018-09-10 12:19:02.824778+0100 localhost Runner[45112]: (Flutter) [VERBOSE-2:shell.cc(181)] Dart Error: Unhandled exception: [ ] [DEVICE LOG] setState() or markNeedsBuild() called during build. [ +2 ms] [DEVICE LOG] This Overlay widget cannot be marked as needing to build because the framework is already in the process of building widgets. A widget can be marked as needing to be built during the build phase only if one of its ancestors is currently building. This exception is allowed because the framework builds parent widgets before children, which means a dirty descendant will always be built. Otherwise, the framework might not visit this widget during this build phase. [ ] [DEVICE LOG] The widget on which setState() or markNeedsBuild() was called was: [ ] [DEVICE LOG] Overlay-[LabeledGlobalKey<OverlayState>#e2ccf](state: OverlayState#15760(entries: [OverlayEntry#a1f34(opaque: false; maintainState: false), OverlayEntry#f3e57(opaque: false; maintainState: true), OverlayEntry#43ab4(opaque: false; maintainState: false)])) [ ] [DEVICE LOG] The widget which was currently being built when the offending call was made was: [ ] [DEVICE LOG] LayoutBuilder(renderObject: _Ren<…> [ +11 ms] [VERBOSE-2:shell.cc(181)] Dart Error: Unhandled exception: [ ] setState() or markNeedsBuild() called during build. [ ] This Overlay widget cannot be marked as needing to build because the framework is already in the process of building widgets. A widget can be marked as needing to be built during the build phase only if one of its ancestors is currently building. This exception is allowed because the framework builds parent widgets before children, which means a dirty descendant will always be built. Otherwise, the framework might not visit this widget during this build phase. [ ] The widget on which setState() or markNeedsBuild() was called was: [ ] Overlay-[LabeledGlobalKey<OverlayState>#e2ccf](state: OverlayState#15760(entries: [OverlayEntry#a1f34(opaque: false; maintainState: false), OverlayEntry#f3e57(opaque: false; maintainState: true), OverlayEntry#43ab4(opaque: false; maintainState: false)])) [ ] The widget which was currently being built when the offending call was made was: [ ] LayoutBuilder(renderObject: _Ren<…> ``` **NOTE**: Performing a hot reload causes the overlay to show correctly. <!-- Run `flutter analyze` and attach any output of that command below. If there are any analysis errors, try resolving them before filing this issue. --> ``` ``` <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` [βœ“] Flutter (Channel beta, v0.7.3, on Mac OS X 10.13.3 17D47, locale en-GB) β€’ Flutter version 0.7.3 at /Users/andrea/dev/flutter β€’ Framework revision 3b309bda07 (13 days ago), 2018-08-28 12:39:24 -0700 β€’ Engine revision af42b6dc95 β€’ Dart version 2.1.0-dev.1.0.flutter-ccb16f7282 [βœ“] Android toolchain - develop for Android devices (Android SDK 27.0.3) β€’ Android SDK at /Users/andrea/Library/Android/sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-27, build-tools 27.0.3 β€’ ANDROID_HOME = /Users/andrea/Library/Android/sdk β€’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) β€’ All Android licenses accepted. [βœ“] iOS toolchain - develop for iOS devices (Xcode 9.4.1) β€’ Xcode at /Applications/Xcode.app/Contents/Developer β€’ Xcode 9.4.1, Build version 9F2000 β€’ ios-deploy 1.9.2 β€’ CocoaPods version 1.5.3 [βœ“] Android Studio (version 3.1) β€’ Android Studio at /Applications/Android Studio.app/Contents β€’ Flutter plugin version 27.1.1 β€’ Dart plugin version 173.4700 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) [!] VS Code (version 1.23.1) β€’ VS Code at /Applications/Visual Studio Code.app/Contents β€’ Flutter extension not installed; install from https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter [βœ“] Connected devices (4 available) β€’ iPhone 5 β€’ 05ACE87B-4930-4A7E-A812-1A396896ACBD β€’ ios β€’ iOS 10.3 (simulator) β€’ iPhone 6 β€’ 9582A263-6C04-4448-AAD8-2C74B36ED1C1 β€’ ios β€’ iOS 10.3 (simulator) β€’ iPhone 5s β€’ 07E98F87-9268-4243-9A81-33F13A059229 β€’ ios β€’ iOS 11.3 (simulator) β€’ iPhone X β€’ 26A68A3D-8AF8-4D8B-B685-2F95BD0988C2 β€’ ios β€’ iOS 11.3 (simulator) ! Doctor found issues in 1 category. ```
c: crash,framework,a: quality,a: error message,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework
low
Critical
358,586,950
opencv
initUndistortRectifyMap does not handle distortion correctly
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest developer build. * Check if other person has already created the same issue to avoid duplicates. You can comment on it if there already is an issue. * Try to be as detailed as possible in your report. * Report only one problem per created issue. This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library. --> ##### System information (version) - OpenCV => 3.4.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2013 + Python Bindings ##### Detailed description When using `stereoRectify`, the resulting projection matrices depend on the input distortion, which in my understanding should not happen. I encountered the problem when using `stereoRectify` on a new pair of cameras. I have used the whole pipeline successfully before on cameras of the same type. This time, the results returned by `stereRectify` are wrong. The camera centers in the new projection matrices have huge values (see values below). To locate the problem, I run the rectification and undistortion in two individual steps, instead of using `stereRectify`. If I first undistort the images and then feed the new undistorted images and a vector filled with zeros as distortion into `stereRectify` I obtain good results. See the Steps to reproduce. ##### Steps to reproduce My data input: ``` M_L = [[ 430. 0. 200.23631705] [ 0. 430. 199.36536477] [ 0. 0. 1. ]] M_L.dtype = float64 dist_L = [-0.52501353 0.50232865 0.01204062 -0.03013492 -0.42135838] dist_L.dtype = float64 M_R = [[ 430. 0. 199.64316951] [ 0. 430. 199.40004749] [ 0. 0. 1. ]] M_R.dtype = float64 dist_R = [-0.44271713 0.01572439 0.01272985 -0.02997997 0.31224365] dist_R.dtype = float64 R = [[ 0.99757046 0.06468998 -0.02585312] [-0.06438798 0.99784853 0.01234882] [ 0.02659635 -0.01065419 0.99958948]] R.dtype = float64 T = [[-0.23299669] [-3.05171467] [ 0.43562338]] T.dtype = float64 ``` The results of `stereoRectify` using ``` size = image_L.shape[:2] R_rectify_L, R_rectify_R, P_L, P_R, Q, validPixROI_L, validPixROI_R = cv.stereoRectify(M_L, dist_L, M_R, dist_R, size, R, T) P_L = [[ 4.30000000e+02 0.00000000e+00 2.68848224e+03 0.00000000e+00] [ 0.00000000e+00 4.30000000e+02 -2.09073371e+03 0.00000000e+00] [ 0.00000000e+00 0.00000000e+00 1.00000000e+00 0.00000000e+00]] P_L.dtype = float64 P_R = [[ 4.30000000e+02 0.00000000e+00 2.68848224e+03 0.00000000e+00] [ 0.00000000e+00 4.30000000e+02 -2.09073371e+03 -1.32932034e+03] [ 0.00000000e+00 0.00000000e+00 1.00000000e+00 0.00000000e+00]] P_R.dtype = float64 ``` The values for pixel centers in `P_L` and `P_R` are factor 10 to large. Using these results as in ``` map1_L, map2_L = cv.initUndistortRectifyMap(M_L, dist_L, R_rectify_L, P_L, size, cv.CV_32FC1) image_rectified_L = cv.remap(image_L, map1_L, map2_L, cv.INTER_LINEAR) map1_R, map2_R = cv.initUndistortRectifyMap(M_R, dist_R, R_rectify_R, P_R, size, cv.CV_32FC1) image_rectified_R = cv.remap(image_R, map1_R, map2_R, cv.INTER_LINEAR) ``` gives completely black images. **However**, if I separate the undistort step like: ``` map1_L, map2_L = cv.initUndistortRectifyMap(M_L, dist_L, np.eye(3), M_L, size, cv.CV_32FC1) image_interp_L = cv.remap(image_L, map1_L, map2_L, cv.INTER_LINEAR) map1_R, map2_R = cv.initUndistortRectifyMap(M_R, dist_R, np.eye(3), M_R, size, cv.CV_32FC1) image_interp_R = cv.remap(image_R, map1_R, map2_R, cv.INTER_LINEAR) ``` and than use `stereoRectify` on the undistorted images as in: ``` R_rectify_L, R_rectify_R, P_L, P_R, Q, validPixROI_L, validPixROI_R = cv.stereoRectify(M_L, np.zeros((1,5)), M_R, np.zeros((1,5)), size, R, T) map1_L, map2_L = cv.initUndistortRectifyMap(M_L, np.zeros((1,5)), R_rectify_L, P_L, size, cv.CV_32FC1) image_rectified_L = cv.remap(image_interp_L, map1_L, map2_L, cv.INTER_LINEAR) ​ map1_R, map2_R = cv.initUndistortRectifyMap(M_R, np.zeros((1,5)), R_rectify_R, P_R, size, cv.CV_32FC1) image_rectified_R = cv.remap(image_interp_R, map1_R, map2_R, cv.INTER_LINEAR) ``` The images and resulting projection matrices look fine. ``` P_L = [[ 430. 0. 199.88677025 0. ] [ 0. 430. 126.72800636 0. ] [ 0. 0. 1. 0. ]] P_L.dtype = float64 P_R = [[ 4.30000000e+02 0.00000000e+00 1.99886770e+02 0.00000000e+00] [ 0.00000000e+00 4.30000000e+02 1.26728006e+02 -1.32932034e+03] [ 0.00000000e+00 0.00000000e+00 1.00000000e+00 0.00000000e+00]] P_R.dtype = float64 ``` ![right](https://user-images.githubusercontent.com/43137209/45295686-de0f3980-b4ff-11e8-8214-22ebfdc7b3a2.png) ![left](https://user-images.githubusercontent.com/43137209/45295687-dea7d000-b4ff-11e8-8be1-ed0954fca46c.jpeg) ps: the images are acutally top and bottom and not left and right.
category: calib3d
low
Critical
358,649,758
rust
You can never call your own `fn borrow(&mut self, ...)` method if you `use std::borrow::Borrow;`
https://play.rust-lang.org/?gist=c36d8c617e66862b7bcaee05752ad313&version=stable&mode=debug&edition=2015 ```rust fn main() { use std::borrow::Borrow; struct S; impl S { fn borrow(&mut self, _: ()) {} } let mut s = S; s.borrow(()) } ``` (Just noticed that this might be the intended behaviour, since `std::clone::Clone` acts the same. But still, the error message here might need to be improved)
C-enhancement,A-diagnostics,A-trait-system,P-low,T-compiler,A-suggestion-diagnostics,D-papercut,D-newcomer-roadblock
low
Critical
358,664,704
rust
fix "bivariant wf" bug in the NLL subtyping code
https://github.com/rust-lang/rust/pull/53873 generalized the NLL subtyping code to handle subtyping and the like, but I think it is vulnerable to a similar flaw as the one from <https://github.com/rust-lang/rust/issues/41677>. I didn't want to block that PR so I am filing this issue to follow-up.
A-trait-system,P-medium,T-compiler,A-NLL,C-bug,NLL-sound
low
Critical
358,671,457
create-react-app
Allow to opt-in React DOM profiling without ejecting
### Is this a bug report? No ### Expected Behavior CRA should be able to opt-in to React DOM profiling without ejecting. ### Actual Behavior Need to eject to enable React DOM profiling, as mentioned in https://gist.github.com/bvaughn/25e6233aeb1b4f0cdb8d8366e54a3977#create-react-app
tag: new feature
low
Critical
358,693,754
godot
Animation Player doesn't execute end node automatically
Alpha 3.1 **Issue description:** The issue is on the **AnimationTreePlayer** with a state machine that doesn't execute the node marked as "end" automatically. Would be useful to always call the end node when the focus go outside of StateMachine in all cases. ![screenshot from 2018-09-10 17-44-38](https://user-images.githubusercontent.com/8342599/45310298-2b9e9d00-b526-11e8-9f6c-5a8c8b8e16b5.png) Here a minimal reproducible project: [anim.zip](https://github.com/godotengine/godot/files/2367432/anim.zip)
enhancement,topic:animation
low
Minor
358,752,919
TypeScript
Unexpected result of declaration emit while namespace is shared between two @types
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.9.2, 3.0.3 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** declaration, namespace, @types, import, angular, angular-mocks **Code (index.ts)** ```ts import angular from "angular"; export class RandomService { constructor( private $interval: angular.IIntervalService ) { } } ``` ```json { "compilerOptions": { "allowJs": false, "esModuleInterop": true, "alwaysStrict": true, "declaration": true, "declarationDir": "./types", "module": "commonjs", "noImplicitAny": true, "outDir": "./dist", "sourceMap": false, "strictNullChecks": true, "target": "ESNext" }, "include": [ "src/**/*" ] } ``` It requires to have two @types that share same namespace I guess, in this case its `@types/angular` and `@types/angular-mocks` which lead to unexpected result of declaration emit. **Expected behavior (index.d.ts):** Since we have import I don't expect to have `reference types="angular-mocks"` annotation here. ```ts import angular from "angular"; export declare class RandomService { private $interval; constructor($interval: angular.IIntervalService); } ``` **Actual behavior (index.d.ts):** ```ts /// <reference types="angular-mocks" /> import angular from "angular"; export declare class RandomService { private $interval; constructor($interval: angular.IIntervalService); } ``` **Playground Link:** https://github.com/falsyvalues/typescript-playground
Bug,Help Wanted,Effort: Moderate,Domain: Declaration Emit
low
Critical
358,760,909
three.js
FBXLoader: Load clips at t=0
##### Description of the problem I'd like the ability to choose whether or not to import FBX clips so that their start times are offset to begin at t=0. Sometimes several clips on a track aren't meant to be played one after the other. For example jump animations: If you have a hang time clip that is meant to loop in between a jump start and jump landing clips that hang time loop won't loop properly with the current setup and the jump landing animation will also be incorrect. To visualize what I'm running into a bit better, if I have clips in a structure such as this: ![image](https://user-images.githubusercontent.com/10410125/45318904-4bc16280-b50c-11e8-8e8a-3da9f50583d7.png) The 2nd clip begins playback at frame 1, but the clip's keyframes don't start until frame 31-- Resulting in 30 frames of pause every loop for the 2nd clip. I'm not suggesting that all FBXs should be imported this way, but it would be beneficial as an option when dealing with complex looping animations on a single track. More discussion: https://github.com/mrdoob/three.js/pull/13430#issuecomment-415985616 Example: https://github.com/mrdoob/three.js/files/2322275/fbx-anim-tests.zip ##### Three.js version - [ ] Dev - [ ] r96 - [ ] ... ##### Browser - [x] All of them - [ ] Chrome - [ ] Firefox - [ ] Internet Explorer ##### OS - [x] All of them - [ ] Windows - [ ] macOS - [ ] Linux - [ ] Android - [ ] iOS ##### Hardware Requirements (graphics card, VR Device, ...)
Suggestion,Loaders
low
Minor
358,772,149
TypeScript
No error for duplicate function in JavaScript
**TypeScript Version:** 3.1.0-dev.20180907 **Code** ```js function f() {} function f() {} ``` **Expected behavior:** `Duplicate function implementation.` error, exactly like in a `.ts` file. **Actual behavior:** No error.
Bug,checkJs,Domain: JavaScript
low
Critical
358,808,831
go
proposal: spec: operator functions
The only issue that I could _find_ about operator overloading currently #19770, although it's currently closed and doesn't have many details. # Goal Operator overloading should be used to create datatypes that represent things that already exist in Go. They should not represent anything else, and should ideally have no other function. **New operators should not be allowed to defined**, we should only be able to define currently existing operators. If you look at languages that let you define your own operators (Scala, looking at you!) the code becomes extremely messy and hard to read. It almost _requires_ an IDE because operator overloading is very heavily used. **Using an operator for anything _other_ than it's purpose is a bad idea**. We should not be making data structures with fancy looking `+` operators to add things to the structure. Overloading the `+` operator in Go should _only_ be used for defining addition/concatenation operators for non-builtin types. Also, as per Go spec, binary operators should _only_ be used for operating on two values of the same type. **Operators should only operate on and return a single type**. This keeps things consistent with how operators currently work in Go. We shouldn't allow any `type1 + string -> type1` stuff. **Operators should only be defined in the same package as the type they are defined on**. Same rule as methods. You can't define methods for structs outside your package, and you shouldn't be able to do this with operators either. And last but not least, **operators should never mutate their operands**. This should be a contract that should be listed in the Go spec. This makes operator functions predictable, which is how they should be. Unary operators should not need to be overloaded. ``` +x is 0 + x -x negation is 0 - x ^x bitwise complement is m ^ x with m = "all bits set to 1" for unsigned x and m = -1 for signed x ``` This part of the spec should always remain true, and should also remain true for anything using these operators. Perhaps `^x` may need to have it's own, as there's no good way to define "all bits set to 1" for an arbitrary type, although defining a `.Invert()` function is no less readable IMO. Unary operations on structs would then therefore be `Type{} + t` or `Type{} - t`, and pointers would be `nil + t` and `nil - t`. These may have to be special cases in the implementation of operator functions on pointers to types. Assignment operators should also never be overloaded. ``` An assignment operation x op= y where op is a binary arithmetic operator is equivalent to x = x op (y) but evaluates x only once. The op= construct is a single token. ``` This should remain the same just as unary operators. If we do not permit overloading the `^x` unary operator, this means that we only need to define binary operations. # Issues/Projects aided by operator overloading #19787 - Decimal floating point (IEEE 754-2008) #26699 - Same proposal, more detail #19623 - Changing `int` to be arbitrary precision #9455 - Adding `int128` and `uint128` [this code](https://play.golang.org/p/oSPl1uRxd8U) - Seriously it's gross [really anything that uses math/big that isn't micro-optimized](https://github.com/deanveloper/modmath/blob/master/v1/bigmod/modmath.go) If I went searching for longer, there'd probably be a few more that pop up # Syntax What's a proposal without proposed syntaxes? ``` // A modular integer. type Int struct { Val int Mod int } // ============== // each of the functions would have the following function body: // // if a == Int{} { // handle unary + // a.Mod = b.Mod // } // // checkMod(a, b) // nextInt = Int{Val: a.Val + b.Val, Mod: a.Mod} // nextInt.Reduce() // // return nextInt // // ============== // In all of these, it would result in a compile error if the types of the arguments // do not match each other and the return type. // My new favorite. This makes for a simple grammar. It allows // people who prefer function calls can instead use the `Add` function. operator (Int + Int) Add func Add(a, b Int) Int { ... } // My old favorite. Abandoning the `func` construct clarifies // that these should not be used like a standard function, and is much // more clear that all arguments and the return type must be equal. op(Int) (a + b) { ... } operator(Int) (a + b) { ... } // <- I like this better // My old second favorite, although this looks a lot like a standard method definition. // Maybe a good thing? func (a + b Int) Int { ... } // It can be fixed with adding an "op" to signify it's an operator function, although // I do not like it because it just reads wrong. Also, looks like we're defining a package-level // function named `op`... which is not what we are doing. func op (a + b Int) Int { ... } // Although at the same time, I don't like having words // before the `func`... I feel that all function declarations should begin with `func` op func (a + b Int) Int { ... } // Another idea could just be to define a method named "Plus", although this // would cause confusion between functions like `big.Int.Plus` vs `big.Int.Add`. // We probably need to preserve `big.Int.Add` for microoptimization purposes. func (a Int) Plus(b Int) Int { ... } ``` # Considering other languages' implementations. ### C++ ``` // there's several ways to declare, but we'll use this one Type operator+(Type a, Type b) ``` I think C++ isn't a bad language, but there are a lot of new programmers who use it and think it's "super cool" to implement operator functions for everything they make, including stuff like overloading the `=` operator (which I have seen before). I also have a couple friends from college who really enjoyed defining operator functions for _everything_... no bueno. It gives too much power to the programmer to do everything that they want to do. Doing this creates messy code. ### Swift ``` static func +(a: Type, b: Type) -> Type ``` Note that custom operators may be defined, and you can define stuff like the operator's precedence. I have not looked much into how these operators end up being used, though. ### C# ``` public static Type operator+ (Type a, Type b) ``` Operator functions in C# end up being massively overused in my experience. People define all of the operators for all of their data structures. Might just be a consequence of using a language with many features, though. ### Kotlin ``` operator fun plus(b: Type): Type // use "this" for left hand side ``` https://kotlinlang.org/docs/reference/operator-overloading.html, actually a really nice read. Operator functions get used _everywhere_, and even the standard library is [_littered_](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html) with them. Using them leads to unreadable code. For instance, what does `mutableList + elem` mean? Does it mutate `mutableList`? Does it return a new `MutableList` instance? No one knows without looking at the documentation. Also, defining it as a method instead of a separate function just _begs_ it to mutate `this`. We do not want to encourage this. # Open Questions ### Which operators should be allowed to be overridden? So, the mathematical operators `+`, `-`, `*`, `/`, `%` are pretty clear that if this gets implemented, we'd want to overload these operators. List of remaining operators that should be considered for overloading: * `<<` and `>>` (I do not think this is a good idea) * `|`, `&`, and `&^` (also do not think this is a good idea) * `<`, `>`, `<=`, `>=`, `==`, `!=` (maybe a good idea?) * If we include `<`, we should include `==` to prevent the confusing case of `x <= y && y >= x` but `x != y`. Overloading equality _may_ be a good thing. `big.Int` suffers because the only way to test equality is with `a.Cmp(b) == 0` which is not readable _at all_. I have left out `||` and `&&` because they should be reserved exclusively for `bool` or types based on `bool` (has anyone ever even based a type on `bool`?) and see no reason to override them. ### Should we even allow operator overloading on pointer types? Allowing operator overloading on a pointer type means the possibility of mutating, which we do not want. On the other hand, allowing pointer types means less copying, especially for large structures such as matrices. This question would be resolved if the [read only types](https://github.com/golang/go/issues/22876) proposal is accepted. ##### Disallowing pointer types * Does not allow mutation * No need for `nil` checks in operator implementation ##### Allowing pointer types * Allows operators to be consistent with the rest of the type's methods. * ie `*big.Int` is `*big.Int` everywhere else, it would be good for consistiency * Since it's consistent, it makes it easier to pass into other functions. * ie Can't pass `big.Int` into a function that takes `*big.Int` Perhaps it should be a compile-time error to mutate a pointer in an operator function. If read-only types were added then we could require the parameters to be read-only. ### Should it reference/dereference as needed? Methods currently do this with their receivers. For instance: ``` // Because the receiver for `NewInt` is `*big.Int`, // the second line is equivalent to `(&num).NewInt(....)` var num big.Int num.NewInt(5000000000000000000) ``` So should the same logic apply to operator functions? ----- I'm aware that this will probably not be added to Go 2, but I figured it would be a good thing to make an issue for, since the current issue for Operator Functions is quite small and, well, it's closed. ----- Edits: * Added #9455 to list of proposals which could be solved using this instead * Fixed a clarity issue * Changed examples to use a modular integer rather than a `*big.Int` since the `math/big` package is designed to be used in an efficient way, and added that read-only types would benefit this proposal
LanguageChange,Proposal,LanguageChangeReview
high
Critical
358,832,996
TypeScript
Problem with inference for this['prop'] with conditional types
**TypeScript Version:** [email protected] **Search Terms:** this type, conditional type **Code** ```ts type Wrapped<T> = { ___secret: T }; type Unwrap<T> = T extends Wrapped<infer U> ? U : T; declare function set<T, K extends keyof T>(obj: T, key: K, value: Unwrap<T[K]>); class Foo { prop: Wrapped<string>; method() { set(this, 'prop', 'hi'); // <-- type error } } set(new Foo(), 'prop', 'hi'); // <-- typechecks ``` **Expected behavior:** Both calls to `set` (the one in the method with `this` and the external one with `new Foo()`) pass typechecking. **Actual behavior:** The external call passes, but the one inside `method` fails with `Argument of type '"hi"' is not assignable to parameter of type 'Unwrap<this["prop"]>'.`. If I explicitly annotate `this: Foo` in the method signature or set the type parameters `set<Foo, 'prop'>(...)`, everything passes. We've run into this in the Ember type declarations, and have had to [weaken the types for the time being](https://github.com/typed-ember/ember-cli-typescript/issues/286#) to work around it. **Playground Link:** [available here](https://www.typescriptlang.org/play/#src=type%20Wrapped%3CT%3E%20%3D%20%7B%20___secret%3A%20T%20%7D%3B%0D%0Atype%20Unwrap%3CT%3E%20%3D%20T%20extends%20Wrapped%3Cinfer%20U%3E%20%3F%20U%20%3A%20T%3B%0D%0A%0D%0Adeclare%20function%20set%3CT%2C%20K%20extends%20keyof%20T%3E(obj%3A%20T%2C%20key%3A%20K%2C%20value%3A%20Unwrap%3CT%5BK%5D%3E)%3B%0D%0A%0D%0Aclass%20Foo%20%7B%0D%0A%20%20%20%20prop%3A%20Wrapped%3Cstring%3E%3B%0D%0A%0D%0A%20%20%20%20method()%20%7B%0D%0A%20%20%20%20%20%20%20%20set(this%2C%20'prop'%2C%20'hi')%3B%0D%0A%20%20%20%20%7D%0D%0A%7D%0D%0A%0D%0Aset(new%20Foo()%2C%20'prop'%2C%20'hi')%3B) **Related Issues:** I wasn't able to find anything that seemed related to this issue.
Bug,Domain: Conditional Types
low
Critical
358,838,992
puppeteer
Giving permissions to all origins in browser context
pptr v1.8.0 allows to set permissions per origin in browser context. However, it'll come very handy to give permissions to all origins in browser context. Proposal: special '*' value for origin. ```js context.overridePermissions('*', ['geolocation']); ```
feature,upstream,chromium
low
Major
358,839,753
pytorch
Tests with "." in the name cannot be run standalone
## Issue description Tests with periods in their name can't be run standalone using `python <test_py_file> <test_module>.<test_name>`. ## Code example One example is: `TestNN.test_Normalize_1.5_cuda`. Running it as `python test_legacy_nn.py TestNN.test_Normalize_1.5_cuda` gives the stack trace: ``` /home/rocm-user/pytorch__ROCM__master__5/torch/backends/cudnn/__init__.py:89: UserWarning: PyTorch was compiled without cuDNN support. To use cuDNN, rebuild PyTorch making sure the library is visible to the build system. "PyTorch was compiled without cuDNN support. To use cuDNN, rebuild " Traceback (most recent call last): File "test_legacy_nn.py", line 1376, in <module> run_tests() File "/home/rocm-user/pytorch__ROCM__master__5/test/common.py", line 53, in run_tests unittest.main(argv=argv) File "/usr/lib/python2.7/unittest/main.py", line 94, in __init__ self.parseArgs(argv) File "/usr/lib/python2.7/unittest/main.py", line 149, in parseArgs self.createTests() File "/usr/lib/python2.7/unittest/main.py", line 158, in createTests self.module) File "/usr/lib/python2.7/unittest/loader.py", line 130, in loadTestsFromNames suites = [self.loadTestsFromName(name, module) for name in names] File "/usr/lib/python2.7/unittest/loader.py", line 100, in loadTestsFromName parent, obj = obj, getattr(obj, part) AttributeError: 'function' object has no attribute '5_cuda' ``` ## System Info PyTorch version: 0.5.0a0+9853dbc (built fork https://github.com/ROCmSoftwarePlatform/pytorch) Is debug build: Yes CUDA (ROCm) used to build PyTorch: ROCm 1.8.2 OS: Ubuntu 16.04.5 LTS GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609 CMake version: version 3.5.1 Python version: 2.7 Is CUDA available: Yes CUDA runtime version: N/A GPU models and configuration: Vega 64 (gfx900) 2-gpu setup Nvidia driver version: N/A cuDNN version: N/A Versions of relevant libraries: [pip] 8.1.1 [conda] Not installed cc @mruberry @VitalyFedyunin @walterddr
module: tests,triaged
low
Critical