Repository Analysis

rerun-io/rerun

Visualize, query, and stream to train on multimodal robotics data.

10.2 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of rerun-io/rerun, a Rust project with 11,128 GitHub stars. SynthScan v2.0 examined 874,137 lines of code across 5105 source files, recording 7032 pattern matches distributed across 23 syntactic categories. The overall adjusted score of 10.2 places this repository in the Low AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

10.2
Adjusted Score
10.2
Raw Score
100%
Time Factor
2026-07-14
Last Push
11.1K
Stars
Rust
Language
874.1K
Lines of Code
5.1K
Files
7.0K
Pattern Hits
2026-07-14
Scan Date
0.05
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.

No multi-scan history yet — run the scanner again to build trend data.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 4HIGH 235MEDIUM 519LOW 6274

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 7032 distinct pattern matches across 23 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Over-Commented Block2680 hits · 2623 pts
SeverityFileLineSnippetContext
LOWCargo.toml921# Prefer patching with `branch` over `rev` and let `Cargo.lock` handle the commit hash.COMMENT
LOWCargo.toml941# datafusion-functions-window-common = { git = "https://github.com/rerun-io/arrow-datafusion.git", branch = "tsaucer/52.COMMENT
LOWCargo.toml961# ecolor = { path = "../../egui/crates/ecolor" }COMMENT
LOWCargo.toml981# egui_commonmark = { git = "https://github.com/rerun-io/egui_commonmark.git", branch = "lucas/update-egui-0.35" }COMMENT
LOWlychee.toml1################################################################################COMMENT
LOWdeny.toml1# https://github.com/EmbarkStudios/cargo-denyCOMMENT
LOWpixi.toml1# Pixi is a package management tool for developers.COMMENT
LOWpixi.toml81# Run ensure-rerun-env to set up pyo3-build.cfg and uv shim.COMMENT
LOWpixi.toml101# CI tasks. If you are only working in rust, this is the only environment you need.COMMENT
LOWpixi.toml141# Generate the Rerun CLI manual.COMMENT
LOWpixi.toml201COMMENT
LOWpixi.toml281uv-lock-check = { depends-on = ["uv-lock-check-workspace", "uv-lock-check-isolated-examples"] }COMMENT
LOWpixi.toml301# # TODO(cmc): I'd like to avoid the extra noise from source info and imports, but they are required forCOMMENT
LOWpixi.toml421js-docs = { cmd = "yarn --cwd rerun_js run docs", depends-on = ["js-build-package-docs"] }COMMENT
LOWpyproject.toml1# This pyproject.toml defines the uv workspace for Python development.COMMENT
LOW.rustfmt.toml1# Enable these if you want to run `cargo +nightly fmt`:COMMENT
LOWcrates/top/rerun/Cargo.toml81## Add support for math type conversions using [`mint`](https://crates.io/crates/mint/).COMMENT
LOWcrates/top/rerun/Cargo.toml121 "re_log_encoding/encoder",COMMENT
LOWcrates/top/rerun/src/lib.rs1//! # Rerun - Visualize streams of multimodal data.COMMENT
LOWcrates/top/rerun/src/lib.rs21//! There are many different ways of sending data to the Rerun Viewer depending on what you'reCOMMENT
LOWcrates/top/rerun/src/lib.rs41//! Running just `rerun` will start the viewer, waiting for the logging library to connectCOMMENT
LOWcrates/top/rerun/src/lib.rs61//! let colors: Vec<rerun::Color> = colors();COMMENT
LOWcrates/top/rerun/src/lib.rs81//! You can buffer the log messages in memory and then show them in an embedded viewer:COMMENT
LOWcrates/top/rerun/src/clap.rs21}COMMENT
LOWcrates/top/rerun/src/clap.rs41#[derive(Clone, Debug, clap::Args)]COMMENT
LOWcrates/top/rerun/src/clap.rs61 /// and the pathname must be `/proxy`.COMMENT
LOWcrates/top/rerun/src/log_integration.rs1//! Integrates the Rerun SDK with the [`log`] crate.COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs161 )]COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs201 ///COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs221 /// unless one or more URIs are provided that can be viewed directly in the web viewer.COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs241 ///COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs261 ///COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs301 web_viewer: bool,COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs321 /// screenshots via `save_screenshot`.COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs341 //COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs361 /// If no software decoder is present, this may cause decoding to fail.COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs521 format!("* `{name}`: {help}.")COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs601 /// Configure the behavior of our analytics.COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs621COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs641 /// "args": ["viewer-mcp"],COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs661COMMENT
LOWcrates/top/rerun/src/commands/entrypoint.rs801 // TODO(tokio-rs/tracing#3239): The viewer will crash on exit because of what appearsCOMMENT
LOWcrates/top/rerun/src/commands/auth.rs1use clap::{Parser, Subcommand};COMMENT
LOWcrates/top/rerun/src/commands/auth.rs21 /// Retrieve the stored access token.COMMENT
LOWcrates/top/rerun/src/commands/auth.rs41 no_open_browser: bool,COMMENT
LOWcrates/top/rerun/src/commands/auth.rs61}COMMENT
LOWcrates/top/rerun/src/commands/stdio.rs21 Self::Stdin => write!(f, "stdin"),COMMENT
LOWcrates/top/rerun/src/commands/stdio.rs41#[expect(clippy::type_complexity)] // internal private API for the CLI implCOMMENT
LOWcrates/top/rerun/src/commands/stdio.rs61/// total number of bytes processed, and returns all RRD manifests that were parsed from footersCOMMENT
LOWcrates/top/rerun/src/commands/mcap/mod.rs41 /// Paths to read from. Reads from standard input if none are specified.COMMENT
LOWcrates/top/rerun/src/commands/mcap/mod.rs61COMMENT
LOWcrates/top/rerun/src/commands/mcap/mod.rs81 /// "timestamp" (default) creates `TimestampNs` timelines (nanoseconds since Unix epoch).COMMENT
LOWcrates/top/rerun/src/commands/mcap/info.rs1//! `rerun mcap info` — inspect timeline structure of an MCAP file.COMMENT
LOWcrates/top/rerun/src/commands/rrd/route.rs21 /// Path to write to. Writes to standard output if unspecified.COMMENT
LOWcrates/top/rerun/src/commands/rrd/merge_optimize.rs101 ///COMMENT
LOWcrates/top/rerun/src/commands/rrd/merge_optimize.rs121 /// Accepts a size string with a unit suffix, e.g. `2MiB`, `512KiB`, `1GB`, `1024B`.COMMENT
LOWcrates/top/rerun/src/commands/rrd/merge_optimize.rs141COMMENT
LOWcrates/top/rerun/src/commands/rrd/merge_optimize.rs161 /// If set, will try to proceed even in the face of IO and/or decoding errors in the input data.COMMENT
LOWcrates/top/rerun/src/commands/rrd/merge_optimize.rs181 /// the encoded samples and errors out if they disagree. Pass this flag toCOMMENT
LOWcrates/top/rerun/src/commands/rrd/compare.rs21 /// In most cases, the distinction is irrelevant, and you'd rather the comparison succeeds.COMMENT
2620 more matches not shown…
Unused Imports2066 hits · 1650 pts
SeverityFileLineSnippetContext
LOWrerun_py/rerun_sdk/rerun/_tracing.py18CODE
LOWrerun_py/rerun_sdk/rerun/_arrow.py3CODE
LOWrerun_py/rerun_sdk/rerun/auth.py1CODE
LOWrerun_py/rerun_sdk/rerun/auth.py3CODE
LOWrerun_py/rerun_sdk/rerun/auth.py3CODE
LOWrerun_py/rerun_sdk/rerun/time.py1CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1CODE
LOWrerun_py/rerun_sdk/rerun/_send_columns.py1CODE
LOWrerun_py/rerun_sdk/rerun/server.py1CODE
LOWrerun_py/rerun_sdk/rerun/web.py1CODE
LOWrerun_py/rerun_sdk/rerun/_baseclasses.py1CODE
LOWrerun_py/rerun_sdk/rerun/_color_conversion.py3CODE
LOWrerun_py/rerun_sdk/rerun/dynamic_archetype.py1CODE
LOWrerun_py/rerun_sdk/rerun/_script_helpers.py22CODE
LOWrerun_py/rerun_sdk/rerun/_validators.py1CODE
LOWrerun_py/rerun_sdk/rerun/error_utils.py1CODE
LOWrerun_py/rerun_sdk/rerun/any_batch_value.py1CODE
LOWrerun_py/rerun_sdk/rerun/_properties.py1CODE
LOWrerun_py/rerun_sdk/rerun/_logging_handler.py1CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py1CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py26CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py26CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py26CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py26CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py33CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py42CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py45CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py45CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py45CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py45CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py45CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py45CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py53CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py56CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py56CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py60CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py61CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py61CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py61CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py66CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py66CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py66CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py71CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py71CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py71CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
LOWrerun_py/rerun_sdk/rerun/__init__.py76CODE
2006 more matches not shown…
Decorative Section Separators398 hits · 1493 pts
SeverityFileLineSnippetContext
MEDIUMCargo.toml505# ---------------------------------------------------------------------------------COMMENT
MEDIUMCargo.toml679# ---------------------------------------------------------------------------------COMMENT
MEDIUMCMakeLists.txt5# ------------------------------------------------------------------------------COMMENT
MEDIUMCMakeLists.txt23# ------------------------------------------------------------------------------COMMENT
MEDIUMCMakeLists.txt139# ------------------------------------------------------------------------------COMMENT
MEDIUMCMakeLists.txt169# ------------------------------------------------------------------------------COMMENT
MEDIUMCMakeLists.txt176# ------------------------------------------------------------------------------COMMENT
MEDIUMpixi.toml11# ----------------------------COMMENT
MEDIUMpixi.toml283# ------------------------------------------------------------------------------------------COMMENT
MEDIUMpixi.toml316# ------------------------------------------------------------------------------------------COMMENT
MEDIUMclippy.toml3# -----------------------------------------------------------------------------COMMENT
MEDIUMclippy.toml26# -----------------------------------------------------------------------------COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs40/// ┌──────────────┬───────────┐COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs42/// ├──────────────┼───────────┤COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs44/// ├──────────────┼───────────┤COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs46/// ├──────────────┼───────────┤COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs48/// ├──────────────┼───────────┤COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs50/// ├──────────────┼───────────┤COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs52/// ├──────────────┼───────────┤COMMENT
MEDIUMcrates/top/re_sdk/tests/lenses/operations.rs54/// └──────────────┴───────────┘COMMENT
MEDIUMcrates/utils/re_perf_telemetry/Cargo.toml27## =================COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs87/// ╔═══▼═════════════════════════════▼══════════════════╗COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs89/// leaf item ║ ─────┴──────────────────────────────────────────── ║COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs91/// ╚═════════════════════▲══════════════════════════════╝COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs99/// ╔═══▼═════════════════════════════▼══════════════════╗COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs101/// with body ║ ─────┴──────────────────────────────────────────── ║COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs103/// ╚══════╦══════════════════════════════════════▲══════╣ ─┐COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs115/// └──▲── ╚══════════════════════════▲══════════════════╝ ─┘COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs124/// ╔═══▼═════════════════════════════▼══════════════════╗COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs126/// (empty/collapsed ║ ─────┼──────────────────────────────────────────── ║COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs128/// ╚═══▲═════════════════════════════▲══════════════════╝COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs137/// ╔═══▼═════════════════════════════▼══════════════════╗COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs139/// with body ║ ─────┴──────────────────────────────────────────── ║COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs141/// ╚═▲════╦═════════════════════════════════════════════╣ ─┐COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs153/// └───── ╚═════════════════════════════════════════════╝ ─┘COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs157/// ╔═════════════════════════════════▼══════════════════╗COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs159/// item ║ ────────────────────────────────────────────────── ║COMMENT
MEDIUMcrates/viewer/re_ui/src/drag_and_drop.rs161/// ╚════════════════════════▲═══════════════════════════╝COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/property_content.rs192 // │◀─────────────────────────────get_full_span()────────────────────────────────▶│COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/property_content.rs194 // │ ◀────────layout_info.left_column_width─────────▶│┌──COLUMN_SPACING │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/property_content.rs196 // │ ◀─────────────────────────┼────────context.rect──────▶ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/property_content.rs197 // │ ┌ ─ ─ ─ ─ ┬ ─ ─ ─ ─ ┬ ┬────────┬─┬─────────────┬─┬─────────────┬─┬─────────┐ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/property_content.rs203 // │ └ ─ ─ ─ ─ ┴ ─ ─ ─ ─ ┴ ┴────────┴─┴─────────────┴─┴─────────────┴─┴─────────┘ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/property_content.rs205 // │ └──layout_info.left_x │ └───────────────────────────────┤ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs15/// │◀──────────────────────get_full_span()─────────────────────▶│COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs20/// │ ┌───────────────────────────────────────────┐ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs22/// │ └───┬────────────────────────────────────┬──┘ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs24/// │ └───┬─────────────────────────┬──────┘ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs26/// │ ├─────────────────────────┴────┐ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs28/// │ └───┬──────────────────────────┴─────────┐ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs30/// │ ├─────────────────────┬──────────────┘ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs32/// │ ┌───────────┴─────────────────────┴──┐ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs34/// │ └────────────────────────────────────┘ │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs37/// │ │◀──────────────────────▶ max_desired_left_column_width │COMMENT
MEDIUMcrates/viewer/re_ui/src/list_item/scope.rs39/// │ │◀───────────────max_item_width─────────────────▶│ │COMMENT
MEDIUM…ewport_blueprint/src/ui/add_view_or_container_modal.rs145/// │◀───────────────────────────────────────▶│COMMENT
MEDIUM…ewport_blueprint/src/ui/add_view_or_container_modal.rs147/// ┌───────────────────────────────────────────────────┐──▲COMMENT
MEDIUM…ewport_blueprint/src/ui/add_view_or_container_modal.rs149/// │ ╔══════╦══════════════════════════════════╗────│──▼▲COMMENT
MEDIUM…ewport_blueprint/src/ui/add_view_or_container_modal.rs153/// │ ╚══════╩══════════════════════════════════╝────│──▲▼COMMENT
MEDIUM…ewport_blueprint/src/ui/add_view_or_container_modal.rs155/// └───────────────────────────────────────────────────┘──▼COMMENT
338 more matches not shown…
Cross-File Repetition206 hits · 1030 pts
SeverityFileLineSnippetContext
HIGH…_py/rerun_sdk/rerun/experimental/_lazy_chunk_stream.py0write all chunks to an rrd file. the caller must provide application_id and recording_id explicitly.STRING
HIGHrerun_py/rerun_sdk/rerun/experimental/_lazy_store.py0write all chunks to an rrd file. the caller must provide application_id and recording_id explicitly.STRING
HIGHrerun_py/rerun_sdk/rerun/experimental/_chunk_store.py0write all chunks to an rrd file. the caller must provide application_id and recording_id explicitly.STRING
HIGHrerun_py/rerun_sdk/rerun/datatypes/channel_datatype.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/datatypes/pixel_format.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/datatypes/color_model.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/components/colormap.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/components/marker_shape.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…_py/rerun_sdk/rerun/components/magnification_filter.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/components/video_codec.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…un_py/rerun_sdk/rerun/components/interpolation_mode.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…un_py/rerun_sdk/rerun/components/aggregation_policy.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/components/graph_type.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/components/point_shading.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…n_py/rerun_sdk/rerun/components/mesh_face_rendering.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/components/fill_mode.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…un_py/rerun_sdk/rerun/components/transform_relation.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…sdk/rerun/blueprint/datatypes/component_source_kind.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…_sdk/rerun/blueprint/datatypes/text_log_column_kind.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…py/rerun_sdk/rerun/blueprint/components/panel_state.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…_py/rerun_sdk/rerun/blueprint/components/eye3d_kind.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…erun_sdk/rerun/blueprint/components/background_kind.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…n_py/rerun_sdk/rerun/blueprint/components/loop_mode.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…un_py/rerun_sdk/rerun/blueprint/components/view_fit.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…_py/rerun_sdk/rerun/blueprint/components/play_state.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…n_py/rerun_sdk/rerun/blueprint/components/link_axis.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…rerun_sdk/rerun/blueprint/components/container_kind.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…y/rerun_sdk/rerun/blueprint/components/map_provider.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGH…un_py/rerun_sdk/rerun/blueprint/components/corner2d.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/tests/test_types/datatypes/valued_enum.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/tests/test_types/datatypes/enum_test.py0best-effort converter, including a case-insensitive string matcher.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/instance_poses3d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGH…un_py/rerun_sdk/rerun/archetypes/segmentation_image.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/text_log.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/ellipses2d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/geo_points.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/graph_nodes.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/mesh3d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/mcap_schema.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/cylinders3d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/series_lines.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/voxel_grid_map.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/transform_axes3d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/mcap_statistics.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/clear.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/capsules3d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/series_points.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGH…n_py/rerun_sdk/rerun/archetypes/state_configuration.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGH…py/rerun_sdk/rerun/archetypes/video_frame_reference.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/coordinate_frame.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/state_change.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/tensor.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/asset_video.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGH…un_py/rerun_sdk/rerun/archetypes/annotation_context.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/geo_line_strings.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/recording_info.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/line_strips2d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/points3d.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/grid_map.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
HIGHrerun_py/rerun_sdk/rerun/archetypes/encoded_image.py0convenience method for calling `__attrs_init__` with all `none`s.STRING
146 more matches not shown…
Hyper-Verbose Identifiers752 hits · 786 pts
SeverityFileLineSnippetContext
LOWrerun_py/rerun_sdk/rerun/recording_stream.py864 def send_recording_start_time_nanos(self, nanos: int) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1401def get_global_data_recording() -> RecordingStream | None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1415def set_global_data_recording(recording: RecordingStream) -> RecordingStream | None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1429def get_thread_local_data_recording() -> RecordingStream | None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1443def set_thread_local_data_recording(recording: RecordingStream | None) -> RecordingStream | None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1530def recording_stream_generator_ctx(func: _TFunc) -> _TFunc:CODE
LOWrerun_py/rerun_sdk/rerun/dynamic_archetype.py143 def _default_without_archetype(CODE
LOWrerun_py/rerun_sdk/rerun/dynamic_archetype.py159 def _with_descriptor_internal(CODE
LOWrerun_py/rerun_sdk/rerun/_validators.py13def find_non_empty_dim_indices(shape: list[int]) -> list[int]:CODE
LOWrerun_py/rerun_sdk/rerun/_validators.py85def flat_np_array_from_array_like(array: npt.NDArray[Any], dimension: int) -> npt.NDArray[Any]:CODE
LOWrerun_py/rerun_sdk/rerun/error_utils.py80def _build_warning_context_string(skip_first: int) -> str:CODE
LOWrerun_py/rerun_sdk/rerun/_properties.py68def send_recording_start_time_nanos(nanos: int, recording: RecordingStream | None = None) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/_event.py164def _viewer_event_from_json_str(json_str: str) -> ViewerEvent:CODE
LOWrerun_py/rerun_sdk/rerun/urdf.py152 def compute_transform_columns(self, values: Sequence[float], *, clamp: bool = True) -> ComponentColumnList:CODE
LOWrerun_py/rerun_sdk/rerun/urdf.py306 def get_visual_geometry_paths(self, link: str | UrdfLink) -> list[str]:CODE
LOWrerun_py/rerun_sdk/rerun/urdf.py325 def get_collision_geometry_paths(self, link: str | UrdfLink) -> list[str]:CODE
LOWrerun_py/rerun_sdk/rerun/urdf.py378 def compute_joint_transform_batches(CODE
LOWrerun_py/rerun_sdk/rerun/notebook.py286 def set_application_blueprint(CODE
LOWrerun_py/rerun_sdk/rerun/experimental/_lens.py345def _build_rotation_axis_angle_struct( # noqa: PLR0917CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/vec3d_ext.py21 def native_to_pa_array_override(data: Vec3DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/tensor_buffer_ext.py13 def inner__field_converter_override(inner: npt.ArrayLike) -> npt.NDArray[Any]:CODE
LOW…run_py/rerun_sdk/rerun/datatypes/channel_count_pair.py23def _channel_count_pair__channel_id__special_field_converter_override(x: datatypes.UInt16Like) -> datatypes.UInt16:CODE
LOW…run_py/rerun_sdk/rerun/datatypes/channel_count_pair.py30def _channel_count_pair__message_count__special_field_converter_override(x: datatypes.UInt64Like) -> datatypes.UInt64:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/keypoint_pair_ext.py30 def native_to_pa_array_override(data: KeypointPairArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/vec2d_ext.py21 def native_to_pa_array_override(data: Vec2DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…un_py/rerun_sdk/rerun/datatypes/annotation_info_ext.py19 def native_to_pa_array_override(data: AnnotationInfoArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/dvec2d_ext.py20 def native_to_pa_array_override(data: DVec2DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/plane3d_ext.py72 def native_to_pa_array_override(data: Plane3DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/quaternion_ext.py37 def native_to_pa_array_override(data: QuaternionArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/mat4x4_ext.py42 def native_to_pa_array_override(data: Mat4x4ArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…y/rerun_sdk/rerun/datatypes/rotation_axis_angle_ext.py52 def angle__field_converter_override(x: AngleLike) -> Angle:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/utf8pair_ext.py32 def native_to_pa_array_override(data: Utf8PairArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…_py/rerun_sdk/rerun/datatypes/class_description_ext.py25def _class_description_converter(CODE
LOW…_py/rerun_sdk/rerun/datatypes/class_description_ext.py78 def info__field_converter_override(CODE
LOW…_py/rerun_sdk/rerun/datatypes/class_description_ext.py91 def keypoint_annotations__field_converter_override(CODE
LOW…_py/rerun_sdk/rerun/datatypes/class_description_ext.py100 def keypoint_connections__field_converter_override(CODE
LOW…_py/rerun_sdk/rerun/datatypes/class_description_ext.py109 def native_to_pa_array_override(data: ClassDescriptionArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…run_py/rerun_sdk/rerun/datatypes/visible_time_range.py22def _visible_time_range__timeline__special_field_converter_override(x: datatypes.Utf8Like) -> datatypes.Utf8:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/annotation_info.py23def _annotation_info__label__special_field_converter_override(x: datatypes.Utf8Like | None) -> datatypes.Utf8 | None:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/annotation_info.py32def _annotation_info__color__special_field_converter_override(CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uvec3d_ext.py21 def native_to_pa_array_override(data: UVec3DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/vec4d_ext.py21 def native_to_pa_array_override(data: Vec4DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/rgba32_ext.py47 def rgba__field_converter_override(data: Rgba32Like) -> int:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/rgba32_ext.py63 def native_to_pa_array_override(data: Rgba32ArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…py/rerun_sdk/rerun/datatypes/channel_count_pair_ext.py20 def native_to_pa_array_override(data: ChannelCountPairArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/time_range.py22def _time_range__start__special_field_converter_override(CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/time_range.py31def _time_range__end__special_field_converter_override(CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/image_format_ext.py13 def pixel_format__field_converter_override(CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/image_format_ext.py24 def channel_datatype__field_converter_override(CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/image_format_ext.py35 def color_model__field_converter_override(CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uvec2d_ext.py21 def native_to_pa_array_override(data: UVec2DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/range1d_ext.py17 def native_to_pa_array_override(data: Range1DArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…_sdk/rerun/datatypes/class_description_map_elem_ext.py15def _class_description_map_elem_converter(CODE
LOW…_sdk/rerun/datatypes/class_description_map_elem_ext.py33 def native_to_pa_array_override(data: ClassDescriptionMapElemArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…erun_sdk/rerun/datatypes/class_description_map_elem.py28def _class_description_map_elem__class_id__special_field_converter_override(CODE
LOW…un_py/rerun_sdk/rerun/datatypes/rotation_axis_angle.py22def _rotation_axis_angle__axis__special_field_converter_override(x: datatypes.Vec3DLike) -> datatypes.Vec3D:CODE
LOW…n_py/rerun_sdk/rerun/datatypes/view_coordinates_ext.py16 def native_to_pa_array_override(data: ViewCoordinatesArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uuid_ext.py21 def native_to_pa_array_override(data: UuidArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOW…_sdk/rerun/datatypes/tensor_dimension_selection_ext.py35 def native_to_pa_array_override(data: TensorDimensionSelectionArrayLike, data_type: pa.DataType) -> pa.Array:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/tensor_data_ext.py165 def native_to_pa_array_override(data: TensorDataArrayLike, data_type: pa.DataType) -> pa.Array:CODE
692 more matches not shown…
Modern Structural Boilerplate388 hits · 398 pts
SeverityFileLineSnippetContext
LOWrerun_py/rerun_sdk/rerun/_tracing.py27logger = logging.getLogger(__name__)CODE
LOWrerun_py/rerun_sdk/rerun/time.py19def set_time(timeline: str, *, recording: RecordingStream | None = None, sequence: int) -> None: ...CODE
LOWrerun_py/rerun_sdk/rerun/time.py207def set_log_tick_enabled(enabled: bool, recording: RecordingStream | None = None) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/time.py231def set_log_time_enabled(enabled: bool, recording: RecordingStream | None = None) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py882 def set_time(self, timeline: str, *, sequence: int) -> None: ...CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py885 def set_time(self, timeline: str, *, duration: int | float | timedelta | np.timedelta64) -> None: ...CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py888 def set_time(self, timeline: str, *, timestamp: int | float | datetime | np.datetime64) -> None: ...CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py972 def set_log_tick_enabled(self, enabled: bool) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py988 def set_log_time_enabled(self, enabled: bool) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/server.py19__all__ = ["Server"]CODE
LOWrerun_py/rerun_sdk/rerun/error_utils.py60def set_strict_mode(mode: bool) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/urdf.py19__all__ = ["UrdfJoint", "UrdfLink", "UrdfMimic", "UrdfTree"]CODE
LOWrerun_py/rerun_sdk/rerun/notebook.py44__all__ = [CODE
LOWrerun_py/rerun_sdk/rerun/notebook.py99def set_default_size(*, width: int | None, height: int | None) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/notebook.py568 def set_credentials(self, access_token: str, email: str) -> None:CODE
LOW…py/rerun_sdk/rerun/experimental/dataloader/__init__.py21__all__ = [CODE
LOW…sdk/rerun/experimental/dataloader/_iterable_dataset.py101 def set_epoch(self, epoch: int) -> None:CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/vec3d.py25__all__ = ["Vec3D", "Vec3DArrayLike", "Vec3DBatch", "Vec3DLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/keypoint_pair.py20__all__ = ["KeypointPair", "KeypointPairArrayLike", "KeypointPairBatch", "KeypointPairLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/vec2d.py25__all__ = ["Vec2D", "Vec2DArrayLike", "Vec2DBatch", "Vec2DLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/dvec2d.py25__all__ = ["DVec2D", "DVec2DArrayLike", "DVec2DBatch", "DVec2DLike"]CODE
LOW…dk/rerun/datatypes/tensor_dimension_index_selection.py19__all__ = [CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/entity_path.py20__all__ = ["EntityPath", "EntityPathArrayLike", "EntityPathBatch", "EntityPathLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/channel_datatype.py18__all__ = ["ChannelDatatype", "ChannelDatatypeArrayLike", "ChannelDatatypeBatch", "ChannelDatatypeLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/vec4d.py25__all__ = ["Vec4D", "Vec4DArrayLike", "Vec4DBatch", "Vec4DLike"]CODE
LOW…run_py/rerun_sdk/rerun/datatypes/channel_count_pair.py20__all__ = ["ChannelCountPair", "ChannelCountPairArrayLike", "ChannelCountPairBatch", "ChannelCountPairLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/plane3d.py25__all__ = ["Plane3D", "Plane3DArrayLike", "Plane3DBatch", "Plane3DLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/rgba32.py22__all__ = ["Rgba32", "Rgba32ArrayLike", "Rgba32Batch", "Rgba32Like"]CODE
LOW…erun_sdk/rerun/datatypes/tensor_dimension_selection.py20__all__ = [CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/angle.py22__all__ = ["Angle", "AngleArrayLike", "AngleBatch", "AngleLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/utf8.py20__all__ = ["Utf8", "Utf8ArrayLike", "Utf8Batch", "Utf8Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/bool.py19__all__ = ["Bool", "BoolArrayLike", "BoolBatch", "BoolLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/mat4x4.py27__all__ = ["Mat4x4", "Mat4x4ArrayLike", "Mat4x4Batch", "Mat4x4Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/time_int.py22__all__ = ["TimeInt", "TimeIntArrayLike", "TimeIntBatch", "TimeIntLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/image_format.py23__all__ = ["ImageFormat", "ImageFormatArrayLike", "ImageFormatBatch", "ImageFormatLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/quaternion.py25__all__ = ["Quaternion", "QuaternionArrayLike", "QuaternionBatch", "QuaternionLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/keypoint_id.py21__all__ = ["KeypointId", "KeypointIdArrayLike", "KeypointIdBatch", "KeypointIdLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/__init__.py86__all__ = [CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uint16.py21__all__ = ["UInt16", "UInt16ArrayLike", "UInt16Batch", "UInt16Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/tensor_buffer.py18__all__ = ["TensorBuffer", "TensorBufferArrayLike", "TensorBufferBatch", "TensorBufferLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uint32.py21__all__ = ["UInt32", "UInt32ArrayLike", "UInt32Batch", "UInt32Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/range2d.py19__all__ = ["Range2D", "Range2DArrayLike", "Range2DBatch", "Range2DLike"]CODE
LOW…un_py/rerun_sdk/rerun/datatypes/time_range_boundary.py19__all__ = ["TimeRangeBoundary", "TimeRangeBoundaryArrayLike", "TimeRangeBoundaryBatch", "TimeRangeBoundaryLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/float64.py21__all__ = ["Float64", "Float64ArrayLike", "Float64Batch", "Float64Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/range1d.py25__all__ = ["Range1D", "Range1DArrayLike", "Range1DBatch", "Range1DLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/float32.py21__all__ = ["Float32", "Float32ArrayLike", "Float32Batch", "Float32Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/class_description.py19__all__ = ["ClassDescription", "ClassDescriptionArrayLike", "ClassDescriptionBatch", "ClassDescriptionLike"]CODE
LOW…run_py/rerun_sdk/rerun/datatypes/visible_time_range.py19__all__ = ["VisibleTimeRange", "VisibleTimeRangeArrayLike", "VisibleTimeRangeBatch", "VisibleTimeRangeLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/annotation_info.py20__all__ = ["AnnotationInfo", "AnnotationInfoArrayLike", "AnnotationInfoBatch", "AnnotationInfoLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/class_id.py21__all__ = ["ClassId", "ClassIdArrayLike", "ClassIdBatch", "ClassIdLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/pixel_format.py17__all__ = ["PixelFormat", "PixelFormatArrayLike", "PixelFormatBatch", "PixelFormatLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/utf8pair.py22__all__ = ["Utf8Pair", "Utf8PairArrayLike", "Utf8PairBatch", "Utf8PairLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uint64.py21__all__ = ["UInt64", "UInt64ArrayLike", "UInt64Batch", "UInt64Like"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/time_range.py19__all__ = ["TimeRange", "TimeRangeArrayLike", "TimeRangeBatch", "TimeRangeLike"]CODE
LOW…erun_sdk/rerun/datatypes/class_description_map_elem.py20__all__ = [CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/ivec3d.py25__all__ = ["IVec3D", "IVec3DArrayLike", "IVec3DBatch", "IVec3DLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/color_model.py18__all__ = ["ColorModel", "ColorModelArrayLike", "ColorModelBatch", "ColorModelLike"]CODE
LOW…un_py/rerun_sdk/rerun/datatypes/absolute_time_range.py22__all__ = ["AbsoluteTimeRange", "AbsoluteTimeRangeArrayLike", "AbsoluteTimeRangeBatch", "AbsoluteTimeRangeLike"]CODE
LOW…un_py/rerun_sdk/rerun/datatypes/rotation_axis_angle.py19__all__ = ["RotationAxisAngle", "RotationAxisAngleArrayLike", "RotationAxisAngleBatch", "RotationAxisAngleLike"]CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/uvec3d.py25__all__ = ["UVec3D", "UVec3DArrayLike", "UVec3DBatch", "UVec3DLike"]CODE
328 more matches not shown…
Self-Referential Comments68 hits · 180 pts
SeverityFileLineSnippetContext
MEDIUMpixi.toml443# Create a wheel for the `rerun-sdk` package.COMMENT
MEDIUMrerun_py/rerun_sdk/rerun/recording_stream.py1496 # The following code is structured to avoid leaking the recording streamCOMMENT
MEDIUMrerun_py/rerun_sdk/rerun/recording_stream.py1566 # The following code is structured to avoid leaking the recording streamCOMMENT
MEDIUMrerun_py/rerun_sdk/rerun/dynamic_archetype.py147 # Create an empty archetypeCOMMENT
MEDIUM…un_py/rerun_sdk/rerun/archetypes/segmentation_image.py50 # Create a segmentation imageSTRING
MEDIUM…un_py/rerun_sdk/rerun/archetypes/annotation_context.py50 # Create a simple segmentation imageSTRING
MEDIUMrerun_py/rerun_sdk/rerun/archetypes/grid_map.py43 # Create a synthetic image with ROS `nav_msgs/OccupancyGrid` cell valueSTRING
MEDIUMrerun_py/rerun_sdk/rerun/archetypes/image.py56 # Create an image with numpySTRING
MEDIUM…rerun_sdk/rerun/blueprint/views/state_timeline_view.py50 # Create a state timeline view to display the state transitions.STRING
MEDIUM…/rerun_sdk/rerun/blueprint/views/text_document_view.py82 # Create a text view that displays the markdown.STRING
MEDIUMrerun_py/rerun_sdk/rerun/blueprint/views/graph_view.py49 # Create a Spatial2D view to display the points.STRING
MEDIUMrerun_py/rerun_sdk/rerun/blueprint/views/map_view.py48 # Create a map view to display the chart.STRING
MEDIUM…un_py/rerun_sdk/rerun/blueprint/views/text_log_view.py53 # Create a text view that displays all logs.STRING
MEDIUM…n_py/rerun_sdk/rerun/blueprint/views/dataframe_view.py56 # Create a Dataframe ViewSTRING
MEDIUM…n_py/rerun_sdk/rerun/blueprint/views/bar_chart_view.py41 # Create a bar chart view to display the chart.STRING
MEDIUM…n_py/rerun_sdk/rerun/blueprint/views/spatial3d_view.py51 # Create a Spatial3D view to display the points.STRING
MEDIUM…n_py/rerun_sdk/rerun/blueprint/views/spatial2d_view.py42 # Create a spiral of points:STRING
MEDIUM…n_py/rerun_sdk/rerun/blueprint/views/spatial2d_view.py59 # Create a Spatial2D view to display the points.STRING
MEDIUM…py/rerun_sdk/rerun/blueprint/views/time_series_view.py65 # Create a TimeSeries ViewSTRING
MEDIUMrerun_py/tests/unit/test_utilities_datafusion.py30 # Create a mock dataset for testingCOMMENT
MEDIUMrerun_py/tests/unit/test_deprecated.py9# Define a function with a deprecated parameter for testingCOMMENT
MEDIUMrerun_py/tests/unit/test_urdf_tree.py215 # Create a chunk with joint names and values.COMMENT
MEDIUM…n_py/tests/api_sandbox/test_draft/test_table_basics.py13 # Create a table with a schemaCOMMENT
MEDIUM…_py/tests/api_sandbox/test_draft/test_dataframe_api.py12 # Create a view with 2 segmentsCOMMENT
MEDIUM…py/tests/api_sandbox/test_current/test_table_basics.py18 # Create a table with a schemaCOMMENT
MEDIUM…y/tests/api_sandbox/test_current/test_dataframe_api.py21 # Create a view filtered to specific segmentsCOMMENT
MEDIUM…/tests/api_sandbox/test_current/test_polars_interop.py132 # Create a view filtered to specific segmentsSTRING
MEDIUMrerun_py/tests/e2e_redap_tests/conftest.py202 # Create a local OSS serverCOMMENT
MEDIUMrerun_py/tests/e2e_redap_tests/conftest.py347 # Create the dataset directly (not using entry_factory since it's function-scoped)COMMENT
MEDIUMrerun_py/tests/e2e_redap_tests/test_dataset_views.py194 # Create a view with all partitionsCOMMENT
MEDIUMrerun_py/tests/e2e_redap_tests/test_table_write.py24 # Create a table from scratchCOMMENT
MEDIUMrerun_py/tests/e2e_redap_tests/test_table_write.py57 # Create a table from scratchCOMMENT
MEDIUMrerun_py/tests/e2e_redap_tests/test_table_write.py110 # Create a table from scratchCOMMENT
MEDIUMrerun_py/tests/e2e_redap_tests/test_table_write.py131 # Create a table with an index column (marked with rerun:is_table_index metadata)COMMENT
MEDIUMdocs/snippets/all/archetypes/image_column_updates.py17# Create a batch of images with a moving rectangle.COMMENT
MEDIUM…pets/all/archetypes/annotation_context_segmentation.py9# Create a simple segmentation imageCOMMENT
MEDIUMdocs/snippets/all/archetypes/grid_map_simple.py10# Create a synthetic image with ROS `nav_msgs/OccupancyGrid` cell valueCOMMENT
MEDIUM…s/snippets/all/archetypes/segmentation_image_simple.py7# Create a segmentation imageCOMMENT
MEDIUMdocs/snippets/all/archetypes/image_simple.py7# Create an image with numpyCOMMENT
MEDIUMdocs/snippets/all/archetypes/pinhole_projections.py12# Create a 3D scene with a camera and an image.COMMENT
MEDIUMdocs/snippets/all/archetypes/pinhole_projections.py41# Create a simple test image.COMMENT
MEDIUM…snippets/all/concepts/build_chunk_from_record_batch.py10# Create an index column.COMMENT
MEDIUMdocs/snippets/all/howto/query_video_keyframes.py103# Create a reader that includes the keyframe layer dataCOMMENT
MEDIUMdocs/snippets/all/howto/component_mapping.py67# Create a blueprint with explicit component mappingsCOMMENT
MEDIUMdocs/snippets/all/howto/lerobot_export.py100# Create the LeRobot dataset structure on diskCOMMENT
MEDIUMdocs/snippets/all/howto/lerobot_export.py129# Create a new LeRobot dataset for multiple episodesCOMMENT
MEDIUMdocs/snippets/all/howto/dataframe_performance.py48# Create a new sparse layer identifying interesting eventsCOMMENT
MEDIUMdocs/snippets/all/views/text_log.py21# Create a text view that displays all logs.COMMENT
MEDIUMdocs/snippets/all/views/dataframe.py20# Create a Dataframe ViewCOMMENT
MEDIUMdocs/snippets/all/views/graph.py17# Create a Spatial2D view to display the points.COMMENT
MEDIUMdocs/snippets/all/views/map.py16# Create a map view to display the chart.COMMENT
MEDIUMdocs/snippets/all/views/text_document.py50# Create a text view that displays the markdown.COMMENT
MEDIUMdocs/snippets/all/views/bar_chart.py9# Create a bar chart view to display the chart.COMMENT
MEDIUMdocs/snippets/all/views/state_timeline.py17# Create a state timeline view to display the state transitions.COMMENT
MEDIUMdocs/snippets/all/views/spatial2d.py10# Create a spiral of points:COMMENT
MEDIUMdocs/snippets/all/views/spatial2d.py27# Create a Spatial2D view to display the points.COMMENT
MEDIUMdocs/snippets/all/views/spatial3d.py19# Create a Spatial3D view to display the points.COMMENT
MEDIUMdocs/snippets/all/views/timeseries.py33# Create a TimeSeries ViewCOMMENT
MEDIUMdocs/content/_redirects.yaml4# This file defines hidden redirects for docs pages. These are old URLs thatCOMMENT
MEDIUM.cargo/cranelift.toml3# This file is included via config-include from the pixi task and run configurationCOMMENT
8 more matches not shown…
Deep Nesting162 hits · 156 pts
SeverityFileLineSnippetContext
LOWrerun_py/rerun_sdk/rerun/time.py112CODE
LOWrerun_py/rerun_sdk/rerun/time.py130CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1462CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1530CODE
LOWrerun_py/rerun_sdk/rerun/recording_stream.py1491CODE
LOWrerun_py/rerun_sdk/rerun/_send_columns.py60CODE
LOWrerun_py/rerun_sdk/rerun/server.py49CODE
LOWrerun_py/rerun_sdk/rerun/dynamic_archetype.py112CODE
LOWrerun_py/rerun_sdk/rerun/dynamic_archetype.py193CODE
LOWrerun_py/rerun_sdk/rerun/_script_helpers.py68CODE
LOWrerun_py/rerun_sdk/rerun/error_utils.py206CODE
LOWrerun_py/rerun_sdk/rerun/any_batch_value.py194CODE
LOWrerun_py/rerun_sdk/rerun/_event.py164CODE
LOWrerun_py/rerun_sdk/rerun/_tracing_session.py58CODE
LOW…n_py/rerun_sdk/rerun/experimental/dataloader/_utils.py284CODE
LOW…un_py/rerun_sdk/rerun/datatypes/time_range_boundary.py79CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/rgba32_ext.py63CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/tensor_data_ext.py165CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/mat3x3_ext.py43CODE
LOWrerun_py/rerun_sdk/rerun/datatypes/blob_ext.py21CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/instance_poses3d.py253CODE
LOW…un_py/rerun_sdk/rerun/archetypes/segmentation_image.py187CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/text_log.py187CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipses2d.py236CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/geo_points.py175CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/graph_nodes.py243CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mesh3d.py316CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mcap_schema.py210CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/cylinders3d.py297CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/pinhole_ext.py16CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/series_lines.py301CODE
LOW…erun_sdk/rerun/archetypes/video_frame_reference_ext.py18CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/voxel_grid_map.py375CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform_axes3d.py183CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mcap_statistics.py300CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/clear.py137CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/capsules3d.py300CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/series_points.py228CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform3d_ext.py23CODE
LOW…n_py/rerun_sdk/rerun/archetypes/state_configuration.py237CODE
LOW…py/rerun_sdk/rerun/archetypes/video_frame_reference.py251CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/coordinate_frame.py161CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/state_change.py159CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/tensor.py159CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/asset_video.py206CODE
LOW…un_py/rerun_sdk/rerun/archetypes/annotation_context.py156CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/geo_line_strings.py169CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/recording_info.py130CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes3d_ext.py16CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/line_strips2d.py328CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/points3d.py362CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mesh3d_ext.py47CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/grid_map.py412CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/encoded_image.py194CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/graph_edges.py169CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/points2d.py299CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/line_strips3d.py364CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes2d_ext.py40CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/text_document.py207CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/depth_image.py269CODE
102 more matches not shown…
Excessive Try-Catch Wrapping90 hits · 123 pts
SeverityFileLineSnippetContext
LOWrerun_py/rerun_sdk/rerun/_tracing_session.py155 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/_tracing_session.py160 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/_tracing_session.py180 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/_tracing_session.py190 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/_tracing_session.py202 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/experimental/_viewer_client.py313 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/experimental/_query_metrics.py274 except Exception: # pragma: no cover — defensive; PyO3 allocation shouldn't failCODE
LOWrerun_py/rerun_sdk/rerun/archetypes/pinhole_ext.py167 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/pinhole_ext.py173 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform3d_ext.py113 except Exception: # Failed to subscript rotation.CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform3d_ext.py125 except Exception: # Failed to subscript quaternion.CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes3d_ext.py110 except Exception:CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes3d_ext.py119 except Exception:CODE
LOW…n_py/rerun_sdk/rerun/components/key_value_pairs_ext.py66 except Exception as err:CODE
LOW…n_py/rerun_sdk/rerun/components/key_value_pairs_ext.py84 except Exception as err:CODE
MEDIUMrerun_py/rerun_sdk/rerun_cli/__main__.py36 print(f"Error: Could not find rerun binary at {target_path}", file=sys.stderr)CODE
LOWrerun_py/tests/unit/test_multi_stream.py85 except Exception:CODE
LOWrerun_py/tests/unit/test_server.py156 except Exception:CODE
LOWrerun_py/tests/api_sandbox/rerun_draft/catalog.py103 except Exception:CODE
LOW…n_py/tests/integration/test_dataloader_video_codecs.py84 except Exception:CODE
LOWrerun_py/tests/e2e_redap_tests/conftest.py271 except Exception as e:CODE
LOWrerun_py/tests/e2e_redap_tests/conftest.py353 except Exception:CODE
LOWrerun_py/tests/e2e_redap_tests/conftest.py363 except Exception as e:CODE
LOWrerun_py/tests/e2e_redap_tests/test_scan_path_errors.py79 except Exception as exc:CODE
LOWdocs/snippets/compare_snippet_output.py276 except Exception as e:CODE
LOWdocs/snippets/compare_snippet_output.py287 except Exception as e:CODE
LOWdocs/snippets/compare_snippet_output.py298 except Exception as e:CODE
LOWdocs/snippets/all/howto/convert_mcap_protobuf.py166 except Exception as e:CODE
LOWexamples/python/any_scalar/any_scalar/market_demo.py74 except Exception as e:CODE
MEDIUMexamples/python/any_scalar/any_scalar/market_demo.py75 print(f"Error processing {ticker}: {e}")CODE
LOWexamples/python/ocr/ocr.py228 except Exception as e:CODE
LOW…s/python/arkit_scenes/arkit_scenes/download_dataset.py115 except Exception as error:CODE
LOW…s/python/arkit_scenes/arkit_scenes/download_dataset.py131 except Exception as error:CODE
LOWexamples/python/lidar/lidar/download_dataset.py49 except Exception as error:CODE
MEDIUMexamples/python/lidar/lidar/download_dataset.py50 print(f"Error unzipping {tar_file_path}, error: {error}")CODE
LOWexamples/python/log_file/log_file.py41 except Exception:CODE
LOWexamples/python/raw_mesh/raw_mesh/__main__.py74 except Exception:STRING
LOWexamples/python/raw_mesh/raw_mesh/__main__.py81 except Exception:STRING
LOWexamples/python/raw_mesh/raw_mesh/__main__.py91 except Exception:STRING
LOWexamples/python/droid_semantic_search/vector_store.py82 except Exception as exc:CODE
LOW…/nuscenes_dataset/nuscenes_dataset/download_dataset.py49 except Exception as error:CODE
MEDIUM…/nuscenes_dataset/nuscenes_dataset/download_dataset.py50 print(f"Error unzipping {tar_file_path}, error: {error}")CODE
LOWexamples/python/table_zoo/table_zoo.py329 except Exception:CODE
LOWexamples/python/table_zoo/table_zoo.py367 except Exception as e:CODE
MEDIUMexamples/python/table_zoo/table_zoo.py368 print(f"Error in register-to-server mode: {e}", file=sys.stderr)CODE
LOWscripts/update_docs_url_rewrite.py221 except Exception as e:CODE
MEDIUMscripts/upload_rrd.py149 print(f"Error: {e.args[0]}", file=sys.stderr)STRING
LOWscripts/append_web_viewer.py117 except Exception as e:CODE
MEDIUMscripts/append_web_viewer.py118 print(f"Error: {e}", file=sys.stderr)CODE
MEDIUMscripts/zombie_todos.py137 print(f"Error fetching issue {repo_owner}/{repo_name}#{issue_number}: {e}")CODE
MEDIUMscripts/zombie_todos.py198 print(f"Error fetching Linear issue {issue_id}: {e}")CODE
MEDIUMscripts/zombie_todos.py308 print(f"Error reading {path}: {e}")CODE
MEDIUMscripts/zombie_todos.py322 print(f"Error reading {path}: {e}")CODE
MEDIUMscripts/zombie_todos.py284 print(f"Error: {e}")CODE
MEDIUMscripts/zombie_todos.py411 print(f"Error processing {filepath}: {e}")CODE
MEDIUMscripts/zombie_todos.py493 print(f"Error processing {filepath}: {e}")CODE
LOWscripts/zombie_todos.py136 except Exception as e:CODE
LOWscripts/zombie_todos.py200 except Exception as e:CODE
LOWscripts/zombie_todos.py307 except Exception as e:CODE
LOWscripts/zombie_todos.py321 except Exception as e:CODE
30 more matches not shown…
Cross-Language Confusion27 hits · 122 pts
SeverityFileLineSnippetContext
HIGHrerun_py/tests/unit/test_viewer_client.py12 assert result.equals(batch)CODE
HIGHrerun_py/tests/unit/test_viewer_client.py21 assert result.equals(expected)CODE
HIGHrerun_py/tests/api_sandbox/test_draft/test_table_api.py41 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…n_py/tests/api_sandbox/test_draft/test_table_basics.py32 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…n_py/tests/api_sandbox/test_draft/test_table_basics.py85 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…_py/tests/api_sandbox/test_draft/test_dataframe_api.py22 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…_py/tests/api_sandbox/test_draft/test_dataset_views.py22 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…_py/tests/api_sandbox/test_draft/test_dataset_views.py52 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…_py/tests/api_sandbox/test_draft/test_dataset_views.py137 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…n_py/tests/api_sandbox/test_draft/test_index_ranges.py15 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…n_py/tests/api_sandbox/test_draft/test_index_ranges.py51 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…n_py/tests/api_sandbox/test_draft/test_index_ranges.py80 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…py/tests/api_sandbox/test_draft/test_dataset_basics.py53 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…py/tests/api_sandbox/test_draft/test_dataset_basics.py113 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…py/tests/api_sandbox/test_draft/test_dataset_basics.py249 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGHrerun_py/tests/e2e_redap_tests/test_dataset_views.py164 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGHrerun_py/tests/e2e_redap_tests/test_dataset_views.py191 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGHrerun_py/tests/e2e_redap_tests/test_dataset_views.py222 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGHrerun_py/tests/e2e_redap_tests/test_dataset_views.py268 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGHrerun_py/tests/e2e_redap_tests/test_dataset_views.py431 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGHrerun_py/tests/e2e_redap_tests/test_index_ranges.py34 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGHrerun_py/tests/e2e_redap_tests/test_index_ranges.py97 assert batch.schema.equals(df_schema, check_metadata=True)STRING
HIGH…/e2e_redap_tests/test_dataset_query_select_pushdown.py332 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…/e2e_redap_tests/test_dataset_query_select_pushdown.py349 assert batch.schema.equals(df_schema, check_metadata=True)CODE
HIGH…amples/python/droid_semantic_search/prepare_dataset.py65 "Fetch them with `git lfs install && git lfs pull`, or pass `--source huggingface` to download instead.",CODE
HIGHscripts/generate_changelog.py150 ".[] | select(.author != null) | [.author.login, .author.type] | @tsv",CODE
HIGHscripts/fetch_crashes.py94# "person": null,COMMENT
AI Slop Vocabulary26 hits · 80 pts
SeverityFileLineSnippetContext
MEDIUMpixi.toml297# NOTE(cmc): I'm keeping all the snapshot machinery around if it turns out we need something more robustCOMMENT
MEDIUMcrates/utils/re_perf_telemetry/src/telemetry.rs774 // together with queue size this help ensure more robust exporting under high throughputCOMMENT
MEDIUMcrates/utils/re_perf_telemetry/src/trace_id_format.rs36 // This is more robust than going through `tracing::Span::current().context()`COMMENT
MEDIUMcrates/utils/re_video/src/decode/webcodecs.rs220 // Note that we have to be robust against duplicated timeestamps:COMMENT
MEDIUMcrates/utils/re_video/src/player/mod.rs539 // don't show up in the input data (that in and on its own is a bug, but this makes it more robust)COMMENT
MEDIUMcrates/utils/re_video/src/player/mod.rs1077/// Note that we need to be robust against this being wrong and the video getting new samples in the future after all.COMMENT
MEDIUMcrates/utils/re_video/src/player/sample_decoder.rs21 /// Either way, being robust against this seems like a good idea!COMMENT
MEDIUMcrates/viewer/re_renderer/src/util.rs55/// Computes both an exact bounding box and an outlier-robust region of interestCOMMENT
MEDIUMcrates/viewer/re_renderer/src/util.rs58/// The region of interest is computed via a two-pass robust mean/σ approach:COMMENT
MEDIUMcrates/viewer/re_renderer/src/util.rs63/// The second pass makes this robust against extreme outliers that would otherwiseCOMMENT
MEDIUMcrates/viewer/re_renderer/src/colormap.rs273/// This is a perceptually uniform colormap which is robust to color blindness.COMMENT
MEDIUM…r/re_renderer/src/resource_managers/texture_manager.rs155/// More complex textures types are typically handled within renderer which utilize the texture pool directly.COMMENT
MEDIUMcrates/store/re_query/src/storage_engine.rs25/// [`QueryCacheHandle`] already offer: the job of the [`StorageEngine`] is to leverage the typeCOMMENT
MEDIUMcrates/store/re_log_encoding/src/rrd/frames.rs238 /// We do not leverage that feature today, and so the number of entries is always 1 in practice.COMMENT
MEDIUMcrates/store/re_sdk_types/src/components/colormap.rs68 /// This is a perceptually uniform colormap which is robust to color blindness.COMMENT
MEDIUMcrates/store/re_sdk_types/src/components/colormap.rs74 /// This is a perceptually uniform colormap which is robust to color blindness.COMMENT
MEDIUMrerun_py/pyproject.toml202 # "LOG", # flake8-logging (logging best practices) # NOT SURECOMMENT
MEDIUMrerun_py/pyproject.toml204 # "PL", # Pylint (comprehensive linting)COMMENT
LOWrerun_py/rerun_sdk/rerun/blueprint/api.py155 # If contents is already a ViewContents, we can just use it directlyCOMMENT
MEDIUMrerun_cpp/tests/windows_min_max_robustness.cpp4// However, users might not know about this or forget about it and we want to be robust against it.COMMENT
MEDIUMrerun_cpp/tests/windows_min_max_robustness.cpp6// This test checks that rerun.h is robust against this issue by explicitly setting `min`/`max` macros and including rerCOMMENT
MEDIUMrerun_cpp/src/rerun/components/colormap.hpp63 /// This is a perceptually uniform colormap which is robust to color blindness.COMMENT
MEDIUMrerun_cpp/src/rerun/components/colormap.hpp69 /// This is a perceptually uniform colormap which is robust to color blindness.COMMENT
LOW…python/external_importer/rerun-importer-python-file.py18# that file, otherwise you can just create a dedicated recording for it. Or both.COMMENT
MEDIUMexamples/rust/objectron/build.rs20 // Definitely notCOMMENT
MEDIUM.github/workflows/reusable_checks_protobuf.yml44 # NOTE(cmc): I'm keeping all the snapshot machinery around if it turns out we need something more robustCOMMENT
AI Structural Patterns73 hits · 73 pts
SeverityFileLineSnippetContext
LOWrerun_py/rerun_sdk/rerun/sinks.py463CODE
LOWrerun_py/rerun_sdk/rerun/_spawn.py6CODE
LOWrerun_py/rerun_sdk/rerun/experimental/_viewer_client.py103CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipses2d.py94CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipses2d.py236CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mesh3d.py144CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mesh3d.py316CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/cylinders3d.py117CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/cylinders3d.py297CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/pinhole_ext.py16CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/voxel_grid_map.py84CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/voxel_grid_map.py193CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/voxel_grid_map.py375CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mcap_statistics.py139CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mcap_statistics.py300CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipsoids3d_ext.py16CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/capsules3d.py120CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/capsules3d.py300CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform3d_ext.py23CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/cylinders3d_ext.py14CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipses2d_ext.py14CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes3d_ext.py16CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/line_strips2d.py198CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/points3d.py211CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/points3d.py362CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/mesh3d_ext.py47CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/grid_map.py248CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/grid_map.py412CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/points2d.py147CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/points2d.py299CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes2d_ext.py40CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/depth_image.py105CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/depth_image.py269CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipsoids3d.py105CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/ellipsoids3d.py275CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/capsules3d_ext.py14CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/image_ext.py77CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes2d.py82CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes2d.py224CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes3d.py103CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/boxes3d.py274CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/arrows2d.py91CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/arrows2d.py237CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/arrows3d.py95CODE
LOW…n_py/rerun_sdk/rerun/archetypes/encoded_depth_image.py171CODE
LOW…n_py/rerun_sdk/rerun/archetypes/encoded_depth_image.py315CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/pinhole.py128CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/pinhole.py316CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform3d.py265CODE
LOWrerun_py/rerun_sdk/rerun/archetypes/transform3d.py426CODE
LOWrerun_py/rerun_sdk/rerun/blueprint/api.py485CODE
LOW…sdk/rerun/blueprint/archetypes/time_panel_blueprint.py106CODE
LOW…erun_sdk/rerun/blueprint/archetypes/dataframe_query.py58CODE
LOW…rerun_sdk/rerun/blueprint/archetypes/eye_controls3d.py120CODE
LOW…_sdk/rerun/blueprint/archetypes/container_blueprint.py121CODE
LOWrerun_py/rerun_sdk/rerun/blueprint/views/graph_view.py77CODE
LOWrerun_py/rerun_sdk/rerun/blueprint/views/map_view.py73CODE
LOW…un_py/rerun_sdk/rerun/blueprint/views/text_log_view.py86CODE
LOWrerun_py/rerun_sdk/rerun/blueprint/views/tensor_view.py88CODE
LOW…n_py/rerun_sdk/rerun/blueprint/views/bar_chart_view.py67CODE
13 more matches not shown…
Hallucination Indicators4 hits · 55 pts
SeverityFileLineSnippetContext
CRITICALcrates/viewer/re_viewer/src/web.rs726 url: cc.integration_info.web_info.location.url.clone(),CODE
CRITICALrerun_py/src/urdf.rs244 self.joint.axis.xyz.0.into()CODE
CRITICALrerun_py/src/urdf.rs250 self.joint.origin.xyz.0.into()CODE
CRITICALrerun_py/src/urdf.rs256 self.joint.origin.rpy.0.into()CODE
Verbosity Indicators21 hits · 37 pts
SeverityFileLineSnippetContext
LOW…tes/viewer/re_context_menu/src/actions/track_entity.rs24 // We need to check if the focused entity is loggedCOMMENT
LOWcrates/viewer/re_ui/src/ui_ext.rs967 // icon size of re_hyperlink, if we adjust this we need to check if the workaround still worksCOMMENT
LOW…s/viewer/re_view_dataframe/src/view_query/blueprint.rs289 // Step 1: Reorder columns by entity if an order is set, otherwise keep as-is.COMMENT
LOW…s/viewer/re_view_dataframe/src/view_query/blueprint.rs295 // Step 2: Apply column visibility.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs182 // Step 0: chunk-identity dispatch.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs201 // Step 1: pre-stamp a working copy of the schema metadata.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs204 // Step 2: classify (this is where a bad index dtype raises `UnsupportedTimeType`).COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs207 // Step 3: policy.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs222 // Step 4: group component columns by entity path, preserving first-seen order.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs230 // Step 5: assemble one chunk batch per entity group.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs242 // Step 6: note static chunks with more than one row. Occasionally legit (tf-transforms),COMMENT
LOWcrates/store/re_server/src/store/in_memory_store.rs124 // Step 1: resolve every key's store once and group Lazy-store chunk IDs for batched I/O.COMMENT
LOWcrates/store/re_server/src/store/in_memory_store.rs150 // Step 2: one batched load per Lazy store. Preserves the existing provider and IPC-parseCOMMENT
LOWcrates/store/re_server/src/store/in_memory_store.rs170 // Step 3: assemble output.COMMENT
LOWcrates/store/re_dataframe/src/query.rs774 // Step 1: per-chunk `is_disjoint_in_column`.COMMENT
LOWcrates/store/re_dataframe/src/query.rs795 // Step 2: per-chunk `times_unique` and `dense_uiv_span`.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs661 // Step 1: Group chunks by URL and collect all ranges for gap/concurrency calculations.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs711 // Step 2: Merge adjacent ranges per URL.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs727 // Step 3: Calculate adaptive concurrency from original (un-merged) ranges.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs742 // Step 4: Fetch merged ranges concurrently and extract individual chunks.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs854 // Step 5: Reassemble in original row order.COMMENT
Structural Annotation Overuse21 hits · 37 pts
SeverityFileLineSnippetContext
LOW…s/viewer/re_view_dataframe/src/view_query/blueprint.rs289 // Step 1: Reorder columns by entity if an order is set, otherwise keep as-is.COMMENT
LOW…s/viewer/re_view_dataframe/src/view_query/blueprint.rs295 // Step 2: Apply column visibility.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs182 // Step 0: chunk-identity dispatch.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs201 // Step 1: pre-stamp a working copy of the schema metadata.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs204 // Step 2: classify (this is where a bad index dtype raises `UnsupportedTimeType`).COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs207 // Step 3: policy.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs222 // Step 4: group component columns by entity path, preserving first-seen order.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs230 // Step 5: assemble one chunk batch per entity group.COMMENT
LOWcrates/store/re_sorbet/src/dataframe_to_chunks.rs242 // Step 6: note static chunks with more than one row. Occasionally legit (tf-transforms),COMMENT
LOWcrates/store/re_server/src/store/in_memory_store.rs124 // Step 1: resolve every key's store once and group Lazy-store chunk IDs for batched I/O.COMMENT
LOWcrates/store/re_server/src/store/in_memory_store.rs150 // Step 2: one batched load per Lazy store. Preserves the existing provider and IPC-parseCOMMENT
LOWcrates/store/re_server/src/store/in_memory_store.rs170 // Step 3: assemble output.COMMENT
LOWcrates/store/re_dataframe/src/query.rs774 // Step 1: per-chunk `is_disjoint_in_column`.COMMENT
LOWcrates/store/re_dataframe/src/query.rs795 // Step 2: per-chunk `times_unique` and `dense_uiv_span`.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs661 // Step 1: Group chunks by URL and collect all ranges for gap/concurrency calculations.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs711 // Step 2: Merge adjacent ranges per URL.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs727 // Step 3: Calculate adaptive concurrency from original (un-merged) ranges.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs742 // Step 4: Fetch merged ranges concurrently and extract individual chunks.COMMENT
LOWcrates/store/re_datafusion/src/chunk_fetcher.rs854 // Step 5: Reassemble in original row order.COMMENT
LOWskills/rerun-lerobot/SKILL.md16## Step 1: dataset -> one combined RRDCOMMENT
LOWskills/rerun-lerobot/SKILL.md33## Step 2: split into per-episode RRDsCOMMENT
Redundant / Tautological Comments19 hits · 28 pts
SeverityFileLineSnippetContext
LOWscripts/generate_changelog.py190 # Check if we got a PR (API returns empty object if no PR found)COMMENT
LOWscripts/pre-push.sh6# Check if pixi is installedCOMMENT
LOWscripts/pre-push.sh19 # Check if the pushed branch matches the active branchCOMMENT
LOWscripts/upload_rrd.py132 # Check if user put `v0.15.0` instead of `0.15.0`:STRING
LOWscripts/zombie_todos.py109 # Check if we already have this result cachedCOMMENT
LOWscripts/zombie_todos.py184 # Check if issue is closed (Done or Canceled states)COMMENT
LOWscripts/zombie_todos.py218 # Check if we already have this result cachedCOMMENT
LOWscripts/highlight_issues.py91 # Check if there is a next page:COMMENT
LOWscripts/lint.py912 # Check if this line starts a pyclass declarationCOMMENT
LOWscripts/lint.py952 # Check if 'eq' is present in the pyclass declarationCOMMENT
LOWscripts/lint.py961 # Check if the correct module is specifiedCOMMENT
LOWscripts/lint.py990 # Check if this line starts a pymethods declarationCOMMENT
LOWscripts/lint.py1035 # Check if __str__ or __repr__ is present in the impl contentCOMMENT
LOWscripts/lint.py1566 # Check if this is trying to use the ignore[code] format with NOLINT_STARTCOMMENT
LOWscripts/ci/check_doc_redirects.py72 # Check if the destination file existsCOMMENT
LOWscripts/ci/rust_checks.py111 # Print output right away, so the user can start fixing it while waiting for the rest of the checks to run:COMMENT
LOWscripts/ci/thumbnails.py142 # Check if frontmatter is missingCOMMENT
LOW.github/workflows/enforce_branch_name.yml19 # Check if PR is from a forkCOMMENT
LOW.github/workflows/enforce_branch_name.yml21 # Check if PR is from the master/main branch of a forkCOMMENT
Slop Phrases10 hits · 20 pts
SeverityFileLineSnippetContext
LOWcrates/top/rerun-cli/Cargo.toml58# If you insist on adding a feature here, please make sure you address all the concerns above.COMMENT
LOWcrates/utils/re_perf_telemetry/Cargo.toml35## This is very cheap, but make sure to disable the `tracy` feature flag if that turns out to be aCOMMENT
MEDIUMcrates/utils/re_video/src/decode/mod.rs61//! … and as discussed above, even it's there, often video players tend to ignore some settings!COMMENT
LOWcrates/viewer/re_dataframe_ui/src/re_table_utils.rs186 /// Don't forget to call [`Self::store`] to persist the changes.COMMENT
LOW…/re_datafusion/src/dataframe_query_provider/io_loop.rs383 // Don't forget to merge the last batchCOMMENT
MEDIUMexamples/cpp/custom_collection_adapter/main.cpp11 // For demonstration purposes: This container can't be copied.COMMENT
MEDIUMscripts/accept_snapshots.sh3# Its main use is in the update_kittest_snapshots CI job, but you can also use it locally.COMMENT
LOWscripts/ci/setup_software_rasterizer.py181 # Set environment variables, make sure to use windows path style.COMMENT
LOWscripts/ci/sync_release_assets.py319 # Draft releases are not accessible through any of the expected ways, so we make sure to fixCOMMENT
LOW.vscode/settings.json37 // Don't forget to put it in a comment again before committing.COMMENT
Fake / Example Data14 hits · 16 pts
SeverityFileLineSnippetContext
LOWcrates/viewer/re_dataframe_ui/tests/text_truncation.rs44 let lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOWcrates/viewer/re_dataframe_ui/tests/text_truncation.rs44 let lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOWcrates/viewer/re_ui/examples/re_ui_example/main.rs203 earlier than this. Lorem ipsum sit dolor amet. Lorem ipsum sit dolor amet. \CODE
LOWcrates/viewer/re_ui/examples/re_ui_example/main.rs204 Lorem ipsum sit dolor amet. Lorem ipsum sit dolor amet. Lorem ipsum sit dolor amet. \CODE
LOWcrates/viewer/re_ui/examples/re_ui_example/main.rs205 Lorem ipsum sit dolor amet."CODE
LOW…viewer/re_component_ui/tests/test_all_components_ui.rs195 label: "placeholder",CODE
LOWcrates/viewer/re_component_ui/src/marker_shape.rs78 let points = egui_plot::Points::new("placeholder", [0.0, 0.0])CODE
LOWrerun_py/rerun_sdk/rerun/dynamic_archetype.py148 archetype = cls(archetype="placeholder", drop_untyped_nones=drop_untyped_nones, components={})CODE
LOW…ust/re_integration_test/tests/view_visualizers_test.rs44 .with_names(["Lorem ipsum dolor sit amet, consectetur adipiscing elit."])CODE
LOW…ust/re_integration_test/tests/view_visualizers_test.rs44 .with_names(["Lorem ipsum dolor sit amet, consectetur adipiscing elit."])CODE
LOWexamples/assets/example.md3Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eleifend mi eget tellus pellentesque, sit amet ultricieCODE
LOWexamples/assets/example.md3Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eleifend mi eget tellus pellentesque, sit amet ultricieCODE
LOWexamples/assets/example.txt1Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eleifend mi eget tellus pellentesque, sit amet ultricieCODE
LOWexamples/assets/example.txt1Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eleifend mi eget tellus pellentesque, sit amet ultricieCODE
Synthetic Comment Markers1 hit · 8 pts
SeverityFileLineSnippetContext
HIGH…iewer/re_renderer/src/allocator/data_texture_source.rs154 /// * have a total capacity for at least as many elements as requested, clamping total size to the maximum.COMMENT
Modern AI Meta-Vocabulary2 hits · 6 pts
SeverityFileLineSnippetContext
MEDIUMdocs/snippets/all/tutorials/dna.py38 # region: scaffoldingCOMMENT
MEDIUMdocs/snippets/all/tutorials/dna.py45 # endregion: scaffoldingCOMMENT
AI Response Leakage1 hit · 5 pts
SeverityFileLineSnippetContext
HIGHexamples/python/controlnet/README.md24[Hugging Face's ControlNet](https://huggingface.co/docs/diffusers/using-diffusers/controlnet#controlnet) allows to condiCODE
Overly Generic Function Names2 hits · 2 pts
SeverityFileLineSnippetContext
LOWrerun_py/tests/unit/test_deprecated.py11def test_function(new_param: str | None = None, old_param: str | None = None) -> str | None:CODE
LOWscripts/ci/crates.py171 def helper(CODE
Example Usage Blocks1 hit · 2 pts
SeverityFileLineSnippetContext
LOWrerun_cpp/src/rerun/c/sdk_info.h18/// Example usage:COMMENT