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 Oxide Scanner calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  00168c4f_f053_bde0_b775_fab634708fc2["build_parallel()"]
  8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"]
  00168c4f_f053_bde0_b775_fab634708fc2 -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79
  2567ce1d_17e1_b741_15ca_320dd88c9022["walk_collect_entries_parallel()"]
  2567ce1d_17e1_b741_15ca_320dd88c9022 -->|calls| 00168c4f_f053_bde0_b775_fab634708fc2
  0a61df63_b8ac_a29f_e665_790a24f2055c["get_or_set_current_dir()"]
  00168c4f_f053_bde0_b775_fab634708fc2 -->|calls| 0a61df63_b8ac_a29f_e665_790a24f2055c
  7fdc5de6_ca45_c05a_0113_cfaee5250ec1["build()"]
  00168c4f_f053_bde0_b775_fab634708fc2 -->|calls| 7fdc5de6_ca45_c05a_0113_cfaee5250ec1
  style 00168c4f_f053_bde0_b775_fab634708fc2 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, 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