Priority: P0
Size: small
Consensus: Opus + GPT
Files: src/trackers/core/bytetrack/tracker.py, tests under
tests/core/
| cdeil@kMac test123 % time patrol test --device chrome --target patrol_test/login_test.dart | |
| Error: target file patrol_test/login_test.dart does not exist | |
| patrol test --device chrome --target patrol_test/login_test.dart 0.20s user 0.08s system 55% cpu 0.510 total | |
| cdeil@kMac test123 % mkdir patrol_test | |
| cdeil@kMac test123 % touch patrol_test/login_test.dart | |
| cdeil@kMac test123 % time patrol test --device chrome --target patrol_test/login_test.dart | |
| Unhandled exception: | |
| Error: Failed to read patrol version. Make sure you have patrol dependency in your pubspec.yaml file | |
| #0 throwToolExit (package:patrol_cli/src/base/exceptions.dart:7:3) | |
| #1 CompatibilityChecker.checkVersionsCompatibility.<anonymous closure>.<anonymous closure> (package:patrol_cli/src/compatibility_checker/compatibility_checker.dart:101:17) |
| ------------------------------------- | |
| Translated Report (Full Report Below) | |
| ------------------------------------- | |
| Process: Runner [83564] | |
| Path: /Users/USER/Library/Developer/CoreSimulator/Devices/AF113FB9-9946-4379-A8CB-C154569BFF3A/data/Containers/Bundle/Application/E650F580-944C-4136-B654-E1FEF3336DFB/Runner.app/Runner | |
| Identifier: de.stocadro.stocadroai | |
| Version: 1.0.0 (1) | |
| Code Type: ARM-64 (Native) | |
| Role: Foreground | |
| Parent Process: launchd_sim [79348] |
Implementation notes for the VSCode Copilot chat session parser in agentsview.
The parser ingests VSCode Copilot chat sessions from local disk, covering:
- VSCode Stable (
~/Library/Application Support/Code/User/) - VSCode Insiders (
~/Library/Application Support/Code - Insiders/User/)
The status bar (bottom-left) and analytics dashboard (main area) show different numbers for sessions, messages, and projects. There are three separate causes.
- Status bar:
stats.session_count— trigger-maintained counter onINSERT/DELETEon thesessionstable. Counts all sessions including empty ones (message_count = 0). - Dashboard:
SELECT ... FROM sessions WHERE message_count > 0 AND <date/project/agent filters>. Excludes empty sessions and defaults to a 1-year date range (analytics.svelte.tssetsfrom = daysAgo(365)). - Sidebar: Like dashboard but with sidebar-specific filters and no default date range.
I have implemented full Swift Package Manager (SPM) support for the printing package on iOS and macOS, following the official Flutter guidelines and addressing the limitations of mixed-language targets in SPM.
I created printing/ios/Package.swift and printing/macos/Package.swift. These manifests define the library targets and dependencies.
This report documents the implementation of Swift Package Manager (SPM) support for the printing Flutter plugin, as requested in DavBfr/dart_pdf#1778.
Flutter is migrating from CocoaPods to Swift Package Manager. CocoaPods is now in maintenance mode. This change future-proofs the printing plugin by supporting both SPM and CocoaPods.
I'm running into this issue again:
Dart-Code/Dart-Code#5847 microsoft/vscode#284024
Can you please check any relevant logs or state concerning VS Code and try to figure out what happened?
Write a Markdown report with your findings.
| import SwiftUI | |
| import YOLO | |
| struct StocadroYOLOView: View { | |
| @State private var inputImage: UIImage = UIImage(named: "bus") ?? UIImage() | |
| @State private var isYoloLoading: Bool = true; | |
| @State private var yoloResult: YOLOResult? | |
| let yolo = YOLO("yolo11n", task: .detect) |
| name: Integration Tests | |
| on: [pull_request] | |
| jobs: | |
| android-test: | |
| runs-on: ubuntu-latest-8-core | |
| timeout-minutes: 25 | |
| steps: |