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.

Entity Profile

Dependency Diagram

graph TD
  58d7e4fa_9d54_5bcd_7f67_efc560bdad7c["build_parallel()"]
  9bac3eb8_6b71_2637_705d_37b38f0878b4["walk_collect_entries_parallel()"]
  9bac3eb8_6b71_2637_705d_37b38f0878b4 -->|calls| 58d7e4fa_9d54_5bcd_7f67_efc560bdad7c
  93d52820_2935_3539_0249_3548606f967a["get_or_set_current_dir()"]
  58d7e4fa_9d54_5bcd_7f67_efc560bdad7c -->|calls| 93d52820_2935_3539_0249_3548606f967a
  9d894c7c_30e0_c74a_cfb3_a68f088d0048["build()"]
  58d7e4fa_9d54_5bcd_7f67_efc560bdad7c -->|calls| 9d894c7c_30e0_c74a_cfb3_a68f088d0048
  style 58d7e4fa_9d54_5bcd_7f67_efc560bdad7c 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(),
        }
    }

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