build_parallel() — tailwindcss Function Reference
Architecture documentation for the build_parallel() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 1c879887_8821_ee3a_d1d4_abfeca5c95df["build_parallel()"] b3ca296d_790b_9bf3_23ea_56e5c5c48565["walk.rs"] 1c879887_8821_ee3a_d1d4_abfeca5c95df -->|defined in| b3ca296d_790b_9bf3_23ea_56e5c5c48565 890ecca7_6d92_2d53_1020_7e8daec08fb8["walk_collect_entries_parallel()"] 890ecca7_6d92_2d53_1020_7e8daec08fb8 -->|calls| 1c879887_8821_ee3a_d1d4_abfeca5c95df 6af14e61_8f0b_c760_15f0_580b156285cf["get_or_set_current_dir()"] 1c879887_8821_ee3a_d1d4_abfeca5c95df -->|calls| 6af14e61_8f0b_c760_15f0_580b156285cf de47c3c4_7919_326b_65e2_dcc7c2bd96c6["build()"] 1c879887_8821_ee3a_d1d4_abfeca5c95df -->|calls| de47c3c4_7919_326b_65e2_dcc7c2bd96c6 style 1c879887_8821_ee3a_d1d4_abfeca5c95df fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 620–637
pub fn build_parallel(&self) -> WalkParallel {
let ig_root = self
.get_or_set_current_dir()
.map(|cwd| self.ig_builder.build_with_cwd(Some(cwd.to_path_buf())))
.unwrap_or_else(|| self.ig_builder.build());
WalkParallel {
paths: self.paths.clone().into_iter(),
ig_root,
max_depth: self.max_depth,
min_depth: self.min_depth,
max_filesize: self.max_filesize,
follow_links: self.follow_links,
same_file_system: self.same_file_system,
threads: self.threads,
skip: self.skip.clone(),
filter: self.filter.clone(),
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does build_parallel() do?
build_parallel() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is build_parallel() defined?
build_parallel() is defined in crates/ignore/src/walk.rs at line 620.
What does build_parallel() call?
build_parallel() calls 2 function(s): build, get_or_set_current_dir.
What calls build_parallel()?
build_parallel() is called by 1 function(s): walk_collect_entries_parallel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free