168 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
169 |
match guard.pop_front() {
|
585 |
// false positive lint (?)
|
586 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
587 |
let acceptor_config = match c.tls_handshake_timeout {
|
66 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
67 |
for waiter in waiters.iter_mut() {
|
85 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
86 |
match waiters.front() {
|
86 |
// Using mutex in match on purpose, never acquiring lock again.
|
87 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
88 |
match *dictionary.mutex.lock().unwrap() {
|
109 |
// Using mutex in match on purpose, never acquiring lock again.
|
110 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
111 |
match *dictionary.mutex.lock().unwrap() {
|
658 |
// Using mutex in match on purpose, never acquiring lock again.
|
659 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
660 |
let result = match *cskkdict.mutex.lock().unwrap() {
|
676 |
// Using mutex in match on purpose, never acquiring lock again.
|
677 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
678 |
let result = match *cskkdict.mutex.lock().unwrap() {
|
254 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
255 |
let im_file = match self.files().get(&file_path) {
|
176 |
// positive.
|
177 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
178 |
match self.get_inner().walkdir_next_inner(inner)
|
57 |
let stdin = std::io::stdin();
|
58 |
#[allow(unknown_lints, clippy::significant_drop_in_scrutinee)]
|
59 |
for line in stdin.lock().lines() {
|
683 |
if let Ok(guard) = self.metadata().read() {
|
684 |
#[allow(clippy::significant_drop_in_scrutinee)] // doesn't appear to be an accurate lint
|
685 |
for (key, value) in guard.iter() {
|
176 |
// Clippy doesn't like that we're iterating over something in a mutex apparently
|
177 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
178 |
for (_, refcount) in guard.iter() {
|
52 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
53 |
for waker in inner.drain(..) {
|
358 |
impl Drop for FlowExecutor {
|
359 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
360 |
fn drop(&mut self) {
|
203 |
log::error!("Panic {}", p);
|
204 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
205 |
for line in logger.read().to_string().lines() {
|
215 |
shutdown_screen().expect("Shutdown screen");
|
216 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
217 |
for line in logger.read().to_string().lines() {
|
520 |
// Writes a header and then the data
|
521 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
522 |
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
|
17 |
// Writes a header and then the data
|
18 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
19 |
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
|
250 |
std::thread::spawn(move || loop {
|
251 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
252 |
for byte in std::io::stdin().lock().bytes() {
|
382 |
let mut result = results.get().init_nodes((nodes.len()) as u32);
|
383 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
384 |
for (i, n) in nodes.iter().enumerate() {
|
2545 |
let mut c_nodes = request.get().init_nodes(last_node_count as u32);
|
2546 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
2547 |
for (i, n) in nodes.read().unwrap().iter().enumerate() {
|
126 |
'outer: for uid in lookup_entry.iter() {
|
127 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
128 |
for mut node in (*self.nodes.read().unwrap()).clone() {
|
361 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
362 |
match manager.load_plugin(&plugin.library, &plugin.config, app_state) {
|
35 |
// Nursery lint (and this code *should* be correct).
|
36 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
37 |
for c in UnicodeReader::new(reader())
|
460 |
if let Ok(lock) = CUSTOM_RESOLVERS.lock() {
|
461 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
462 |
for (_, resolve) in lock.iter() {
|
54 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
55 |
fn next(&self, _: &Self::State) -> Option<Token> {
|
692 |
.map_err(|_e| Error::Generic("problem locking the mutex"))?;
|
693 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
694 |
for store in stores.iter() {
|
697 |
.map_err(|_e| Error::Generic("problem locking the mutex"))?;
|
698 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
699 |
for recipient in store.all_recipients()? {
|
1237 |
.map_err(|_e| Error::Generic("problem locking the mutex"))?;
|
1238 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
1239 |
for store in stores_borrowed.iter() {
|
966 |
l.clear();
|
967 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
968 |
for p in store.lock().unwrap().lock().unwrap().passwords.iter() {
|
1275 |
let mut stores_borrowed = stores.lock().unwrap();
|
1276 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
1277 |
for (i, store) in stores_borrowed.iter().enumerate() {
|
1359 |
let stores_borrowed = stores.lock().unwrap();
|
1360 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
1361 |
for store in stores_borrowed.iter() {
|
1793 |
let store: PasswordStoreType = Arc::new(Mutex::new(stores.lock().unwrap()[0].clone()));
|
1794 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
1795 |
for ss in stores.lock().unwrap().iter() {
|
1999 |
let mut tree = Tree::new();
|
2000 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
2001 |
for s in stores.lock().unwrap().iter() {
|
79 |
}
|
80 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
81 |
for (y, x) in gradients.lock().unwrap().iter_mut().zip(local_gradients) {
|
7 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
8 |
impl<S> layer::Layer<S> for Layer
|
215 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
216 |
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) {
|
538 |
let mut tracks = self.get_store(track_id as usize);
|
539 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
540 |
match tracks.get_mut(&track_id) {
|
118 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
119 |
for (i, stream) in streams.iter_mut().enumerate() {
|
3206 |
#[allow(clippy::significant_drop_in_scrutinee)]
|
3207 |
let fds = {
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
37 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
38 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
39 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
38 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
39 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
40 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
1 |
#![allow(clippy::significant_drop_in_scrutinee)]
|
2 |
#![allow(clippy::type_complexity)]
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
18 |
clippy::ptr_as_ptr,
|
19 |
clippy::significant_drop_in_scrutinee,
|
20 |
clippy::too_many_lines,
|
70 |
clippy::shadow_unrelated,
|
71 |
clippy::significant_drop_in_scrutinee,
|
72 |
clippy::similar_names,
|
41 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
42 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
43 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
5 |
#![allow(clippy::significant_drop_in_scrutinee)]
|
6 |
#![allow(clippy::uninlined_format_args)]
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|
35 |
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
|
36 |
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
|
37 |
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
|