Home / Function/ build_parallel() — tailwindcss Function Reference

build_parallel() — tailwindcss Function Reference

Architecture documentation for the build_parallel() function in walk.rs from the tailwindcss codebase.

Function rust RustCore PreProcessors calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  acbe815e_41e9_4503_fbe3_32d9556ee615["build_parallel()"]
  c613414e_67b0_e781_3a9b_4a45208ea7ad["walk_collect_entries_parallel()"]
  c613414e_67b0_e781_3a9b_4a45208ea7ad -->|calls| acbe815e_41e9_4503_fbe3_32d9556ee615
  72f17e95_bf84_3702_4745_9e338f00b255["get_or_set_current_dir()"]
  acbe815e_41e9_4503_fbe3_32d9556ee615 -->|calls| 72f17e95_bf84_3702_4745_9e338f00b255
  d723fee5_6735_de38_e918_7afbac537f66["build()"]
  acbe815e_41e9_4503_fbe3_32d9556ee615 -->|calls| d723fee5_6735_de38_e918_7afbac537f66
  style acbe815e_41e9_4503_fbe3_32d9556ee615 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

Frequently Asked Questions

What does build_parallel() do?
build_parallel() is a function in the tailwindcss codebase.
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