MQL5-Google-Onedrive/.jules
google-labs-jules[bot] de7870f31f Bolt: optimize repository validation performance
This commit optimizes the repository validation script (`scripts/ci_validate_repo.py`)
by consolidating multiple file-traversal passes into a single efficient pass.

Key improvements:
- Combined size and NUL byte checks into a single `validate_files` function.
- Implemented early size checks using `p.stat().st_size` to avoid reading invalid files.
- Replaced full-file reading (`read_bytes`) with chunked binary reading (64KB)
  to ensure a constant memory footprint and enable early exit on NUL byte detection.
- Reduced syscall overhead and I/O by minimizing redundant traversals.

Ref: Bolt Philosophy - "Speed is a feature", "Measure first, optimize second".
2026-02-21 17:14:34 +00:00
..
bolt.md Bolt: optimize repository validation performance 2026-02-21 17:14:34 +00:00
deploy.yml Add dev container setup, cloud deployment configs, and Jules deployment automation 2026-01-19 09:53:30 +07:00