204 |
let connected = Arc::new(atomic::AtomicBool::new(true));
|
205 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
206 |
let (writer, reader_fut, rx) = if config.path.ends_with(".sock")
|
233 |
info!("binding at {}", path);
|
234 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
235 |
if let Some(_fifo) = path.strip_prefix("fifo:") {
|
204 |
let connected = Arc::new(atomic::AtomicBool::new(true));
|
205 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
206 |
let (writer, reader_fut, rx) = if config.path.ends_with(".sock")
|
228 |
info!("binding at {}", path);
|
229 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
230 |
if let Some(_fifo) = path.strip_prefix("fifo:") {
|
36 |
for i in 0..config.sockets.len() {
|
37 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
38 |
if is_unix_socket!(config.sockets[i]) {
|
49 |
for socket in &self.config.sockets {
|
50 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
51 |
if is_unix_socket!(socket) {
|
356 |
// TODO handle upper case wording
|
357 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
358 |
let remote = if input.ends_with(".git") {
|
9 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
10 |
pub(crate) fn is_plain_css_import(url: &str) -> bool {
|
10 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
11 |
fn is_supported_file_extension(entry: &DirEntry) -> bool {
|
102 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
103 |
fn is_measurement_file(file_name: &str) -> bool {
|
67 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
68 |
fn process_args() -> (Vec<String>, Vec<String>, bool) {
|
392 |
/// TODO: add doing things with `on_stdout_line` and `on_stderr_line`
|
393 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
394 |
fn exec(
|
1122 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
1123 |
fn _purge(&mut self, keep_broken: bool) -> Result<Vec<String>, Error> {
|
1788 |
/// Will panic on internal path errors
|
1789 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
1790 |
pub fn check(&mut self) -> Result<Vec<String>, Error> {
|
787 |
#[allow(clippy::case_sensitive_file_extension_comparisons)]
|
788 |
async fn create_client(
|
24 |
#![deny(clippy::cargo)]
|
25 |
#![allow(clippy::case_sensitive_file_extension_comparisons)]
|
26 |
#![allow(clippy::cast_possible_truncation)]
|
5 |
clippy::must_use_candidate,
|
6 |
clippy::case_sensitive_file_extension_comparisons,
|
7 |
clippy::match_wildcard_for_single_variants,
|