prompt
stringlengths 727
946
| symbol_a
stringlengths 83
175
| symbol_b
stringlengths 51
147
| symbol_a_name
stringlengths 3
73
| symbol_b_name
stringlengths 2
60
| is_linked
bool 2
classes | hop_count
int64 1
5
⌀ | ground_truth_path
listlengths 2
6
⌀ | repo_name
stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|
In cli/cli, determine if `TestStartSSHServerFailure` and `Background` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/TestStartSSHServerFailure().`
- Symbol B: `scip-go gomod github.com/golang/go/src . context/Background().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/TestStartSSHServerFailure().
|
scip-go gomod github.com/golang/go/src . context/Background().
|
TestStartSSHServerFailure
|
Background
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/TestStartSSHServerFailure().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/codespaces/rpc`/createTestInvoker().",
"scip-go gomod github.com/golang/go/src . context/Background()."
] |
cli/cli
|
In cli/cli, determine if `parseFields` and `IOStreams#ColorScheme` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/run`/parseFields().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/run`/parseFields().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().
|
parseFields
|
IOStreams#ColorScheme
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdeditItem` and `StringEnumFlag` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/TestNewCmdeditItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/StringEnumFlag().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/TestNewCmdeditItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/StringEnumFlag().
|
TestNewCmdeditItem
|
StringEnumFlag
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/TestNewCmdeditItem().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/NewCmdEditItem().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/AddFormatFlags().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/StringEnumFlag()."
] |
cli/cli
|
In cli/cli, determine if `runDownload` and `Command#MarkFlagsOneRequired` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/download`/runDownload().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#MarkFlagsOneRequired().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/download`/runDownload().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#MarkFlagsOneRequired().
|
runDownload
|
Command#MarkFlagsOneRequired
| false
| null | null |
cli/cli
|
In cli/cli, determine if `repoFromPath` and `Join` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/repoFromPath().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `path/filepath`/Join().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/repoFromPath().
|
scip-go gomod github.com/golang/go/src . `path/filepath`/Join().
|
repoFromPath
|
Join
| false
| null | null |
cli/cli
|
In cli/cli, determine if `runCommand` and `NoError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/runCommand().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/runCommand().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().
|
runCommand
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#userOrgLogins` and `Client#OwnerIDAndType` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#userOrgLogins().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#userOrgLogins().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#OwnerIDAndType().
|
Client#userOrgLogins
|
Client#OwnerIDAndType
| false
| null | null |
cli/cli
|
In cli/cli, determine if `verifyCertExtensions` and `New` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/verifyCertExtensions().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/New().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/verification`/verifyCertExtensions().
|
scip-go gomod github.com/golang/go/src . errors/New().
|
verifyCertExtensions
|
New
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#UpdateRemoteURL` and `EqualError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#UpdateRemoteURL().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/EqualError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#UpdateRemoteURL().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/EqualError().
|
Client#UpdateRemoteURL
|
EqualError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunView_User` and `IsTerminal` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/view`/TestRunView_User().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/term`/IsTerminal().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/view`/TestRunView_User().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/term`/IsTerminal().
|
TestRunView_User
|
IsTerminal
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/view`/TestRunView_User().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/view`/runView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdinTTY().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/isTerminal().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/term`/IsTerminal()."
] |
cli/cli
|
In cli/cli, determine if `Extension#UpdateAvailable` and `False` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#UpdateAvailable().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/False().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#UpdateAvailable().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/False().
|
Extension#UpdateAvailable
|
False
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_viewRun` and `NewMockPrompter` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/view`/Test_viewRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/NewMockPrompter().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/view`/Test_viewRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/NewMockPrompter().
|
Test_viewRun
|
NewMockPrompter
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/view`/Test_viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/prompter`/NewMockPrompter()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdCreate` and `NewCmdDeployKey` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/NewCmdCreate().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key`/NewCmdDeployKey().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/NewCmdCreate().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key`/NewCmdDeployKey().
|
NewCmdCreate
|
NewCmdDeployKey
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunCreateField_JSON` and `IOStreams#StopProgressIndicator` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_JSON().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopProgressIndicator().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_JSON().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopProgressIndicator().
|
TestRunCreateField_JSON
|
IOStreams#StopProgressIndicator
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_JSON().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/runCreateField().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewOwner().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#userOrgLogins().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#doQueryWithProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StopProgressIndicator()."
] |
cli/cli
|
In cli/cli, determine if `runCommand` and `toConfigEntry` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/runCommand().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/toConfigEntry().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/runCommand().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/toConfigEntry().
|
runCommand
|
toConfigEntry
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewBlankConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#ColorLabels().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#GetOrDefault().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/toConfigEntry()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdActions` and `DisableAuthCheck` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/actions`/NewCmdActions().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/DisableAuthCheck().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/actions`/NewCmdActions().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/DisableAuthCheck().
|
NewCmdActions
|
DisableAuthCheck
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/actions`/NewCmdActions().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/DisableAuthCheck()."
] |
cli/cli
|
In cli/cli, determine if `processResponse` and `jsonArrayWriter#Close` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/processResponse().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/jsonArrayWriter#Close().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/processResponse().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/jsonArrayWriter#Close().
|
processResponse
|
jsonArrayWriter#Close
| false
| null | null |
cli/cli
|
In cli/cli, determine if `printResults` and `OrganizationTeam` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/unlink`/printResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/OrganizationTeam().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/unlink`/printResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/OrganizationTeam().
|
printResults
|
OrganizationTeam
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewApp` and `Background` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/NewApp().`
- Symbol B: `scip-go gomod github.com/golang/go/src . context/Background().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/NewApp().
|
scip-go gomod github.com/golang/go/src . context/Background().
|
NewApp
|
Background
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_setRun_repo` and `Unmarshal` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_setRun_repo().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `encoding/json`/Unmarshal().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_setRun_repo().
|
scip-go gomod github.com/golang/go/src . `encoding/json`/Unmarshal().
|
Test_setRun_repo
|
Unmarshal
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_setRun_repo().",
"scip-go gomod github.com/golang/go/src . `encoding/json`/Unmarshal()."
] |
cli/cli
|
In cli/cli, determine if `TestAliasAreSet` and `setupMockOAuthConfig` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task`/TestAliasAreSet().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task`/setupMockOAuthConfig().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task`/TestAliasAreSet().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task`/setupMockOAuthConfig().
|
TestAliasAreSet
|
setupMockOAuthConfig
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task`/TestAliasAreSet().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task`/setupMockOAuthConfig()."
] |
cli/cli
|
In cli/cli, determine if `isCommit` and `escapePath` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/browse`/isCommit().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/browse`/escapePath().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/browse`/isCommit().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/browse`/escapePath().
|
isCommit
|
escapePath
| false
| null | null |
cli/cli
|
In cli/cli, determine if `SmartBaseRepoFunc` and `NewCmdVariable` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/SmartBaseRepoFunc().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable`/NewCmdVariable().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/SmartBaseRepoFunc().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable`/NewCmdVariable().
|
SmartBaseRepoFunc
|
NewCmdVariable
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestFetchRefSHA` and `Registry#Verify` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/TestFetchRefSHA().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/TestFetchRefSHA().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().
|
TestFetchRefSHA
|
Registry#Verify
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/TestFetchRefSHA().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify()."
] |
cli/cli
|
In cli/cli, determine if `App#List` and `ColorScheme#Cyan` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#List().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Cyan().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#List().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Cyan().
|
App#List
|
ColorScheme#Cyan
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#List().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#RunWithProgress().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#RunWithProgress().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Cyan()."
] |
cli/cli
|
In cli/cli, determine if `createRun` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/createRun().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/createRun().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
createRun
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_getRun` and `cfg#AccessiblePrompter` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/get`/Test_getRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#AccessiblePrompter().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/get`/Test_getRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#AccessiblePrompter().
|
Test_getRun
|
cfg#AccessiblePrompter
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/get`/Test_getRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewBlankConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#AccessiblePrompter()."
] |
cli/cli
|
In cli/cli, determine if `deleteRun` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/delete`/deleteRun().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/delete`/deleteRun().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
deleteRun
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdFork` and `FlagSet#StringVar` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/NewCmdFork().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVar().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/NewCmdFork().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVar().
|
NewCmdFork
|
FlagSet#StringVar
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/NewCmdFork().",
"scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#StringVar()."
] |
cli/cli
|
In cli/cli, determine if `TestRepoList_filtering` and `Command#SetIn` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestRepoList_filtering().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestRepoList_filtering().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn().
|
TestRepoList_filtering
|
Command#SetIn
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestRepoList_filtering().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/runCommand().",
"scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#SetIn()."
] |
cli/cli
|
In cli/cli, determine if `getDefaultValueDisplayString` and `TrimSpace` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/getDefaultValueDisplayString().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/TrimSpace().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/getDefaultValueDisplayString().
|
scip-go gomod github.com/golang/go/src . strings/TrimSpace().
|
getDefaultValueDisplayString
|
TrimSpace
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdEnable` and `NewCmdRun` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/enable`/NewCmdEnable().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/run`/NewCmdRun().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/enable`/NewCmdEnable().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/run`/NewCmdRun().
|
NewCmdEnable
|
NewCmdRun
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ProjectItem#DetailedItem` and `TestNewCmdList` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/ProjectItem#DetailedItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/TestNewCmdList().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/ProjectItem#DetailedItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/TestNewCmdList().
|
ProjectItem#DetailedItem
|
TestNewCmdList
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/TestNewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/NewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/runList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Project#DetailedItems().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/serializeProjectWithItems().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/ProjectItem#DetailedItem()."
] |
cli/cli
|
In cli/cli, determine if `extList#toggleSelected` and `extEntry#Description` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#toggleSelected().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extEntry#Description().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#toggleSelected().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extEntry#Description().
|
extList#toggleSelected
|
extEntry#Description
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#toggleSelected().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#FindSelected().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extEntry#Description()."
] |
cli/cli
|
In cli/cli, determine if `Extension#LatestVersion` and `ReadAll` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#LatestVersion().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/ReadAll().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#LatestVersion().
|
scip-go gomod github.com/golang/go/src . io/ReadAll().
|
Extension#LatestVersion
|
ReadAll
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#LatestVersion().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/fetchLatestRelease().",
"scip-go gomod github.com/golang/go/src . io/ReadAll()."
] |
cli/cli
|
In cli/cli, determine if `patchVariable` and `generateScopesSuggestion` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchVariable().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchVariable().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().
|
patchVariable
|
generateScopesSuggestion
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/set`/patchVariable().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#REST().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion()."
] |
cli/cli
|
In cli/cli, determine if `FetchParams#Validate` and `Sprintf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/FetchParams#Validate().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/FetchParams#Validate().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
FetchParams#Validate
|
Sprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdList` and `NewCmdClone` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/NewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/clone`/NewCmdClone().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/NewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/clone`/NewCmdClone().
|
NewCmdList
|
NewCmdClone
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestTokenWithActiveUserNotInKeyringFallsBackToBlank` and `MockInit` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenWithActiveUserNotInKeyringFallsBackToBlank().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/keyring`/MockInit().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenWithActiveUserNotInKeyringFallsBackToBlank().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/keyring`/MockInit().
|
TestTokenWithActiveUserNotInKeyringFallsBackToBlank
|
MockInit
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenWithActiveUserNotInKeyringFallsBackToBlank().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/newTestAuthConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewIsolatedTestConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/keyring`/MockInit()."
] |
cli/cli
|
In cli/cli, determine if `UserKeys` and `Fields` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserKeys().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/Fields().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserKeys().
|
scip-go gomod github.com/golang/go/src . strings/Fields().
|
UserKeys
|
Fields
| false
| null | null |
cli/cli
|
In cli/cli, determine if `writeManifest` and `downloadAsset` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/writeManifest().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/downloadAsset().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/writeManifest().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/downloadAsset().
|
writeManifest
|
downloadAsset
| false
| null | null |
cli/cli
|
In cli/cli, determine if `App#SSH` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#SSH().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#SSH().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
App#SSH
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `GetRuns` and `Run#WorkflowName` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRuns().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/Run#WorkflowName().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/GetRuns().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/Run#WorkflowName().
|
GetRuns
|
Run#WorkflowName
| false
| null | null |
cli/cli
|
In cli/cli, determine if `editRun` and `IOStreams#ColorLabels` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/editRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorLabels().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/editRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorLabels().
|
editRun
|
IOStreams#ColorLabels
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorLabels()."
] |
cli/cli
|
In cli/cli, determine if `fetchJobWithBackoff` and `WithContext` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/create`/fetchJobWithBackoff().`
- Symbol B: `scip-go gomod github.com/cenkalti/backoff/v4 v4.3.0 `github.com/cenkalti/backoff/v4`/WithContext().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/create`/fetchJobWithBackoff().
|
scip-go gomod github.com/cenkalti/backoff/v4 v4.3.0 `github.com/cenkalti/backoff/v4`/WithContext().
|
fetchJobWithBackoff
|
WithContext
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/create`/fetchJobWithBackoff().",
"scip-go gomod github.com/cenkalti/backoff/v4 v4.3.0 `github.com/cenkalti/backoff/v4`/WithContext()."
] |
cli/cli
|
In cli/cli, determine if `TestPRCheckout_detachedHead` and `common#Cleanup` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/TestPRCheckout_detachedHead().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Cleanup().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/TestPRCheckout_detachedHead().
|
scip-go gomod github.com/golang/go/src . testing/common#Cleanup().
|
TestPRCheckout_detachedHead
|
common#Cleanup
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checkout`/TestPRCheckout_detachedHead().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/StubFinderForRunCommandStyleTests().",
"scip-go gomod github.com/golang/go/src . testing/common#Cleanup()."
] |
cli/cli
|
In cli/cli, determine if `detector#RepositoryFeatures` and `Registry#Register` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/featuredetection`/detector#RepositoryFeatures().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Register().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/featuredetection`/detector#RepositoryFeatures().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Register().
|
detector#RepositoryFeatures
|
Registry#Register
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ConfigMock#Spinner` and `RWMutex#Unlock` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/gh/mock`/ConfigMock#Spinner().`
- Symbol B: `scip-go gomod github.com/golang/go/src . sync/RWMutex#Unlock().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/gh/mock`/ConfigMock#Spinner().
|
scip-go gomod github.com/golang/go/src . sync/RWMutex#Unlock().
|
ConfigMock#Spinner
|
RWMutex#Unlock
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/gh/mock`/ConfigMock#Spinner().",
"scip-go gomod github.com/golang/go/src . sync/RWMutex#Unlock()."
] |
cli/cli
|
In cli/cli, determine if `handleAutolinkCreateError` and `URL#Hostname` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/handleAutolinkCreateError().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/handleAutolinkCreateError().
|
scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().
|
handleAutolinkCreateError
|
URL#Hostname
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/autolink/create`/handleAutolinkCreateError().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/handleResponse().",
"scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname()."
] |
cli/cli
|
In cli/cli, determine if `sourceInit` and `Base` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/sourceInit().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `path/filepath`/Base().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/create`/sourceInit().
|
scip-go gomod github.com/golang/go/src . `path/filepath`/Base().
|
sourceInit
|
Base
| false
| null | null |
cli/cli
|
In cli/cli, determine if `RepoMetadataResult#MilestoneToID` and `RepoMetadataResult#ProjectsTitlesToIDs` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoMetadataResult#MilestoneToID().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoMetadataResult#ProjectsTitlesToIDs().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoMetadataResult#MilestoneToID().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/RepoMetadataResult#ProjectsTitlesToIDs().
|
RepoMetadataResult#MilestoneToID
|
RepoMetadataResult#ProjectsTitlesToIDs
| false
| null | null |
cli/cli
|
In cli/cli, determine if `downloadAssets` and `IOStreams#startTextualProgressIndicator` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/downloadAssets().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/downloadAssets().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().
|
downloadAssets
|
IOStreams#startTextualProgressIndicator
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/downloadAssets().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator()."
] |
cli/cli
|
In cli/cli, determine if `Manager#Remove` and `common#TempDir` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#Remove().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#TempDir().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#Remove().
|
scip-go gomod github.com/golang/go/src . testing/common#TempDir().
|
Manager#Remove
|
common#TempDir
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdClose` and `AddGroup` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/close`/NewCmdClose().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/AddGroup().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/close`/NewCmdClose().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/AddGroup().
|
NewCmdClose
|
AddGroup
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdCompletion` and `Test` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/completion`/NewCmdCompletion().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/completion`/NewCmdCompletion().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().
|
NewCmdCompletion
|
Test
| false
| null | null |
cli/cli
|
In cli/cli, determine if `IOStreams#TerminalTheme` and `NewCmdEdit` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().
|
IOStreams#TerminalTheme
|
NewCmdEdit
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/NewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gist/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme()."
] |
cli/cli
|
In cli/cli, determine if `IOStreams#startTextualProgressIndicator` and `IOStreams#TerminalTheme` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().
|
IOStreams#startTextualProgressIndicator
|
IOStreams#TerminalTheme
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme()."
] |
cli/cli
|
In cli/cli, determine if `cfg#Editor` and `TestIssueCreate_projectsV2` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Editor().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/create`/TestIssueCreate_projectsV2().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Editor().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/create`/TestIssueCreate_projectsV2().
|
cfg#Editor
|
TestIssueCreate_projectsV2
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/create`/TestIssueCreate_projectsV2().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/create`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/create`/runCommandWithRootDirOverridden().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewBlankConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewFromString().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Editor()."
] |
cli/cli
|
In cli/cli, determine if `dumpTlogs` and `Bundle#TlogEntries` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/inspect`/dumpTlogs().`
- Symbol B: `scip-go gomod github.com/sigstore/sigstore-go v1.1.4 `github.com/sigstore/sigstore-go/pkg/bundle`/Bundle#TlogEntries().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/inspect`/dumpTlogs().
|
scip-go gomod github.com/sigstore/sigstore-go v1.1.4 `github.com/sigstore/sigstore-go/pkg/bundle`/Bundle#TlogEntries().
|
dumpTlogs
|
Bundle#TlogEntries
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/inspect`/dumpTlogs().",
"scip-go gomod github.com/sigstore/sigstore-go v1.1.4 `github.com/sigstore/sigstore-go/pkg/bundle`/Bundle#TlogEntries()."
] |
cli/cli
|
In cli/cli, determine if `Extension#URL` and `Registry#Verify` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#URL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#URL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().
|
Extension#URL
|
Registry#Verify
| false
| null | null |
cli/cli
|
In cli/cli, determine if `clear` and `IOStreams#ColorScheme` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/credits`/clear().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/credits`/clear().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().
|
clear
|
IOStreams#ColorScheme
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_viewRun` and `NewGraphQLClient` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/view`/Test_viewRun().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/view`/Test_viewRun().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient().
|
Test_viewRun
|
NewGraphQLClient
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/view`/Test_viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/view`/viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/FetchRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/shared`/fetchDraftRelease().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#QueryWithContext().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/NewGraphQLClient()."
] |
cli/cli
|
In cli/cli, determine if `editRun` and `FindIssuesOrPRs` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/editRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/FindIssuesOrPRs().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/editRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/FindIssuesOrPRs().
|
editRun
|
FindIssuesOrPRs
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/FindIssuesOrPRs()."
] |
cli/cli
|
In cli/cli, determine if `newTestClient` and `StringResponse` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/newTestClient().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StringResponse().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/newTestClient().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StringResponse().
|
newTestClient
|
StringResponse
| false
| null | null |
cli/cli
|
In cli/cli, determine if `printAliases` and `Command#Runnable` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/printAliases().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Runnable().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/docs`/printAliases().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Runnable().
|
printAliases
|
Command#Runnable
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunArchive_Org` and `IOStreams#SetStdoutTTY` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/TestRunArchive_Org().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdoutTTY().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/TestRunArchive_Org().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdoutTTY().
|
TestRunArchive_Org
|
IOStreams#SetStdoutTTY
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-archive`/TestRunArchive_Org().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdoutTTY()."
] |
cli/cli
|
In cli/cli, determine if `listOrgs` and `Fprintln` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/org/list`/listOrgs().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintln().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/org/list`/listOrgs().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintln().
|
listOrgs
|
Fprintln
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mapRepoNamesToIDs` and `getEnvPubKey` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/getEnvPubKey().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/mapRepoNamesToIDs().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/getEnvPubKey().
|
mapRepoNamesToIDs
|
getEnvPubKey
| false
| null | null |
cli/cli
|
In cli/cli, determine if `App#Delete` and `File#Fd` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#Delete().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/File#Fd().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#Delete().
|
scip-go gomod github.com/golang/go/src . os/File#Fd().
|
App#Delete
|
File#Fd
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#Delete().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdoutTTY().",
"scip-go gomod github.com/golang/go/src . os/File#Fd()."
] |
cli/cli
|
In cli/cli, determine if `TestPendingOperationDisallowsSSH` and `Dir` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/TestPendingOperationDisallowsSSH().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `path/filepath`/Dir().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/TestPendingOperationDisallowsSSH().
|
scip-go gomod github.com/golang/go/src . `path/filepath`/Dir().
|
TestPendingOperationDisallowsSSH
|
Dir
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/TestPendingOperationDisallowsSSH().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#SSH().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/selectSSHKeys().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/generateAutomaticSSHKeys().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/checkAndUpdateOldKeyPair().",
"scip-go gomod github.com/golang/go/src . `path/filepath`/Dir()."
] |
cli/cli
|
In cli/cli, determine if `NewMergeContext` and `mergeContext#inMergeQueue` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/NewMergeContext().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#inMergeQueue().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/NewMergeContext().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#inMergeQueue().
|
NewMergeContext
|
mergeContext#inMergeQueue
| false
| null | null |
cli/cli
|
In cli/cli, determine if `WithoutIndentation` and `runView` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/markdown`/WithoutIndentation().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/runView().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/markdown`/WithoutIndentation().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/runView().
|
WithoutIndentation
|
runView
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/runView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/view`/viewWorkflowContent().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/markdown`/WithoutIndentation()."
] |
cli/cli
|
In cli/cli, determine if `AssignableBot#DisplayName` and `NewCmdRoot` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableBot#DisplayName().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableBot#DisplayName().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().
|
AssignableBot#DisplayName
|
NewCmdRoot
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/NewCmdRoot().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr`/NewCmdPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/NewCmdEdit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/edit`/editRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignedActors#DisplayNames().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AssignableBot#DisplayName()."
] |
cli/cli
|
In cli/cli, determine if `printResults` and `Client#ProjectFields` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/printResults().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#ProjectFields().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/printResults().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#ProjectFields().
|
printResults
|
Client#ProjectFields
| false
| null | null |
cli/cli
|
In cli/cli, determine if `listRun` and `Equal` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/list`/listRun().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Equal().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/config/list`/listRun().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/Equal().
|
listRun
|
Equal
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_SmartBaseRepo` and `Error` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/Test_SmartBaseRepo().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Error().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/Test_SmartBaseRepo().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Error().
|
Test_SmartBaseRepo
|
Error
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/Test_SmartBaseRepo().",
"scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Error()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdAdd` and `NewCmdDelete` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/add`/NewCmdAdd().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/delete`/NewCmdDelete().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/add`/NewCmdAdd().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/gpg-key/delete`/NewCmdDelete().
|
NewCmdAdd
|
NewCmdDelete
| false
| null | null |
cli/cli
|
In cli/cli, determine if `CommandStubber#find` and `Sprintf` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Sprintf().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
CommandStubber#find
|
Sprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `longDescription` and `Command#Flags` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/accessibility`/longDescription().`
- Symbol B: `scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/accessibility`/longDescription().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
longDescription
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ResolveWorkflow` and `IOStreams#StartProgressIndicator` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/ResolveWorkflow().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/ResolveWorkflow().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().
|
ResolveWorkflow
|
IOStreams#StartProgressIndicator
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestIssueList_withInvalidLimitFlag` and `IOStreams#TerminalWidth` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/TestIssueList_withInvalidLimitFlag().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalWidth().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/TestIssueList_withInvalidLimitFlag().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalWidth().
|
TestIssueList_withInvalidLimitFlag
|
IOStreams#TerminalWidth
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/TestIssueList_withInvalidLimitFlag().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/runCommand().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/listRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/PrintIssues().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/New().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalWidth()."
] |
cli/cli
|
In cli/cli, determine if `IOStreams#StartProgressIndicatorWithLabel` and `IOStreams#ColorEnabled` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().
|
IOStreams#StartProgressIndicatorWithLabel
|
IOStreams#ColorEnabled
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#TerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#DetectTerminalTheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled()."
] |
cli/cli
|
In cli/cli, determine if `NewCAPIClient` and `RESTPayload` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/capi`/NewCAPIClient().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/RESTPayload().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/agent-task/capi`/NewCAPIClient().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/RESTPayload().
|
NewCAPIClient
|
RESTPayload
| false
| null | null |
cli/cli
|
In cli/cli, determine if `IOStreams#RunWithProgress` and `New` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#RunWithProgress().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/New().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#RunWithProgress().
|
scip-go gomod github.com/golang/go/src . errors/New().
|
IOStreams#RunWithProgress
|
New
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_runLock` and `NewClientFromHTTP` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/Test_runLock().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/Test_runLock().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().
|
Test_runLock
|
NewClientFromHTTP
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/Test_runLock().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/lockRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/lock`/unlockLockable().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP()."
] |
cli/cli
|
In cli/cli, determine if `printItemResults` and `File#Fd` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/printItemResults().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/File#Fd().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/printItemResults().
|
scip-go gomod github.com/golang/go/src . os/File#Fd().
|
printItemResults
|
File#Fd
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-edit`/printItemResults().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#IsStdoutTTY().",
"scip-go gomod github.com/golang/go/src . os/File#Fd()."
] |
cli/cli
|
In cli/cli, determine if `mockCommentDelete` and `Registry#Verify` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/comment`/mockCommentDelete().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/comment`/mockCommentDelete().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().
|
mockCommentDelete
|
Registry#Verify
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestHandleAdditionalPermissions` and `New` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/TestHandleAdditionalPermissions().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/New().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/TestHandleAdditionalPermissions().
|
scip-go gomod github.com/golang/go/src . errors/New().
|
TestHandleAdditionalPermissions
|
New
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/TestHandleAdditionalPermissions().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#handleAdditionalPermissions().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#RunWithProgress().",
"scip-go gomod github.com/golang/go/src . errors/New()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdView` and `Render` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/view`/NewCmdView().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/markdown`/Render().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/view`/NewCmdView().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/markdown`/Render().
|
NewCmdView
|
Render
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/view`/viewRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/markdown`/Render().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/markdown`/Render()."
] |
cli/cli
|
In cli/cli, determine if `AddPullRequestReviews` and `Group#Wait` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AddPullRequestReviews().`
- Symbol B: `scip-go gomod golang.org/x/sync v0.19.0 `golang.org/x/sync/errgroup`/Group#Wait().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AddPullRequestReviews().
|
scip-go gomod golang.org/x/sync v0.19.0 `golang.org/x/sync/errgroup`/Group#Wait().
|
AddPullRequestReviews
|
Group#Wait
| false
| null | null |
cli/cli
|
In cli/cli, determine if `httpResponse` and `NewBufferString` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/httpResponse().`
- Symbol B: `scip-go gomod github.com/golang/go/src . bytes/NewBufferString().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/httpResponse().
|
scip-go gomod github.com/golang/go/src . bytes/NewBufferString().
|
httpResponse
|
NewBufferString
| false
| null | null |
cli/cli
|
In cli/cli, determine if `IOStreams#StartProgressIndicator` and `WithColor` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().`
- Symbol B: `scip-go gomod github.com/briandowns/spinner v1.23.2 `github.com/briandowns/spinner`/WithColor().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().
|
scip-go gomod github.com/briandowns/spinner v1.23.2 `github.com/briandowns/spinner`/WithColor().
|
IOStreams#StartProgressIndicator
|
WithColor
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicator().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().",
"scip-go gomod github.com/briandowns/spinner v1.23.2 `github.com/briandowns/spinner`/WithColor()."
] |
cli/cli
|
In cli/cli, determine if `NewPullRequestFindRefsResolver` and `Is` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewPullRequestFindRefsResolver().`
- Symbol B: `scip-go gomod github.com/golang/go/src . errors/Is().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/NewPullRequestFindRefsResolver().
|
scip-go gomod github.com/golang/go/src . errors/Is().
|
NewPullRequestFindRefsResolver
|
Is
| false
| null | null |
cli/cli
|
In cli/cli, determine if `CommandStubber#find` and `Join` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strings/Join().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().
|
scip-go gomod github.com/golang/go/src . strings/Join().
|
CommandStubber#find
|
Join
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().",
"scip-go gomod github.com/golang/go/src . strings/Join()."
] |
cli/cli
|
In cli/cli, determine if `Manager#upgradeExtension` and `stubExtension` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#upgradeExtension().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/stubExtension().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#upgradeExtension().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/stubExtension().
|
Manager#upgradeExtension
|
stubExtension
| false
| null | null |
cli/cli
|
In cli/cli, determine if `listHeader` and `Pluralize` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/listHeader().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/Pluralize().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/listHeader().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/Pluralize().
|
listHeader
|
Pluralize
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/label`/listHeader().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/text`/Pluralize().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/text`/Pluralize()."
] |
cli/cli
|
In cli/cli, determine if `ListHeader` and `issueList` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ListHeader().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/issueList().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/ListHeader().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/list`/issueList().
|
ListHeader
|
issueList
| false
| null | null |
cli/cli
|
In cli/cli, determine if `isURL` and `ParseURL` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/isURL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/ParseURL().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/isURL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/ParseURL().
|
isURL
|
ParseURL
| false
| null | null |
cli/cli
|
In cli/cli, determine if `transferRun` and `ParseIssueFromArg` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/transfer`/transferRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/ParseIssueFromArg().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/transfer`/transferRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/shared`/ParseIssueFromArg().
|
transferRun
|
ParseIssueFromArg
| false
| null | null |
cli/cli
|
In cli/cli, determine if `UserSigningKeys` and `HandleHTTPError` are linked.
**Definition:**
- LINKED: one calls something that eventually calls the other (path exists A→...→B or B→...→A)
- NOT LINKED: they only share a common caller (siblings in the call tree)
**Your task:**
Use ripgrep (rg) commands to search the codebase and trace the call chain.
**Qualified names for reference:**
- Symbol A: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserSigningKeys().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/HandleHTTPError().`
When you have determined the answer, respond with either:
- `ANSWER: LINKED` if one function can reach the other through calls
- `ANSWER: NOT_LINKED` if they only share a common caller
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserSigningKeys().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/HandleHTTPError().
|
UserSigningKeys
|
HandleHTTPError
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/UserSigningKeys().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/shared`/getUserKeys().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/HandleHTTPError().",
"scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/api`/HandleHTTPError()."
] |
cli/cli
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.