diff --git a/.agents/skills/build-from-issue/SKILL.md b/.agents/skills/build-from-issue/SKILL.md index 2e04e37f52..06d1324b02 100644 --- a/.agents/skills/build-from-issue/SKILL.md +++ b/.agents/skills/build-from-issue/SKILL.md @@ -62,7 +62,7 @@ Fetch issue + comments ├─ Triage incomplete, awaiting information, or awaiting human disposition? │ → Report the blocking state and STOP │ - ├─ state:accepted absent? + ├─ state:accepted and roadmap association both absent? │ → Human has not accepted the issue; STOP │ ├─ No plan comment and no direct planning request and agent:plan-requested absent? @@ -113,9 +113,9 @@ Stop before planning in any of these states: - `state:triage-needed`: the issue has not been assessed; use `triage-issue`. - `state:needs-info`: triage is waiting for evidence from the reporter. -- `state:validated`: triage is complete, but a human has not yet decided whether OpenShell should invest in the work. +- `state:validated` without roadmap placement: triage is complete, but a human has not yet decided whether OpenShell should invest in the work. -Next, require `state:accepted`. It records the human decision to pursue the work. If no plan exists, require either a direct user request for planning or the human-applied `agent:plan-requested` label before generating one. Record any roadmap association as sequencing context, but do not require one. Never add or remove `state:accepted`, either human request label, or the `roadmap` label. +Next, require a human acceptance signal: either `state:accepted` or placement on the roadmap. The label records acceptance without requiring scheduling; roadmap placement records acceptance and sequencing. If no plan exists, require either a direct user request for planning or the human-applied `agent:plan-requested` label before generating one. Never add or remove `state:accepted`, either human request label, or the `roadmap` label. ## Step 2: Fetch and Classify Comments @@ -160,7 +160,7 @@ Task tool with subagent_type="principal-engineer-reviewer" In the prompt, instruct the reviewer to: -1. Read the issue description thoroughly and identify what needs to change in the codebase. +1. Read the issue's user story and identify what needs to change in the codebase. Treat reporter diagnostics or solution ideas as optional context, not as authoritative or current analysis. 2. Map the requirements to existing code — read the relevant source files. 3. Determine the **issue type** — one of: `feat` (new feature), `fix` (bug fix), `refactor`, `chore`, `perf`, `docs`. 4. Propose the minimal set of changes that satisfies the requirements. @@ -174,6 +174,8 @@ In the prompt, instruct the reviewer to: 9. Assess **gateway config documentation impact** — if the change adds, removes, renames, or changes defaults for gateway TOML keys or driver-specific config options, the plan must include an update to `docs/reference/gateway-config.mdx`. If the change is surfaced through Helm or a compute-driver overview, also include `docs/reference/sandbox-compute-drivers.mdx` or the relevant deployment docs. 10. Assess **LSM compatibility** — if the change touches process identity, `/proc` filesystem access, binary execution, or inter-process visibility, flag whether it will behave differently on hosts running SELinux (enforcing) or AppArmor. In particular, tests that fork+exec into system binaries will fail on SELinux-enforcing hosts due to cross-label `/proc//exe` access restrictions. +Perform this investigation against the current branch and current product behavior. If the issue contains earlier diagnostics, verify them rather than relying on them. + ### A2: Post the Plan Comment Post the plan as a comment on the issue. This is the **canonical plan comment** that will be edited in place as the plan evolves. diff --git a/.agents/skills/create-github-issue/SKILL.md b/.agents/skills/create-github-issue/SKILL.md index 8352603e76..609d55ad15 100644 --- a/.agents/skills/create-github-issue/SKILL.md +++ b/.agents/skills/create-github-issue/SKILL.md @@ -17,27 +17,27 @@ This project uses YAML form issue templates. When creating issues, match the tem ### Bug Reports -Do not add a type label automatically. The body must include an **Agent Diagnostic** section — this is required by the template and enforced by project convention. The diagnostic must identify the OpenShell version tested, whether the latest release or known fixes were checked, and whether possible duplicate issues were searched. If the agent cannot verify the latest release or search existing issues, say so explicitly instead of guessing. Apply area or topic labels only when they are clearly known. +Do not add a type label automatically. The body must include a **User Story**, **Problem Statement**, **Impact / Why This Matters**, and **Acceptance Criteria**, followed by bug-specific reproduction steps and environment details. Logs are optional and must be concise and redacted. Apply area or topic labels only when they are clearly known. ```bash gh issue create \ --title "bug: " \ --body "$(cat <<'EOF' -## Agent Diagnostic +## User Story -- Skills loaded: -- OpenShell version tested: -- Latest release checked: -- Known fixes reviewed: -- Possible duplicates reviewed: -- Findings: -- Remaining reason for filing: +As a , I want , so that . -## Description +## Problem Statement + + + +## Impact / Why This Matters -**Actual behavior:** + -**Expected behavior:** +## Acceptance Criteria + +- [ ] ## Reproduction Steps @@ -46,16 +46,14 @@ gh issue create \ ## Environment -- OS: -- Docker: - OpenShell: -- Latest release checked: -- Possible duplicates checked: +- OS: +- Runtime, deployment, or integration: ## Logs ``` - + ``` EOF )" @@ -63,28 +61,39 @@ EOF ### Feature Requests -Do not add a type label automatically. The body must include a **Proposed Design** — not a "please build this" request. Apply area or topic labels only when they are clearly known. +Do not add a type label automatically. The body must include a **User Story**, **Problem Statement**, **Impact / Why This Matters**, **Proposed Design**, **Acceptance Criteria**, and **Alternatives Considered**. The proposed design should define the user-facing workflow and externally observable behavior without prescribing internal implementation. Agent investigation is optional. Apply area or topic labels only when they are clearly known. ```bash gh issue create \ --title "feat: " \ --body "$(cat <<'EOF' +## User Story + +As a , I want , so that . + ## Problem Statement - + + +## Impact / Why This Matters + + ## Proposed Design - + + +## Acceptance Criteria + +- [ ] ## Alternatives Considered - + ## Agent Investigation - + EOF )" ``` @@ -114,7 +123,7 @@ EOF GitHub built-in issue types (`Bug`, `Feature`, `Task`) should come from the matching issue template when possible, or be set manually afterward. Do not try to emulate them through labels. -Creating an issue does not accept it for roadmap work or queue agent work. Agents never apply the `roadmap` label, add issues to the roadmap project, or apply `agent:plan-requested` or `agent:implementation-requested`. Community issues proceed through `triage-issue`; a human decides whether technically validated work should be accepted and places it on the roadmap. The request labels queue work for unattended agents; a user may instead direct an agent to a specific issue. +Creating an issue does not accept it or queue agent work. Agents never apply `state:accepted`, the `roadmap` label, add issues to the roadmap project, or apply `agent:plan-requested` or `agent:implementation-requested`. Community issues proceed through `triage-issue`; a human accepts technically validated work with `state:accepted` or roadmap placement. The request labels queue work for unattended agents; a user may instead direct an agent to a specific issue. ## Useful Options diff --git a/.agents/skills/create-spike/SKILL.md b/.agents/skills/create-spike/SKILL.md index 4f30c3829a..63bcffb72b 100644 --- a/.agents/skills/create-spike/SKILL.md +++ b/.agents/skills/create-spike/SKILL.md @@ -211,7 +211,7 @@ gh issue create \ - --- -*Created by spike investigation. `state:validated` means the issue is ready for human disposition; `state:needs-info` means specific evidence is still required. A human applies `state:accepted` if OpenShell should pursue the work and places it on the roadmap separately. To queue unattended agent planning, a human applies `agent:plan-requested`; a direct request to an agent does not require that label.* +*Created by spike investigation. `state:validated` means the issue is ready for human disposition; `state:needs-info` means specific evidence is still required. A human applies `state:accepted` or places the issue on the roadmap if OpenShell should pursue the work. To queue unattended agent planning, a human applies `agent:plan-requested`; a direct request to an agent does not require that label.* EOF )" ``` @@ -235,7 +235,7 @@ After creating the issue, report: For `state:validated`: -> Review the issue and decide whether OpenShell should pursue it. If yes, replace `state:validated` with `state:accepted` and separately associate it with a roadmap item. The work may remain human-owned. Apply `agent:plan-requested` to queue planning for an unattended agent, or directly ask an agent to use `build-from-issue`. If no, close it as not planned and record the rationale. +> Review the issue and decide whether OpenShell should pursue it. If yes, apply `state:accepted`, associate it with a roadmap item, or do both. Either action records acceptance; roadmap placement additionally records sequencing. The work may remain human-owned. Apply `agent:plan-requested` to queue planning for an unattended agent, or directly ask an agent to use `build-from-issue`. If no, close it as not planned and record the rationale. For `state:needs-info`: diff --git a/.agents/skills/sync-agent-infra/SKILL.md b/.agents/skills/sync-agent-infra/SKILL.md index e1d5b52c12..bd01bfebde 100644 --- a/.agents/skills/sync-agent-infra/SKILL.md +++ b/.agents/skills/sync-agent-infra/SKILL.md @@ -119,8 +119,8 @@ For each file in the table above, check for the following inconsistencies: ### Issue Templates -1. **`bug_report.yml`** — Skill names in the Agent Diagnostic guidance and checklist must exist. -2. **`feature_request.yml`** — Skill names in the Agent Investigation guidance must exist. +1. **`bug_report.yml`** — Must collect a User Story, Problem Statement, Impact / Why This Matters, Acceptance Criteria, Reproduction Steps, and Environment. Logs are optional and bug-specific; reporter diagnostics must not be required. +2. **`feature_request.yml`** — Must collect a User Story, Problem Statement, Impact / Why This Matters, Proposed Design, Acceptance Criteria, and Alternatives Considered. The design describes workflow and observable behavior without prescribing internal implementation; agent investigation is optional. 3. **`config.yml`** — Skill category descriptions in contact links should be accurate. ### Issue Triage Workflow diff --git a/.agents/skills/triage-issue/SKILL.md b/.agents/skills/triage-issue/SKILL.md index 5e5d503025..ebd353d6f8 100644 --- a/.agents/skills/triage-issue/SKILL.md +++ b/.agents/skills/triage-issue/SKILL.md @@ -25,7 +25,7 @@ Triage establishes technical validity; it does not decide whether valid work bel OpenShell has no `priority:*` labels. Sequencing comes from association with an item on the OpenShell Roadmap, and that association is a maintainer decision. -`state:validated` means the factual assessment is complete and awaits human disposition. A human declines by closing the issue as not planned with a rationale, or accepts by replacing `state:validated` with `state:accepted` and placing the issue on the roadmap as documented in `CONTRIBUTING.md`. Accepted work may remain human-owned. A maintainer can queue deeper agent investigation or planning with `agent:plan-requested`, or directly ask an agent to work on a specific issue. +`state:validated` means the factual assessment is complete and awaits human disposition. A human declines by closing the issue as not planned with a rationale, or accepts by applying `state:accepted`, placing the issue on the roadmap, or doing both as documented in `CONTRIBUTING.md`. Accepted work may remain human-owned. A maintainer can queue deeper agent investigation or planning with `agent:plan-requested`, or directly ask an agent to work on a specific issue. The optional `agent:*` workflow controls unattended queue pickup: `agent:plan-requested` queues planning, and `agent:implementation-requested` queues implementation after plan review. A direct user instruction separately authorizes the phase it requests and does not require either label. @@ -98,18 +98,14 @@ Search the issue comments for the triage agent marker (`> **📋 triage-agent**` - **If the marker is found** and no subsequent human comments exist with new information or questions, report that the issue has already been triaged and stop. - **If the marker is found** but there are newer human comments with additional information, proceed to Step 3 to re-evaluate with the new context. -- **If a human already declined the issue or applied `state:accepted`**, do not undo or reinterpret that decision. +- **If a human already declined the issue, applied `state:accepted`, or placed it on the roadmap**, do not undo or reinterpret that decision. - **If the marker is not found**, proceed to Step 3. -## Step 3: Validate the Agent-First Gate +## Step 3: Check Report Completeness -Check whether the issue body contains a substantive agent diagnostic section. Treat this as evidence quality, not as a reason to skip obvious safety or routing actions. Look for: +Check for a substantive User Story, Problem Statement, Impact / Why This Matters, and Acceptance Criteria. The impact should explain the consequences of the current behavior and any insufficient workaround. For bug reports, also identify the reproduction steps and relevant environment. For feature requests, review the Proposed Design and Alternatives Considered. Reporter-supplied diagnostics and agent output are optional and must not be used as an intake gate. -- An "Agent Diagnostic" heading or section (from the bug report template) -- Evidence that the reporter used agent skills (skill names mentioned, diagnostic output pasted) -- Concrete investigation output (not just placeholder text or "N/A") - -If the diagnostic is missing, continue when the report already contains enough concrete evidence to assess safely. Otherwise classify it as `needs-information`, request the exact missing evidence, remove `state:triage-needed`, and add `state:needs-info`. +If the report contains enough context to understand and assess the need, continue. If a required section lacks material information, classify it as `needs-information`, request only the exact missing information, remove `state:triage-needed`, and add `state:needs-info`. - If a public issue may disclose a security vulnerability, do not repeat or expand sensitive details. Classify it as `security-report` and direct the operator to `SECURITY.md`. - Route usage questions and support requests to the documented support venue. @@ -121,7 +117,7 @@ Proceed to Step 4 for reports requiring technical validation. Before deeper diagnosis, determine whether the report may already be fixed in a newer release. -1. Extract the reported OpenShell version from the issue body, Agent Diagnostic, environment section, logs, and comments. If no version is provided, record that as missing context and continue. +1. Extract the reported OpenShell version from the issue body, environment section, logs, and comments. If no version is provided, record that as missing context and continue. 2. Check current release information and known fixes when available: - `gh release list --limit 10` - `gh release view ` @@ -140,15 +136,17 @@ Assess the report by investigating the codebase. Use the `principal-engineer-rev ``` Prompt the sub-agent with: - The full issue title and body -- The reporter's agent diagnostic output - Instructions to evaluate with a skeptical lens: - 1. Is this report describing a real problem or user error? - 2. Can the described behavior be reproduced from the information given? - 3. Does the reporter's agent diagnostic match what you see in the codebase? - 4. If this is a bug, what component is affected? - 5. If this is a feature request, is it technically coherent and feasible? Do not decide whether the project should accept it. - 6. Are there any open or closed issues that duplicate this? - 7. What uncertainty remains, and what exact evidence would resolve it? + 1. What persona and desired capability does the user story establish? + 2. Does the problem statement match current product behavior? + 3. Does the impact explain the consequences, current workaround, and why that workaround is insufficient? + 4. Are the acceptance criteria specific, observable, and consistent with the user story? + 5. Can the described workflow be reproduced or otherwise validated from the information given? + 6. Does the current product support the requested outcome, and what component owns the behavior? + 7. Is the report best classified as a bug, feature request, support request, or another category? + 8. If this is a feature request, is the proposed design technically coherent and feasible? Do not decide whether the project should accept it. + 9. Are there any open or closed issues that duplicate this? + 10. What uncertainty remains, and what exact evidence would resolve it? ``` Based on the sub-agent's analysis, also attempt to validate the report directly: @@ -205,14 +203,14 @@ Post a structured comment with the triage marker: > - **Evidence quality:** > > ### Human Decision Required -> Decide whether OpenShell should address this issue. If yes, replace -> `state:validated` with `state:accepted`, associate it with a roadmap -> item, and decide whether the work remains human-owned. +> Decide whether OpenShell should address this issue. If yes, apply +> `state:accepted`, associate it with a roadmap item, or do both, and decide +> whether the work remains human-owned. Either action records acceptance; +> roadmap placement additionally records sequencing. > To queue investigation or planning for an unattended agent, also apply > `agent:plan-requested`. You can instead directly ask an agent to use > `create-spike` or `build-from-issue` on this issue. If no, close it as not > planned and record the rationale. -> Roadmap association is independent sequencing metadata. ``` For other outcomes, replace the impact and decision sections with the exact information request, objective resolution, or safe routing guidance. @@ -230,7 +228,7 @@ Community issue filed | state:validated | - human decline OR state:accepted + roadmap placement + human decline OR state:accepted / roadmap placement | create-spike (if deeper investigation is approved) | diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index de5d8112ae..dd774e25c8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,39 +1,58 @@ name: Bug Report -description: Report a bug. Your agent should investigate first — see CONTRIBUTING.md. +description: Report unexpected behavior with a clear user story and expected outcome. type: Bug body: - type: markdown attributes: value: | - ## Agent-First Troubleshooting + ## Bug Reports - OpenShell is an agent-first project. Before filing this bug, point your coding agent at the repo and have it investigate using the available skills (`debug-openshell-cluster`, `debug-inference`, `openshell-cli`, etc.). See [CONTRIBUTING.md](https://github.com/NVIDIA/OpenShell/blob/main/CONTRIBUTING.md) for the full skills table. + Describe who encountered the bug, the problem it creates, why it matters, and the observable criteria for a fix. Please check the latest OpenShell release and search existing issues for possible duplicates before filing. - Please also check the latest OpenShell release and search existing issues for possible duplicates before filing. If you cannot upgrade, retest, or search existing issues, explain why in the diagnostic. + Do not report security vulnerabilities here; follow [SECURITY.md](https://github.com/NVIDIA/OpenShell/blob/main/SECURITY.md) instead. - type: textarea - id: agent-diagnostic + id: user-story attributes: - label: Agent Diagnostic + label: User Story + description: Describe who encountered this behavior, what they need to do, and why it matters. + placeholder: | + As a , + I want , + so that . + validations: + required: true + + - type: textarea + id: problem + attributes: + label: Problem Statement + description: Summarize what is broken or missing in the current behavior. Focus on the issue itself; describe its consequences and current workarounds in Impact / Why This Matters. + placeholder: Describe the gap or failure in OpenShell's current behavior and when it occurs. + validations: + required: true + + - type: textarea + id: impact + attributes: + label: Impact / Why This Matters description: | - Paste the output from your agent's investigation of this bug. What skills did it load? What did it find? What did it try? Which OpenShell version did it test, and did it check the latest release, known fixes, and possible duplicates? + Explain how the bug affects users and what they must do to work around it today. Describe the operational cost, security risk, data loss, blocked workflow, or other concrete consequence. Include evidence where available, but do not diagnose the cause or prescribe the fix. placeholder: | - Example: - - Loaded `debug-inference` skill - - Tested OpenShell v0.x.x - - Checked latest release / known fixes: no matching fix found - - Searched existing issues for duplicates: no matching issue found - - Ran `openshell inference get` and `openshell provider get ollama` - - Found `OPENAI_BASE_URL=http://127.0.0.1:11434/v1`, which is unreachable from the gateway - - Updated the provider to use `host.openshell.internal`, but the issue persists because the gateway is remote + When this happens, users must... + This results in... + This matters because... validations: required: true - type: textarea - id: description + id: acceptance-criteria attributes: - label: Description - description: What happened? What did you expect to happen? + label: Acceptance Criteria + description: List the specific, observable outcomes that would demonstrate the bug is fixed. + placeholder: | + - [ ] + - [ ] validations: required: true @@ -41,7 +60,7 @@ body: id: reproduction attributes: label: Reproduction Steps - description: Minimal steps to reproduce the issue. + description: Provide the minimal steps needed to reproduce the issue. placeholder: | 1. Run `openshell sandbox create -- claude` 2. ... @@ -52,13 +71,12 @@ body: id: environment attributes: label: Environment - description: OS, Docker version, OpenShell version tested, whether the latest release and existing issues were checked, and any other relevant details. + description: Include the OpenShell version and relevant OS, deployment mode, runtime, or integration details. placeholder: | - - OS: macOS 15.2 / Ubuntu 24.04 / Windows 11 + WSL2 - - Docker: Docker Desktop 4.x / Docker Engine 27.x - OpenShell: v0.x.x (output of `openshell --version`) - - Latest release checked: yes / no, because ... - - Possible duplicates checked: yes / no, because ... + - OS: macOS 15.2 / Ubuntu 24.04 / Windows 11 + WSL2 + - Runtime: Docker Desktop 4.x / Docker Engine 27.x / Kubernetes v1.x + - Deployment or integration: validations: required: true @@ -67,24 +85,8 @@ body: attributes: label: Logs description: | - Relevant log output, error messages, or stack traces. - Redact credentials, API keys, and tokens before pasting — verbose error output from some frameworks includes the full request config. + Include the smallest relevant log excerpt, error message, or stack trace. + Redact credentials, API keys, tokens, and query parameters before pasting. render: shell validations: required: false - - - type: checkboxes - id: checklist - attributes: - label: Agent-First Checklist - options: - - label: I pointed my agent at the repo and had it investigate this issue - required: true - - label: I loaded relevant skills (e.g., `debug-openshell-cluster`, `debug-inference`, `openshell-cli`) - required: true - - label: I checked the latest OpenShell release and either reproduced the issue there or explained why I cannot upgrade/test it - required: true - - label: I searched existing issues for possible duplicates or explained why I could not - required: true - - label: My agent could not resolve this — the diagnostic above explains why - required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index bbc1188d7a..10ae9cbe50 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,5 +1,5 @@ name: Feature Request -description: Propose a feature with a design. Not a "please build this" request. +description: Propose a feature with a user story and design. Not a "please build this" request. type: Feature body: - type: markdown @@ -7,15 +7,40 @@ body: value: | ## Design-First Feature Proposals - OpenShell feature requests must include a design proposal — describe the system behavior you want, not just the outcome. New features start here, not as RFC pull requests. If maintainers decide an RFC is necessary, they will request one from this issue and assign the RFC number. + OpenShell feature requests must include a user story and workflow-level design proposal. Describe who needs the feature, the problem it solves, why the current gap matters, the desired user-facing workflow, and the observable criteria for success. Leave implementation choices to the people building the feature. New features start here, not as RFC pull requests. If maintainers decide an RFC is necessary, they will request one from this issue and assign the RFC number. If your agent explored the codebase to assess feasibility (e.g., using the `create-spike` skill), include its findings. + - type: textarea + id: user-story + attributes: + label: User Story + description: Describe who needs this feature, what they need to do, and why it matters. + placeholder: | + As a , + I want , + so that . + validations: + required: true + - type: textarea id: problem attributes: label: Problem Statement - description: What problem does this solve? Why does it matter? + description: Summarize the capability or behavior missing from OpenShell today. Focus on the gap itself; describe its consequences and current workarounds in Impact / Why This Matters. + validations: + required: true + + - type: textarea + id: impact + attributes: + label: Impact / Why This Matters + description: | + Explain what users must do today and why that is insufficient. Describe the operational cost, security risk, blocked workflow, or adoption barrier caused by the problem. Include concrete evidence where available, but do not prescribe the solution. + placeholder: | + Without this feature, users must... + This results in... + This matters because... validations: required: true @@ -24,7 +49,18 @@ body: attributes: label: Proposed Design description: | - How should this work? Describe the system behavior, components involved, and user-facing interface. This should be a design, not a wish list. + How should this work from the user's perspective? Describe the desired workflow and externally observable behavior. Avoid prescribing internal components or implementation unless they are essential constraints. + validations: + required: true + + - type: textarea + id: acceptance-criteria + attributes: + label: Acceptance Criteria + description: List specific, observable outcomes that would make this feature complete without prescribing how implementers achieve them. + placeholder: | + - [ ] + - [ ] validations: required: true @@ -32,7 +68,7 @@ body: id: alternatives attributes: label: Alternatives Considered - description: What other approaches did you evaluate? Why is the proposed design better? + description: What other user-facing workflows or behaviors did you consider? Why does the proposed approach best satisfy the user story? validations: required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f6de74c859..2efbaac5d1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -13,7 +13,7 @@ No issue required: ## Testing - + - [ ] `mise run pre-commit` passes - [ ] Unit tests added/updated - [ ] E2E tests added/updated (if applicable) diff --git a/AGENTS.md b/AGENTS.md index 2d89879e9e..7c2b6d417f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -17,9 +17,9 @@ Agent skills live in `.agents/skills/`. Your harness can discover and load them These pipelines connect skills into end-to-end workflows. Individual skill files don't describe these relationships. - **Community inflow:** `triage-issue` → human disposition and roadmap placement → `create-spike` when needed → `build-from-issue` - - Triage establishes facts and marks technically valid issues `state:validated`. A human applies `state:accepted` if the project should pursue the work and separately places it on the roadmap. The `agent:*` labels support unattended agents that scan for queued work: a human queues a plan with `agent:plan-requested`, the agent returns `agent:plan-ready`, and a human queues implementation with `agent:implementation-requested`. A direct user request to an agent authorizes the requested phase without those labels. + - Triage establishes facts and marks technically valid issues `state:validated`. A human signals that the project should pursue the work by applying `state:accepted` or placing the issue on the roadmap. The `agent:*` labels support unattended agents that scan for queued work: a human queues a plan with `agent:plan-requested`, the agent returns `agent:plan-ready`, and a human queues implementation with `agent:implementation-requested`. A direct user request to an agent authorizes the requested phase without those labels. - **Internal development:** `create-spike` → human disposition and roadmap placement → `build-from-issue` - - Spike explores feasibility and marks its issue `state:validated` when sufficient evidence exists. A human accepts it with `state:accepted` or declines it, separately places it on the roadmap, and optionally queues it through the `agent:*` workflow or directs an agent to it. + - Spike explores feasibility and marks its issue `state:validated` when sufficient evidence exists. A human accepts it with `state:accepted` or roadmap placement, or declines it, and optionally queues it through the `agent:*` workflow or directs an agent to it. - **Security:** `review-security-issue` → `fix-security-issue` - General build agents must not process `topic:security` issues. For unattended processing, a human queues specialized review with `agent:plan-requested`; review produces a severity assessment and remediation plan; a human queues remediation with `agent:implementation-requested`. Direct requests to the specialized skills do not require those labels. - **Policy iteration:** `openshell-cli` → `generate-sandbox-policy` @@ -71,11 +71,11 @@ These pipelines connect skills into end-to-end workflows. Individual skill files ## Issue and PR Conventions -- **Bug reports** must include an agent diagnostic section — proof that the reporter's agent investigated the issue before filing. See the issue template. -- **Feature requests** must include a design proposal, not just a "please build this" request. See the issue template. +- **Bug reports and feature requests** must include a User Story, Problem Statement, Impact / Why This Matters, and Acceptance Criteria. The impact should explain the consequences of the current behavior, the current workaround, and why that workaround is insufficient. Bug reports additionally require reproduction steps and environment details and may include concise, redacted logs. +- **Feature requests** must also include a Proposed Design and Alternatives Considered. The design should define the user-facing workflow and externally observable behavior while leaving internal implementation choices open. Agent investigation is optional. - **New features** must start as GitHub issues using the feature request template. Open an RFC only after an issue exists; maintainers decide when one is needed and assign RFC numbers from the issue. -- **Issue triage** establishes technical validity and impact evidence. Agents never decide roadmap acceptance, apply `state:accepted`, place issues on the roadmap, or apply `agent:plan-requested` or `agent:implementation-requested`. Humans accept or decline validated work and separately place it on the roadmap. The request labels queue work for unattended agents; an explicit user instruction can instead authorize an agent to plan or implement a specific issue. OpenShell has no `priority:*` labels; roadmap association carries sequencing. -- **PRs** must follow the PR template structure: Summary, Related Issue, Changes, Testing, Checklist. +- **Issue triage** establishes technical validity and impact evidence. Agents never decide acceptance, apply `state:accepted`, place issues on the roadmap, or apply `agent:plan-requested` or `agent:implementation-requested`. Humans accept or decline validated work; `state:accepted` or roadmap placement records acceptance, and roadmap association additionally carries sequencing. The request labels queue work for unattended agents; an explicit user instruction can instead authorize an agent to plan or implement a specific issue. OpenShell has no `priority:*` labels. +- **PRs** must follow the PR template structure: Summary, Related Issue, Changes, Testing, Checklist. Contributors should use their agent to investigate the current code and behavior for accepted issue-backed work, verify any diagnostics already on the issue, understand the change they submit, and report the resulting implementation and verification—not paste an earlier issue-filing diagnostic. - **PRs for features, user-visible behavior, public APIs, architecture, or multi-PR efforts** must link an accepted issue. Small docs fixes, mechanical maintenance, and obvious localized bug fixes may state why no issue is required. - **PRs from unvouched external contributors** are automatically closed. See the Vouch System section above. - **Security vulnerabilities** must NOT be filed as GitHub issues. Follow [SECURITY.md](SECURITY.md). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 22592c435c..5d9e22ecab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to OpenShell -OpenShell is built agent-first. We design systems and use agents to implement them. Your agent is your first collaborator — point it at this repo before opening issues, asking questions, or submitting code. +OpenShell is built agent-first. We use agents to design and implement systems, while humans manage product decisions and the project roadmap. ## The Critical Rule @@ -34,30 +34,38 @@ We use a vouch system. This exists because AI makes it trivial to generate plaus Issues labeled [`good first issue`](https://github.com/NVIDIA/OpenShell/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) are scoped, well-documented, and friendly to new contributors. Start there. If you need guidance, comment on the issue. -An open issue is not necessarily accepted or ready to be worked on. Human contributors should look for `state:accepted`, `good first issue`, or `help wanted`, or ask a maintainer before starting. Unattended agents additionally require the appropriate human-applied `agent:*` request label; an agent directly asked to work on a specific issue does not. Roadmap placement describes sequencing and does not authorize work. +An open issue is not necessarily accepted or ready to be worked on. Human contributors should look for `state:accepted`, roadmap placement, `good first issue`, or `help wanted`, or ask a maintainer before starting. Unattended agents additionally require the appropriate human-applied `agent:*` request label; an agent directly asked to work on a specific issue does not. ## Before You Open an Issue -This project ships with [agent skills](#agent-skills-for-contributors) that can diagnose problems, explore the codebase, generate policies, and walk you through common workflows. Before filing an issue: +Search open and closed issues for the same need. Bug reports and feature requests must include: -1. Clone the repo and point your coding agent at it. -2. Load the relevant skill - `debug-openshell-cluster` for gateway or deployment problems, `debug-inference` for inference setup problems, `openshell-cli` for usage questions, `generate-sandbox-policy` for policy help. -3. Have your agent investigate. Let it run diagnostics, read the architecture docs, and attempt a fix. -4. If the agent cannot resolve it, open an issue **with the agent's diagnostic output attached**. The issue template requires this. +1. **User Story:** who needs the change and what they need to do. +2. **Problem Statement:** a concise summary of what is broken or missing in the current behavior. +3. **Impact / Why This Matters:** the consequences of the current behavior, the current workaround, and why that workaround is insufficient. +4. **Acceptance Criteria:** specific, observable outcomes that define success. + +Feature requests must also propose a user-facing workflow and describe alternatives considered. Define the externally observable behavior and leave internal implementation choices open. Bug reports instead include minimal reproduction steps, the OpenShell version and relevant environment, and a small, redacted log excerpt when it materially clarifies the behavior. + +The project includes optional [agent skills](#agent-skills-for-contributors) for self-service troubleshooting and exploration. Use them when they help you, but summarize any useful result in your own words rather than pasting a diagnostic transcript. ### When to Open an Issue -- A real bug that your agent confirmed and could not fix. -- A feature proposal with a design — not a "please build this" request. -- An infrastructure problem that the gateway deployment troubleshooting skill could not resolve. -- An inference setup problem that the `debug-inference` skill could not resolve. +- A workflow behaves differently from what you need or reasonably expect. +- OpenShell does not support an outcome that matters to your workflow. +- The available documentation or configuration does not explain how to complete a supported workflow. - Security vulnerabilities must follow [SECURITY.md](SECURITY.md) — **not** GitHub issues. ### When NOT to Open an Issue -- Questions about how things work — your agent can answer these from the codebase and architecture docs. -- Configuration problems - your agent can diagnose these with `openshell-cli`, `debug-openshell-cluster`, and `debug-inference`. -- "How do I..." requests — the skills cover CLI usage, policy generation, TUI development, and more. +- General questions or open-ended discussion — use [GitHub Discussions](https://github.com/NVIDIA/OpenShell/discussions). +- Security vulnerabilities — follow [SECURITY.md](SECURITY.md) instead. + +## Before You Submit a Change + +Do not start substantial issue-backed work until a maintainer has accepted the issue, unless a maintainer directly asks you to investigate or implement it. Once the work is authorized, use your agent to investigate the current code and behavior. If the issue contains earlier diagnostics, verify them rather than relying on them. + +Use agents and the repository skills as needed to understand the affected code, evaluate tradeoffs, implement the smallest coherent change, and verify it. The pull request should explain what changed and how it was tested; it should not substitute an agent transcript for the contributor's understanding. ## Agent Skills for Contributors @@ -110,11 +118,11 @@ Each issue can require four independent decisions: | Decision | Question | Recorded by | |---|---|---| | Assessment | Is the report technically valid, and is there enough evidence to act on it? | `state:*` | -| Disposition | Should OpenShell pursue the work? | `state:accepted` or closure as not planned | +| Disposition | Should OpenShell pursue the work? | `state:accepted`, roadmap placement, or closure as not planned | | Sequencing | Where does accepted work sit relative to everything else? | Placement on the [OpenShell Roadmap](https://github.com/orgs/NVIDIA/projects/233) | | Ownership | Will a human implement the issue, will a user directly instruct an agent, or will a maintainer queue it for an unattended agent? | Direct instruction or optional `agent:*` workflow | -Completing one decision does not imply the others. `state:validated` confirms that the factual assessment is complete, but it does not mean the project has accepted the work. Roadmap placement communicates sequencing, but it does not authorize an agent to begin. +`state:validated` confirms that the factual assessment is complete, but it does not mean the project has accepted the work. A maintainer signals acceptance with `state:accepted` or roadmap placement. Roadmap placement also communicates sequencing, but it does not assign an owner or queue an unattended agent. #### Who Controls Each Decision @@ -125,7 +133,7 @@ Agents investigate issues, collect evidence, and report technical findings. Huma | Assess technical validity and impact | Triage agent or human triager | | Request missing evidence | Triage agent or human triager | | Mark the assessment complete with `state:validated` | Triage agent or human triager | -| Accept or decline the work | Maintainer | +| Accept or decline the work with `state:accepted`, roadmap placement, or closure | Maintainer | | Place the issue on the roadmap or move it | Maintainer | | Directly request an agent plan | User | | Queue an agent plan with `agent:plan-requested` | Maintainer | @@ -152,7 +160,7 @@ Keep one of these states on an open issue. When new evidence resolves a `state:n #### Assessing an Incoming Issue -Triage checks the report, its diagnostic evidence, related issues, current releases, and the relevant code paths. The assessment ends in one of these outcomes: +Triage checks the user story, reproduction or workflow, environment, related issues, current releases, and the relevant code paths. The assessment ends in one of these outcomes: | Outcome | State or resolution | |---|---| @@ -171,17 +179,17 @@ Triage establishes facts and impact. It does not decide whether the project shou When an issue reaches `state:validated`, a maintainer chooses one of three paths: -- **Accept:** replace `state:validated` with `state:accepted` and place it on the roadmap. +- **Accept:** apply `state:accepted`, place the issue on the roadmap, or do both. Either action signals that OpenShell should pursue the work; roadmap placement additionally records sequencing. - **Decline:** close it as not planned and record the rationale. - **Await more evidence:** replace `state:validated` with `state:needs-info` and leave it off the roadmap. -Do not use `state:accepted` as shorthand for technical validity, roadmap sequencing, or agent authorization. It records only the human decision that OpenShell should pursue the work. +Do not use `state:accepted` as shorthand for technical validity, roadmap sequencing, or agent authorization. It records the human decision that OpenShell should pursue the work. Roadmap placement records the same acceptance decision plus sequencing. #### Roadmap -OpenShell does not use priority labels. Sequencing comes from the [OpenShell Roadmap](https://github.com/orgs/NVIDIA/projects/233): a maintainer associates an accepted issue with a roadmap item, and the roadmap item's own timing carries the urgency. Issues tracked on the roadmap carry the `roadmap` label. +OpenShell does not use priority labels. Sequencing comes from the [OpenShell Roadmap](https://github.com/orgs/NVIDIA/projects/233): a maintainer associates an issue with a roadmap item, signaling acceptance and giving it timing. Issues tracked on the roadmap carry the `roadmap` label. -An accepted issue with no roadmap association is real work the project intends to do, but it is not scheduled. Ask a maintainer before starting on one. +An issue with `state:accepted` and no roadmap association is real work the project intends to do, but it is not scheduled. Ask a maintainer before starting on one. Roadmap placement does not assign an owner. A roadmap issue still needs a human contributor, a direct user instruction to an agent, or an unattended-agent queue label. @@ -204,7 +212,7 @@ Maintainers use the `agent:*` workflow to queue work for always-on or unattended The normal delegated workflow is: ```text -state:accepted +(state:accepted OR roadmap placement) | +-- agent:plan-requested | @@ -247,12 +255,12 @@ A user may instead directly request review or remediation from the specialized s | You are | Ready when | |---|---| -| A human contributor | The issue has `state:accepted`, invites contribution or has maintainer confirmation, and has no conflicting owner or implementation. | -| An unattended agent scanning for planning work | The issue has `state:accepted` and the human-applied `agent:plan-requested` label. | -| An unattended agent scanning for implementation work | The issue has `state:accepted`, an approved plan, and the human-applied `agent:implementation-requested` label. | -| An agent directly instructed by a user | The issue has `state:accepted`, no conflicting owner or implementation, and the instruction explicitly requests the phase the agent will perform. | +| A human contributor | The issue has `state:accepted`, roadmap placement, an invitation to contribute, or maintainer confirmation, and has no conflicting owner or implementation. | +| An unattended agent scanning for planning work | The issue has `state:accepted` or roadmap placement, plus the human-applied `agent:plan-requested` label. | +| An unattended agent scanning for implementation work | The issue has `state:accepted` or roadmap placement, plus an approved plan and the human-applied `agent:implementation-requested` label. | +| An agent directly instructed by a user | The issue has `state:accepted` or roadmap placement, no conflicting owner or implementation, and the instruction explicitly requests the phase the agent will perform. | -Issues with `state:triage-needed`, `state:needs-info`, or `state:validated` are not ready for implementation. Roadmap placement alone never makes an issue ready. +Issues with `state:triage-needed`, `state:needs-info`, or `state:validated` are not ready for implementation unless a maintainer has separately placed them on the roadmap. Either `state:accepted` or roadmap placement records the required human acceptance decision. #### Stale Issues diff --git a/README.md b/README.md index 3d5aeb6fb4..7b0654ed56 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ Your agent can load skills for CLI usage (`openshell-cli`), gateway troubleshoot OpenShell is developed using the same agent-driven workflows it enables. The `.agents/skills/` directory contains workflow automation that powers the project's development cycle: -- **Spike and build:** Investigate a problem with `create-spike`; a human accepts or declines it and separately places it on the [roadmap](https://github.com/orgs/NVIDIA/projects/233). Accepted work can remain human-owned or enter the optional, human-gated `agent:*` planning and implementation workflow. +- **Spike and build:** Investigate a problem with `create-spike`; a human accepts it with `state:accepted` or [roadmap](https://github.com/orgs/NVIDIA/projects/233) placement, or declines it. Accepted work can remain human-owned or enter the optional, human-gated `agent:*` planning and implementation workflow. - **Triage and route:** Community issues are assessed with `triage-issue`. Agents establish technical validity and impact; humans decide whether the project should act and where the work sits on the roadmap. - **Security review:** `review-security-issue` produces a severity assessment and remediation plan. `fix-security-issue` implements it. - **Policy authoring:** `generate-sandbox-policy` creates YAML policies from plain-language requirements or API documentation. @@ -244,7 +244,7 @@ All agent implementation work is human-gated: maintainers explicitly request a p ## Contributing -OpenShell is built agent-first — your agent is your first collaborator. Before opening issues or submitting code, point your agent at the repo and let it use the skills in `.agents/skills/` to investigate, diagnose, and prototype. See [CONTRIBUTING.md](CONTRIBUTING.md) for the full agent skills table, contribution workflow, and development setup. +OpenShell is built agent-first. Issues should include a user story, problem statement, impact, and acceptance criteria. The impact should explain the consequences of the current behavior and why existing workarounds are insufficient. Feature requests also require a workflow-level proposed design and alternatives; bug reports add reproduction steps, environment details, and relevant logs. Once maintainers accept work, contributors should use the skills in `.agents/skills/` to investigate the current code and behavior, implement the change, and verify it. If an issue contains earlier diagnostics, verify them rather than relying on them. See [CONTRIBUTING.md](CONTRIBUTING.md) for the full agent skills table, contribution workflow, and development setup. ## Telemetry diff --git a/sdk/go/coverage.out b/sdk/go/coverage.out new file mode 100644 index 0000000000..5298624c93 --- /dev/null +++ b/sdk/go/coverage.out @@ -0,0 +1,2046 @@ +mode: atomic +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:19.28,21.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:23.96,25.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:27.50,29.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:36.45,38.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:40.101,44.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:46.55,48.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:30.91,31.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:31.17,33.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:34.2,34.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:34.23,36.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:39.2,40.28 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:40.28,41.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:41.14,42.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:44.3,44.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:47.2,47.26 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:47.26,49.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:51.2,54.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:59.110,61.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:61.16,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:67.2,68.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:68.27,70.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:72.2,74.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:78.60,80.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:29.43,33.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:37.48,38.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:38.32,39.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:39.12,41.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:42.3,42.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:48.47,49.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:49.32,51.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:62.47,63.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:63.18,65.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:66.2,66.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:66.27,68.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:69.2,69.55 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:72.105,75.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:75.22,79.3 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:80.2,86.22 4 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:86.22,88.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:90.2,91.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:91.16,92.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:92.19,93.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:93.23,95.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:96.4,96.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:98.3,98.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:101.2,101.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:101.19,102.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:102.19,103.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:103.23,105.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:106.4,106.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:108.3,108.71 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:111.2,112.79 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:115.59,117.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:122.92,123.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:123.16,125.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:127.2,128.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:128.25,130.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:132.2,136.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:63.45,64.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:64.23,66.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:68.2,68.21 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:68.21,70.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:72.2,73.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:73.20,80.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:82.2,83.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:83.16,85.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:87.2,103.15 12 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:107.47,107.69 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:110.48,110.70 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:113.46,113.67 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:116.39,116.56 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:119.40,119.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:122.43,122.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:125.37,125.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:128.37,128.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:131.43,131.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:134.43,134.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:137.32,138.24 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:138.24,140.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:141.2,141.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:32.33,32.65 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:35.38,35.75 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:38.36,38.71 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:41.41,41.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:44.40,44.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:47.41,47.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:50.34,50.67 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:53.38,53.75 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:57.33,57.65 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:60.40,60.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:10.36,11.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:11.16,13.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:14.2,14.13 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:15.32,16.85 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:17.24,18.78 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:19.10,20.77 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:24.69,26.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:28.140,30.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:30.16,32.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:33.2,39.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:39.16,41.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:42.2,42.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:45.92,50.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:50.16,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:53.2,53.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:56.110,60.19 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:60.19,61.24 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:61.24,63.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:64.3,64.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:64.25,66.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:67.3,68.44 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:71.2,72.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:72.16,74.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:76.2,77.44 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:77.44,79.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:80.2,80.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:83.83,88.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:88.16,90.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:91.2,91.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:94.169,101.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:101.16,103.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:104.2,107.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:110.169,117.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:117.16,119.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:120.2,123.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:126.112,131.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:131.16,133.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:135.2,136.44 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:136.44,138.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:139.2,139.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:142.119,144.47 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:144.47,146.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:148.2,149.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:149.16,151.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:153.2,153.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:153.37,155.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:156.2,156.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:156.37,158.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:159.2,159.40 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:159.40,161.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:163.2,166.6 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:166.6,167.10 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:168.21,169.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:170.19,172.18 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:172.18,174.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:175.4,175.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:175.39,177.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:178.4,178.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:178.39,180.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:181.4,181.42 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:181.42,183.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:188.132,189.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:189.16,191.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:193.2,194.19 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:194.19,196.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:199.2,200.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:200.16,202.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:204.2,210.16 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:210.16,213.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:215.2,216.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:216.16,219.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:221.2,224.12 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:224.12,229.7 5 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:229.7,230.100 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:230.100,233.16 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:233.16,236.6 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:236.11,236.55 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:236.55,238.6 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:239.5,239.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:240.66,240.66 0 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:241.19,242.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:245.5,245.115 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:245.115,248.6 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:250.4,252.22 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:252.22,253.26 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:253.26,254.13 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:255.90,255.90 0 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:256.20,256.20 0 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:259.5,259.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:264.2,264.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:267.124,270.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:270.16,272.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:274.2,282.27 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:282.27,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:286.2,287.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:287.16,289.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:290.2,290.48 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/ssh.go:26.50,27.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/ssh.go:27.31,29.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:12.37,17.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:22.107,24.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:25.109,27.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:28.135,30.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:35.72,37.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:38.74,40.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:45.70,47.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:52.93,54.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:55.80,57.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:58.98,60.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:61.93,63.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:64.70,66.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:67.93,69.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:70.53,70.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:71.53,71.78 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:76.104,78.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:79.86,81.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:82.106,84.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:85.117,87.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:88.102,90.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:91.77,93.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:98.94,100.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:101.104,103.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:104.89,106.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:107.79,109.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:114.110,116.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:117.89,119.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:120.107,122.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:123.72,125.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:130.86,132.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:133.79,135.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:136.115,138.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:143.117,145.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:146.112,148.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:153.89,155.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:156.76,158.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:159.104,161.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:166.106,168.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:169.99,171.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:172.83,174.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:175.126,177.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:178.93,180.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:181.99,183.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:184.115,186.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:187.112,189.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:190.100,192.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:193.93,195.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:22.52,23.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:23.32,25.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:40.48,41.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:41.31,43.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:49.35,50.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:50.31,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:57.50,58.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:58.31,60.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:27.81,33.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:35.51,37.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:39.29,40.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:40.23,42.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:42.22,44.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:10.59,11.14 1 56 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:11.14,13.3 1 19 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:14.2,15.22 2 37 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:15.22,17.3 1 38 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:18.2,18.10 1 37 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:23.33,24.14 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:24.14,26.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:27.2,28.11 2 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:33.43,34.14 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:34.14,36.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:37.2,39.10 3 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:44.37,45.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:45.14,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:48.2,50.10 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:53.53,54.14 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:54.14,56.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:57.2,57.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:60.62,61.14 1 7 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:61.14,63.3 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:64.2,64.30 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:30.37,31.16 1 14 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:31.16,33.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:35.2,36.9 2 12 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:36.9,38.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:40.2,40.27 1 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:40.27,42.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:44.2,45.13 2 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:45.13,47.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:49.2,53.3 1 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:14.60,15.14 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:15.14,17.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:18.2,25.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:31.72,32.14 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:32.14,34.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:35.2,38.40 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:38.40,40.26 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:40.26,41.58 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:41.58,43.5 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:46.2,46.15 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:14.85,15.14 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:18.2,21.43 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:21.43,23.26 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:23.26,24.17 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:24.17,26.5 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:29.2,29.44 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:29.44,31.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:31.26,32.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:32.16,34.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:37.2,37.15 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:41.83,42.14 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:42.14,44.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:45.2,48.26 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:48.26,50.30 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:50.30,52.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:54.2,54.25 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:54.25,56.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:56.29,58.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:60.2,60.15 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:65.91,85.36 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:85.36,87.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:88.2,88.58 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:88.58,92.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:93.2,93.44 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:93.44,96.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:97.2,97.45 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:97.45,99.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:100.2,100.44 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:100.44,102.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:102.27,103.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:103.16,105.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:108.2,108.46 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:108.46,110.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:110.26,111.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:111.16,113.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:116.2,116.58 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:116.58,118.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:118.25,119.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:119.16,121.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:124.2,124.15 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:127.90,147.19 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:147.19,149.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:150.2,150.33 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:150.33,154.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:155.2,155.23 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:155.23,158.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:159.2,159.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:159.28,161.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:162.2,162.23 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:162.23,164.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:164.27,166.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:168.2,168.27 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:168.27,170.31 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:170.31,172.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:174.2,174.41 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:174.41,176.48 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:176.48,178.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:180.2,180.15 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:185.51,187.33 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:187.33,196.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:196.36,198.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:199.3,199.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:199.37,201.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:203.2,203.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:206.50,208.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:208.20,217.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:217.29,219.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:220.3,220.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:220.30,222.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:224.2,224.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:229.63,239.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:239.36,241.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:242.2,242.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:245.62,254.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:254.22,256.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:257.2,257.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:257.23,259.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:260.2,260.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:265.93,266.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:266.17,268.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:269.2,270.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:270.22,271.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:271.15,276.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:278.2,278.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:281.91,282.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:282.17,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:285.2,286.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:286.22,291.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:292.2,292.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:296.97,298.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:300.95,302.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:306.82,312.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:314.81,320.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:324.64,325.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:325.14,327.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:328.2,331.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:334.62,335.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:335.14,337.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:338.2,341.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:15.74,16.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:17.45,18.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:19.44,20.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:21.44,22.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:23.48,24.42 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:25.10,26.43 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:31.72,32.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:33.37,34.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:35.36,36.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:37.36,38.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:39.40,40.50 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:41.10,42.51 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:49.65,50.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:50.14,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:53.2,72.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:78.76,79.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:79.14,81.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:82.2,87.46 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:87.46,89.28 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:89.28,90.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:90.62,92.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:95.2,95.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:102.73,103.14 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:103.14,105.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:106.2,112.45 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:112.45,114.24 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:114.24,115.68 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:115.68,117.5 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:120.2,120.15 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:125.71,126.14 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:126.14,128.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:129.2,135.30 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:135.30,137.39 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:137.39,139.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:141.2,141.15 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:144.82,145.14 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:145.14,147.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:148.2,152.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:155.80,156.14 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:156.14,158.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:159.2,163.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:166.76,167.14 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:167.14,169.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:170.2,172.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:175.74,176.14 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:176.14,178.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:179.2,181.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:184.73,185.14 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:185.14,187.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:188.2,191.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:194.71,195.14 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:195.14,197.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:198.2,201.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:207.95,208.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:208.14,210.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:211.2,219.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:225.98,226.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:226.14,228.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:229.2,232.72 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:232.72,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:235.2,235.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:241.83,242.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:242.14,244.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:245.2,248.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:254.93,255.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:255.14,257.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:258.2,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:269.74,270.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:270.14,272.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:273.2,276.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:282.78,283.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:283.14,285.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:286.2,288.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:294.83,295.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:295.14,297.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:298.2,303.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:14.56,15.14 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:15.14,17.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:19.2,27.36 2 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:27.36,36.3 8 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:38.2,38.63 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:38.63,40.30 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:40.30,42.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:45.2,45.59 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:45.59,47.29 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:47.29,53.4 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:56.2,56.15 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:60.54,61.14 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:61.14,63.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:65.2,82.41 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:82.41,84.48 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:84.48,86.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:89.2,89.39 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:89.39,91.46 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:91.46,97.4 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:100.2,100.15 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:15.53,16.14 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:16.14,18.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:20.2,22.36 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:22.36,31.3 8 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:33.2,33.38 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:33.38,35.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:37.2,37.44 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:37.44,39.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:39.8,41.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:43.2,43.15 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:46.67,54.45 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:54.45,66.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:68.2,68.53 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:68.53,69.57 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:69.57,71.4 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:74.2,74.15 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:77.75,87.43 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:87.43,95.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:97.2,97.15 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:101.70,102.15 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:103.50,104.35 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:105.43,106.28 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:107.43,108.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:109.46,110.31 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:111.45,112.30 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:113.10,114.30 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:119.68,120.15 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:121.33,122.52 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:123.26,124.45 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:125.26,126.45 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:127.29,128.48 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:129.28,130.47 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:131.10,132.47 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:137.60,138.14 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:138.14,140.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:142.2,143.16 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:143.16,145.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:147.2,159.8 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:163.75,164.17 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:164.17,166.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:168.2,175.26 2 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:175.26,177.17 2 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:177.17,179.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:180.3,181.17 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:181.17,183.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:184.3,194.4 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:197.2,197.26 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:197.26,203.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:205.2,205.20 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:10.41,11.13 1 12 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:11.13,13.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:14.2,14.33 1 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:19.40,20.16 1 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:20.16,22.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:23.2,23.22 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:28.45,29.13 1 7 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:29.13,31.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:32.2,33.11 2 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:38.44,39.14 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:39.14,41.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:42.2,42.22 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:31.117,33.43 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:33.43,36.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:36.8,38.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:39.2,41.18 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:41.18,43.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:43.8,43.26 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:43.26,45.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:45.17,47.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:48.3,48.60 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:49.8,51.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:53.2,53.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:53.17,54.54 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:54.54,56.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:57.3,57.56 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:60.2,61.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:61.16,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:64.2,64.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:67.84,73.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:73.22,75.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:75.17,77.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:78.3,79.39 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:79.39,81.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:82.3,82.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:85.2,85.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:85.45,87.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:87.17,89.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:90.3,90.51 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:91.8,91.52 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:91.52,93.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:95.2,95.43 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:30.36,31.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:32.21,33.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:34.26,35.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:36.24,37.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:38.29,39.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:40.28,41.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:42.29,43.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:44.22,45.21 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:46.21,47.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:48.26,49.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:50.21,51.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:52.28,53.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:54.10,55.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:66.38,68.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:70.38,72.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:75.33,77.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:80.38,82.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:85.36,87.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:90.41,92.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:95.40,97.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:100.41,102.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:105.34,107.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:110.38,112.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:116.33,118.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:121.40,123.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:125.46,126.16 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:126.16,128.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:129.2,130.25 2 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:130.25,132.3 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:133.2,133.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:44.39,45.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:45.28,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:51.42,52.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:52.28,54.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:58.50,59.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:59.28,61.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:65.46,66.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:66.28,68.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:72.50,74.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:74.27,76.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:77.2,77.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:81.36,83.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:86.39,88.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:91.40,93.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:96.39,98.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:25.43,26.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:27.35,28.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:29.31,30.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:31.30,32.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:33.30,34.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:35.34,36.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:37.10,38.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:223.53,224.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:224.33,226.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:230.65,232.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:232.27,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:235.2,235.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:239.48,241.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:252.52,253.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:253.35,255.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:259.71,261.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:261.27,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:264.2,264.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:268.58,270.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:281.50,282.34 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:282.34,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:288.68,290.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:290.27,292.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:293.2,293.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:297.44,299.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:311.47,312.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:312.35,314.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:318.49,319.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:319.35,321.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:325.71,327.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:327.27,329.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:330.2,330.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:334.43,336.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:339.44,341.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/ssh.go:31.37,34.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:19.28,21.2 1 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:23.96,25.2 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:27.50,29.2 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:36.45,38.2 1 7 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:40.101,44.2 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:46.55,48.2 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:30.91,31.17 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:31.17,33.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:34.2,34.23 1 12 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:34.23,36.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:39.2,40.28 2 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:40.28,41.14 1 12 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:41.14,42.12 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:44.3,44.37 1 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:47.2,47.26 1 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:47.26,49.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:51.2,54.8 1 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:59.110,61.16 2 7 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:61.16,63.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:67.2,68.27 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:68.27,70.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:72.2,74.20 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:78.60,80.2 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:29.43,33.2 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:37.48,38.32 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:38.32,39.12 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:39.12,41.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:42.3,42.15 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:48.47,49.32 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:49.32,51.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:62.47,63.18 1 1045 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:63.18,65.3 1 23 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:66.2,66.27 1 1022 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:66.27,68.3 1 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:69.2,69.55 1 1012 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:72.105,75.22 2 1027 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:75.22,79.3 3 1009 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:80.2,86.22 4 18 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:86.22,88.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:90.2,91.16 2 17 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:91.16,92.19 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:92.19,93.23 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:93.23,95.5 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:96.4,96.81 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:98.3,98.18 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:101.2,101.19 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:101.19,102.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:102.19,103.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:103.23,105.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:106.4,106.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:108.3,108.71 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:111.2,112.79 2 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:115.59,117.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:122.92,123.16 1 14 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:123.16,125.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:127.2,128.25 2 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:128.25,130.3 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:132.2,136.8 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:63.45,64.23 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:64.23,66.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:68.2,68.21 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:68.21,70.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:72.2,73.20 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:73.20,80.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:82.2,83.16 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:83.16,85.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:87.2,103.15 12 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:107.47,107.69 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:110.48,110.70 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:113.46,113.67 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:116.39,116.56 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:119.40,119.58 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:122.43,122.62 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:125.37,125.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:128.37,128.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:131.43,131.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:134.43,134.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:137.32,138.24 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:138.24,140.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:141.2,141.19 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:32.33,32.65 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:35.38,35.75 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:38.36,38.71 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:41.41,41.81 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:44.40,44.79 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:47.41,47.81 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:50.34,50.67 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:53.38,53.75 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:57.33,57.65 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:60.40,60.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:10.36,11.16 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:11.16,13.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:14.2,14.13 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:15.32,16.85 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:17.24,18.78 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:19.10,20.77 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:24.69,26.2 1 44 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:28.140,30.16 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:30.16,32.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:33.2,39.16 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:39.16,41.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:42.2,42.59 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:45.92,50.16 2 34 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:50.16,52.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:53.2,53.59 1 30 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:56.110,60.19 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:60.19,61.24 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:61.24,63.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:64.3,64.25 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:64.25,66.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:67.3,68.44 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:71.2,72.16 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:72.16,74.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:76.2,77.44 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:77.44,79.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:80.2,80.23 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:83.83,88.16 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:88.16,90.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:91.2,91.12 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:94.169,101.16 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:101.16,103.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:104.2,107.8 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:110.169,117.16 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:117.16,119.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:120.2,123.8 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:126.112,131.16 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:131.16,133.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:135.2,136.44 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:136.44,138.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:139.2,139.23 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:142.119,144.47 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:144.47,146.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:148.2,149.16 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:149.16,151.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:153.2,153.37 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:153.37,155.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:156.2,156.37 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:156.37,158.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:159.2,159.40 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:159.40,161.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:163.2,166.6 3 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:166.6,167.10 1 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:168.21,169.39 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:170.19,172.18 2 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:172.18,174.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:175.4,175.39 1 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:175.39,177.5 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:178.4,178.39 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:178.39,180.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:181.4,181.42 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:181.42,183.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:188.132,189.16 1 12 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:189.16,191.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:193.2,194.19 2 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:194.19,196.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:199.2,200.16 2 11 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:200.16,202.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:204.2,210.16 3 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:210.16,213.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:215.2,216.16 2 10 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:216.16,219.3 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:221.2,224.12 3 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:224.12,229.7 5 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:229.7,230.100 1 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:230.100,233.16 3 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:233.16,236.6 2 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:236.11,236.55 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:236.55,238.6 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:239.5,239.12 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:240.66,240.66 0 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:241.19,242.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:245.5,245.115 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:245.115,248.6 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:250.4,252.22 3 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:252.22,253.26 1 7 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:253.26,254.13 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:255.90,255.90 0 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:256.20,256.20 0 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:259.5,259.11 1 7 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:264.2,264.15 1 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:267.124,270.16 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:270.16,272.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:274.2,282.27 3 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:282.27,284.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:286.2,287.16 2 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:287.16,289.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:290.2,290.48 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/ssh.go:26.50,27.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/ssh.go:27.31,29.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:12.37,17.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:22.107,24.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:25.109,27.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:28.135,30.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:35.72,37.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:38.74,40.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:45.70,47.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:52.93,54.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:55.80,57.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:58.98,60.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:61.93,63.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:64.70,66.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:67.93,69.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:70.53,70.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:71.53,71.78 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:76.104,78.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:79.86,81.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:82.106,84.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:85.117,87.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:88.102,90.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:91.77,93.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:98.94,100.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:101.104,103.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:104.89,106.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:107.79,109.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:114.110,116.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:117.89,119.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:120.107,122.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:123.72,125.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:130.86,132.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:133.79,135.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:136.115,138.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:143.117,145.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:146.112,148.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:153.89,155.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:156.76,158.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:159.104,161.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:166.106,168.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:169.99,171.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:172.83,174.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:175.126,177.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:178.93,180.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:181.99,183.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:184.115,186.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:187.112,189.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:190.100,192.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:193.93,195.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:22.52,23.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:23.32,25.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:40.48,41.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:41.31,43.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:49.35,50.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:50.31,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:57.50,58.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:58.31,60.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:27.81,33.2 1 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:35.51,37.2 1 25 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:39.29,40.23 1 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:40.23,42.22 2 12 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:42.22,44.4 1 9 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:10.59,11.14 1 113 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:11.14,13.3 1 110 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:14.2,15.22 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:15.22,17.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:18.2,18.10 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:23.33,24.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:24.14,26.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:27.2,28.11 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:33.43,34.14 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:34.14,36.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:37.2,39.10 3 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:44.37,45.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:45.14,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:48.2,50.10 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:53.53,54.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:54.14,56.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:57.2,57.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:60.62,61.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:61.14,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:64.2,64.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:30.37,31.16 1 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:31.16,33.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:35.2,36.9 2 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:36.9,38.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:40.2,40.27 1 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:40.27,42.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:44.2,45.13 2 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:45.13,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:49.2,53.3 1 15 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:14.60,15.14 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:18.2,25.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:31.72,32.14 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:32.14,34.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:35.2,38.40 2 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:38.40,40.26 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:40.26,41.58 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:41.58,43.5 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:46.2,46.15 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:14.85,15.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:18.2,21.43 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:21.43,23.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:23.26,24.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:24.17,26.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:29.2,29.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:29.44,31.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:31.26,32.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:32.16,34.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:37.2,37.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:41.83,42.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:42.14,44.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:45.2,48.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:48.26,50.30 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:50.30,52.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:54.2,54.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:54.25,56.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:56.29,58.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:60.2,60.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:65.91,85.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:85.36,87.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:88.2,88.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:88.58,92.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:93.2,93.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:93.44,96.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:97.2,97.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:97.45,99.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:100.2,100.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:100.44,102.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:102.27,103.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:103.16,105.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:108.2,108.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:108.46,110.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:110.26,111.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:111.16,113.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:116.2,116.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:116.58,118.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:118.25,119.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:119.16,121.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:124.2,124.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:127.90,147.19 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:147.19,149.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:150.2,150.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:150.33,154.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:155.2,155.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:155.23,158.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:159.2,159.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:159.28,161.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:162.2,162.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:162.23,164.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:164.27,166.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:168.2,168.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:168.27,170.31 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:170.31,172.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:174.2,174.41 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:174.41,176.48 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:176.48,178.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:180.2,180.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:185.51,187.33 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:187.33,196.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:196.36,198.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:199.3,199.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:199.37,201.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:203.2,203.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:206.50,208.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:208.20,217.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:217.29,219.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:220.3,220.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:220.30,222.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:224.2,224.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:229.63,239.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:239.36,241.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:242.2,242.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:245.62,254.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:254.22,256.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:257.2,257.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:257.23,259.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:260.2,260.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:265.93,266.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:266.17,268.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:269.2,270.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:270.22,271.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:271.15,276.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:278.2,278.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:281.91,282.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:282.17,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:285.2,286.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:286.22,291.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:292.2,292.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:296.97,298.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:300.95,302.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:306.82,312.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:314.81,320.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:324.64,325.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:325.14,327.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:328.2,331.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:334.62,335.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:335.14,337.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:338.2,341.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:15.74,16.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:17.45,18.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:19.44,20.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:21.44,22.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:23.48,24.42 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:25.10,26.43 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:31.72,32.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:33.37,34.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:35.36,36.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:37.36,38.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:39.40,40.50 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:41.10,42.51 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:49.65,50.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:50.14,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:53.2,72.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:78.76,79.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:79.14,81.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:82.2,87.46 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:87.46,89.28 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:89.28,90.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:90.62,92.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:95.2,95.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:102.73,103.14 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:103.14,105.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:106.2,112.45 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:112.45,114.24 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:114.24,115.68 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:115.68,117.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:120.2,120.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:125.71,126.14 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:126.14,128.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:129.2,135.30 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:135.30,137.39 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:137.39,139.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:141.2,141.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:144.82,145.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:145.14,147.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:148.2,152.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:155.80,156.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:156.14,158.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:159.2,163.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:166.76,167.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:167.14,169.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:170.2,172.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:175.74,176.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:176.14,178.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:179.2,181.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:184.73,185.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:185.14,187.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:188.2,191.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:194.71,195.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:195.14,197.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:198.2,201.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:207.95,208.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:208.14,210.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:211.2,219.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:225.98,226.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:226.14,228.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:229.2,232.72 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:232.72,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:235.2,235.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:241.83,242.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:242.14,244.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:245.2,248.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:254.93,255.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:255.14,257.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:258.2,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:269.74,270.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:270.14,272.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:273.2,276.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:282.78,283.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:283.14,285.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:286.2,288.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:294.83,295.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:295.14,297.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:298.2,303.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:14.56,15.14 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:19.2,27.36 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:27.36,36.3 8 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:38.2,38.63 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:38.63,40.30 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:40.30,42.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:45.2,45.59 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:45.59,47.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:47.29,53.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:56.2,56.15 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:60.54,61.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:61.14,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:65.2,82.41 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:82.41,84.48 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:84.48,86.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:89.2,89.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:89.39,91.46 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:91.46,97.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:100.2,100.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:15.53,16.14 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:16.14,18.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:20.2,22.36 2 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:22.36,31.3 8 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:33.2,33.38 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:33.38,35.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:37.2,37.44 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:37.44,39.3 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:39.8,41.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:43.2,43.15 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:46.67,54.45 2 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:54.45,66.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:68.2,68.53 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:68.53,69.57 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:69.57,71.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:74.2,74.15 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:77.75,87.43 2 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:87.43,95.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:97.2,97.15 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:101.70,102.15 1 49 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:103.50,104.35 1 25 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:105.43,106.28 1 21 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:107.43,108.28 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:109.46,110.31 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:111.45,112.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:113.10,114.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:119.68,120.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:121.33,122.52 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:123.26,124.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:125.26,126.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:127.29,128.48 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:129.28,130.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:131.10,132.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:137.60,138.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:138.14,140.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:142.2,143.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:143.16,145.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:147.2,159.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:163.75,164.17 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:164.17,166.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:168.2,175.26 2 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:175.26,177.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:177.17,179.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:180.3,181.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:181.17,183.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:184.3,194.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:197.2,197.26 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:197.26,203.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:205.2,205.20 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:10.41,11.13 1 54 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:11.13,13.3 1 50 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:14.2,14.33 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:19.40,20.16 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:20.16,22.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:23.2,23.22 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:28.45,29.13 1 51 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:29.13,31.3 1 51 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:32.2,33.11 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:38.44,39.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:39.14,41.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:42.2,42.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:31.117,33.43 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:33.43,36.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:36.8,38.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:39.2,41.18 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:41.18,43.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:43.8,43.26 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:43.26,45.17 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:45.17,47.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:48.3,48.60 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:49.8,51.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:53.2,53.17 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:53.17,54.54 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:54.54,56.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:57.3,57.56 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:60.2,61.16 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:61.16,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:64.2,64.18 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:67.84,73.22 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:73.22,75.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:75.17,77.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:78.3,79.39 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:79.39,81.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:82.3,82.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:85.2,85.45 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:85.45,87.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:87.17,89.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:90.3,90.51 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:91.8,91.52 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:91.52,93.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:95.2,95.43 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:30.36,31.11 1 14 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:32.21,33.20 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:34.26,35.25 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:36.24,37.23 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:38.29,39.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:40.28,41.27 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:42.29,43.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:44.22,45.21 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:46.21,47.20 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:48.26,49.25 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:50.21,51.20 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:52.28,53.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:54.10,55.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:66.38,68.2 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:70.38,72.2 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:75.33,77.2 1 13 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:80.38,82.2 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:85.36,87.2 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:90.41,92.2 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:95.40,97.2 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:100.41,102.2 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:105.34,107.2 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:110.38,112.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:116.33,118.2 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:121.40,123.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:125.46,126.16 1 38 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:126.16,128.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:129.2,130.25 2 36 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:130.25,132.3 1 28 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:133.2,133.14 1 8 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:44.39,45.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:45.28,47.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:51.42,52.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:52.28,54.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:58.50,59.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:59.28,61.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:65.46,66.28 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:66.28,68.3 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:72.50,74.27 2 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:74.27,76.3 1 4 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:77.2,77.12 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:81.36,83.2 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:86.39,88.2 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:91.40,93.2 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:96.39,98.2 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:25.43,26.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:27.35,28.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:29.31,30.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:31.30,32.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:33.30,34.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:35.34,36.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:37.10,38.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:223.53,224.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:224.33,226.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:230.65,232.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:232.27,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:235.2,235.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:239.48,241.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:252.52,253.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:253.35,255.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:259.71,261.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:261.27,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:264.2,264.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:268.58,270.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:281.50,282.34 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:282.34,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:288.68,290.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:290.27,292.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:293.2,293.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:297.44,299.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:311.47,312.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:312.35,314.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:318.49,319.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:319.35,321.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:325.71,327.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:327.27,329.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:330.2,330.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:334.43,336.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:339.44,341.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/ssh.go:31.37,34.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:19.28,21.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:23.96,25.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:27.50,29.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:36.45,38.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:40.101,44.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth.go:46.55,48.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:30.91,31.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:31.17,33.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:34.2,34.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:34.23,36.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:39.2,40.28 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:40.28,41.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:41.14,42.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:44.3,44.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:47.2,47.26 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:47.26,49.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:51.2,54.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:59.110,61.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:61.16,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:67.2,68.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:68.27,70.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:72.2,74.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_extra.go:78.60,80.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:29.43,33.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:37.48,38.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:38.32,39.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:39.12,41.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:42.3,42.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:48.47,49.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:49.32,51.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:62.47,63.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:63.18,65.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:66.2,66.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:66.27,68.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:69.2,69.55 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:72.105,75.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:75.22,79.3 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:80.2,86.22 4 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:86.22,88.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:90.2,91.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:91.16,92.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:92.19,93.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:93.23,95.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:96.4,96.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:98.3,98.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:101.2,101.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:101.19,102.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:102.19,103.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:103.23,105.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:106.4,106.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:108.3,108.71 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:111.2,112.79 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:115.59,117.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:122.92,123.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:123.16,125.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:127.2,128.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:128.25,130.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/auth_refresh.go:132.2,136.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:63.45,64.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:64.23,66.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:68.2,68.21 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:68.21,70.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:72.2,73.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:73.20,80.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:82.2,83.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:83.16,85.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:87.2,103.15 12 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:107.47,107.69 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:110.48,110.70 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:113.46,113.67 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:116.39,116.56 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:119.40,119.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:122.43,122.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:125.37,125.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:128.37,128.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:131.43,131.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:134.43,134.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:137.32,138.24 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:138.24,140.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/client.go:141.2,141.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:32.33,32.65 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:35.38,35.75 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:38.36,38.71 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:41.41,41.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:44.40,44.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:47.41,47.81 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:50.34,50.67 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:53.38,53.75 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:57.33,57.65 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/errors.go:60.40,60.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:10.36,11.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:11.16,13.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:14.2,14.13 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:15.32,16.85 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:17.24,18.78 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/grpc_errors.go:19.10,20.77 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:24.69,26.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:28.140,30.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:30.16,32.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:33.2,39.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:39.16,41.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:42.2,42.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:45.92,50.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:50.16,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:53.2,53.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:56.110,60.19 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:60.19,61.24 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:61.24,63.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:64.3,64.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:64.25,66.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:67.3,68.44 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:71.2,72.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:72.16,74.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:76.2,77.44 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:77.44,79.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:80.2,80.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:83.83,88.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:88.16,90.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:91.2,91.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:94.169,101.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:101.16,103.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:104.2,107.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:110.169,117.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:117.16,119.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:120.2,123.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:126.112,131.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:131.16,133.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:135.2,136.44 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:136.44,138.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:139.2,139.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:142.119,144.47 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:144.47,146.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:148.2,149.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:149.16,151.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:153.2,153.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:153.37,155.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:156.2,156.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:156.37,158.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:159.2,159.40 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:159.40,161.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:163.2,166.6 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:166.6,167.10 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:168.21,169.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:170.19,172.18 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:172.18,174.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:175.4,175.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:175.39,177.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:178.4,178.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:178.39,180.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:181.4,181.42 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:181.42,183.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:188.132,189.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:189.16,191.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:193.2,194.19 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:194.19,196.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:199.2,200.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:200.16,202.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:204.2,210.16 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:210.16,213.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:215.2,216.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:216.16,219.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:221.2,224.12 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:224.12,229.7 5 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:229.7,230.100 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:230.100,233.16 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:233.16,236.6 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:236.11,236.55 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:236.55,238.6 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:239.5,239.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:240.66,240.66 0 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:241.19,242.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:245.5,245.115 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:245.115,248.6 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:250.4,252.22 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:252.22,253.26 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:253.26,254.13 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:255.90,255.90 0 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:256.20,256.20 0 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:259.5,259.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:264.2,264.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:267.124,270.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:270.16,272.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:274.2,282.27 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:282.27,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:286.2,287.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:287.16,289.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/sandbox_client.go:290.2,290.48 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/ssh.go:26.50,27.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/ssh.go:27.31,29.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:12.37,17.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:22.107,24.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:25.109,27.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:28.135,30.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:35.72,37.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:38.74,40.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:45.70,47.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:52.93,54.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:55.80,57.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:58.98,60.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:61.93,63.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:64.70,66.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:67.93,69.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:70.53,70.79 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:71.53,71.78 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:76.104,78.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:79.86,81.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:82.106,84.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:85.117,87.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:88.102,90.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:91.77,93.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:98.94,100.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:101.104,103.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:104.89,106.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:107.79,109.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:114.110,116.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:117.89,119.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:120.107,122.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:123.72,125.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:130.86,132.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:133.79,135.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:136.115,138.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:143.117,145.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:146.112,148.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:153.89,155.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:156.76,158.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:159.104,161.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:166.106,168.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:169.99,171.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:172.83,174.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:175.126,177.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:178.93,180.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:181.99,183.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:184.115,186.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:187.112,189.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:190.100,192.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/stub_clients.go:193.93,195.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:22.52,23.32 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:23.32,25.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:40.48,41.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:41.31,43.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:49.35,50.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:50.31,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:57.50,58.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/tcp.go:58.31,60.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:27.81,33.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:35.51,37.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:39.29,40.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:40.23,42.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/watch.go:42.22,44.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:10.59,11.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:11.14,13.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:14.2,15.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:15.22,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:18.2,18.10 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:23.33,24.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:24.14,26.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:27.2,28.11 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:33.43,34.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:34.14,36.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:37.2,39.10 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:44.37,45.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:45.14,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:48.2,50.10 3 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:53.53,54.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:54.14,56.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:57.2,57.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:60.62,61.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:61.14,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/copy.go:64.2,64.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:30.37,31.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:31.16,33.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:35.2,36.9 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:36.9,38.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:40.2,40.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:40.27,42.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:44.2,45.13 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:45.13,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/errors.go:49.2,53.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:14.60,15.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:18.2,25.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:31.72,32.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:32.14,34.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:35.2,38.40 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:38.40,40.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:40.26,41.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:41.58,43.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/log.go:46.2,46.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:14.85,15.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:18.2,21.43 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:21.43,23.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:23.26,24.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:24.17,26.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:29.2,29.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:29.44,31.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:31.26,32.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:32.16,34.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:37.2,37.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:41.83,42.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:42.14,44.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:45.2,48.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:48.26,50.30 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:50.30,52.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:54.2,54.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:54.25,56.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:56.29,58.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:60.2,60.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:65.91,85.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:85.36,87.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:88.2,88.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:88.58,92.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:93.2,93.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:93.44,96.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:97.2,97.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:97.45,99.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:100.2,100.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:100.44,102.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:102.27,103.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:103.16,105.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:108.2,108.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:108.46,110.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:110.26,111.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:111.16,113.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:116.2,116.58 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:116.58,118.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:118.25,119.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:119.16,121.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:124.2,124.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:127.90,147.19 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:147.19,149.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:150.2,150.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:150.33,154.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:155.2,155.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:155.23,158.3 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:159.2,159.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:159.28,161.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:162.2,162.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:162.23,164.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:164.27,166.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:168.2,168.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:168.27,170.31 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:170.31,172.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:174.2,174.41 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:174.41,176.48 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:176.48,178.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:180.2,180.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:185.51,187.33 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:187.33,196.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:196.36,198.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:199.3,199.37 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:199.37,201.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:203.2,203.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:206.50,208.20 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:208.20,217.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:217.29,219.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:220.3,220.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:220.30,222.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:224.2,224.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:229.63,239.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:239.36,241.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:242.2,242.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:245.62,254.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:254.22,256.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:257.2,257.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:257.23,259.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:260.2,260.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:265.93,266.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:266.17,268.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:269.2,270.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:270.22,271.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:271.15,276.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:278.2,278.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:281.91,282.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:282.17,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:285.2,286.22 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:286.22,291.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:292.2,292.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:296.97,298.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:300.95,302.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:306.82,312.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:314.81,320.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:324.64,325.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:325.14,327.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:328.2,331.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:334.62,335.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:335.14,337.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/network_policy.go:338.2,341.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:15.74,16.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:17.45,18.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:19.44,20.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:21.44,22.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:23.48,24.42 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:25.10,26.43 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:31.72,32.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:33.37,34.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:35.36,36.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:37.36,38.46 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:39.40,40.50 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:41.10,42.51 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:49.65,50.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:50.14,52.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:53.2,72.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:78.76,79.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:79.14,81.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:82.2,87.46 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:87.46,89.28 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:89.28,90.62 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:90.62,92.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:95.2,95.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:102.73,103.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:103.14,105.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:106.2,112.45 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:112.45,114.24 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:114.24,115.68 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:115.68,117.5 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:120.2,120.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:125.71,126.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:126.14,128.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:129.2,135.30 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:135.30,137.39 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:137.39,139.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:141.2,141.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:144.82,145.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:145.14,147.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:148.2,152.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:155.80,156.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:156.14,158.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:159.2,163.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:166.76,167.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:167.14,169.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:170.2,172.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:175.74,176.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:176.14,178.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:179.2,181.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:184.73,185.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:185.14,187.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:188.2,191.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:194.71,195.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:195.14,197.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:198.2,201.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:207.95,208.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:208.14,210.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:211.2,219.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:225.98,226.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:226.14,228.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:229.2,232.72 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:232.72,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:235.2,235.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:241.83,242.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:242.14,244.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:245.2,248.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:254.93,255.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:255.14,257.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:258.2,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:269.74,270.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:270.14,272.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:273.2,276.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:282.78,283.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:283.14,285.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:286.2,288.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:294.83,295.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:295.14,297.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/policy.go:298.2,303.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:14.56,15.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:15.14,17.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:19.2,27.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:27.36,36.3 8 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:38.2,38.63 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:38.63,40.30 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:40.30,42.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:45.2,45.59 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:45.59,47.29 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:47.29,53.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:56.2,56.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:60.54,61.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:61.14,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:65.2,82.41 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:82.41,84.48 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:84.48,86.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:89.2,89.39 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:89.39,91.46 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:91.46,97.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/provider.go:100.2,100.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:15.53,16.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:16.14,18.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:20.2,22.36 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:22.36,31.3 8 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:33.2,33.38 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:33.38,35.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:37.2,37.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:37.44,39.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:39.8,41.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:43.2,43.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:46.67,54.45 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:54.45,66.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:68.2,68.53 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:68.53,69.57 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:69.57,71.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:74.2,74.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:77.75,87.43 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:87.43,95.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:97.2,97.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:101.70,102.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:103.50,104.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:105.43,106.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:107.43,108.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:109.46,110.31 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:111.45,112.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:113.10,114.30 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:119.68,120.15 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:121.33,122.52 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:123.26,124.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:125.26,126.45 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:127.29,128.48 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:129.28,130.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:131.10,132.47 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:137.60,138.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:138.14,140.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:142.2,143.16 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:143.16,145.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:147.2,159.8 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:163.75,164.17 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:164.17,166.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:168.2,175.26 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:175.26,177.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:177.17,179.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:180.3,181.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:181.17,183.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:184.3,194.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:197.2,197.26 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:197.26,203.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/sandbox.go:205.2,205.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:10.41,11.13 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:11.13,13.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:14.2,14.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:19.40,20.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:20.16,22.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:23.2,23.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:28.45,29.13 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:29.13,31.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:32.2,33.11 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:38.44,39.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:39.14,41.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/converter/time.go:42.2,42.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:31.117,33.43 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:33.43,36.3 2 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:36.8,38.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:39.2,41.18 2 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:41.18,43.3 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:43.8,43.26 1 3 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:43.26,45.17 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:45.17,47.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:48.3,48.60 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:49.8,51.3 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:53.2,53.17 1 6 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:53.17,54.54 1 2 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:54.54,56.4 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:57.3,57.56 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:60.2,61.16 2 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:61.16,63.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:64.2,64.18 1 5 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:67.84,73.22 2 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:73.22,75.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:75.17,77.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:78.3,79.39 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:79.39,81.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:82.3,82.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:85.2,85.45 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:85.45,87.17 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:87.17,89.4 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:90.3,90.51 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:91.8,91.52 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:91.52,93.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/internal/grpc/conn.go:95.2,95.43 1 1 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:30.36,31.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:32.21,33.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:34.26,35.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:36.24,37.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:38.29,39.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:40.28,41.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:42.29,43.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:44.22,45.21 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:46.21,47.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:48.26,49.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:50.21,51.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:52.28,53.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:54.10,55.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:66.38,68.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:70.38,72.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:75.33,77.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:80.38,82.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:85.36,87.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:90.41,92.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:95.40,97.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:100.41,102.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:105.34,107.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:110.38,112.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:116.33,118.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:121.40,123.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:125.46,126.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:126.16,128.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:129.2,130.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:130.25,132.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:133.2,133.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:44.39,45.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:45.28,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:51.42,52.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:52.28,54.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:58.50,59.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:59.28,61.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:65.46,66.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:66.28,68.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:72.50,74.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:74.27,76.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:77.2,77.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:81.36,83.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:86.39,88.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:91.40,93.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:96.39,98.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:25.43,26.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:27.35,28.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:29.31,30.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:31.30,32.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:33.30,34.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:35.34,36.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:37.10,38.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:223.53,224.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:224.33,226.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:230.65,232.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:232.27,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:235.2,235.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:239.48,241.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:252.52,253.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:253.35,255.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:259.71,261.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:261.27,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:264.2,264.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:268.58,270.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:281.50,282.34 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:282.34,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:288.68,290.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:290.27,292.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:293.2,293.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:297.44,299.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:311.47,312.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:312.35,314.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:318.49,319.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:319.35,321.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:325.71,327.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:327.27,329.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:330.2,330.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:334.43,336.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:339.44,341.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/ssh.go:31.37,34.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:30.36,31.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:32.21,33.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:34.26,35.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:36.24,37.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:38.29,39.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:40.28,41.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:42.29,43.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:44.22,45.21 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:46.21,47.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:48.26,49.25 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:50.21,51.20 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:52.28,53.27 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:54.10,55.44 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:66.38,68.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:70.38,72.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:75.33,77.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:80.38,82.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:85.36,87.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:90.41,92.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:95.40,97.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:100.41,102.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:105.34,107.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:110.38,112.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:116.33,118.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:121.40,123.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:125.46,126.16 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:126.16,128.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:129.2,130.25 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:130.25,132.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/errors.go:133.2,133.14 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:44.39,45.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:45.28,47.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:51.42,52.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:52.28,54.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:58.50,59.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:59.28,61.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:65.46,66.28 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:66.28,68.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:72.50,74.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:74.27,76.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:77.2,77.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:81.36,83.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:86.39,88.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:91.40,93.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/log.go:96.39,98.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:25.43,26.11 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:27.35,28.23 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:29.31,30.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:31.30,32.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:33.30,34.18 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:35.34,36.22 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:37.10,38.19 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:223.53,224.33 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:224.33,226.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:230.65,232.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:232.27,234.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:235.2,235.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:239.48,241.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:252.52,253.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:253.35,255.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:259.71,261.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:261.27,263.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:264.2,264.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:268.58,270.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:281.50,282.34 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:282.34,284.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:288.68,290.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:290.27,292.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:293.2,293.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:297.44,299.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:311.47,312.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:312.35,314.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:318.49,319.35 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:319.35,321.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:325.71,327.27 2 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:327.27,329.3 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:330.2,330.12 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:334.43,336.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/policy.go:339.44,341.2 1 0 +github.com/NVIDIA/OpenShell/sdk/go/openshell/v1/types/ssh.go:31.37,34.2 1 0