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 `downloadRun` and `IOStreams#StartProgressIndicatorWithLabel` 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`/downloadRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().`
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`/downloadRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel().
|
downloadRun
|
IOStreams#StartProgressIndicatorWithLabel
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/release/download`/downloadRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#StartProgressIndicatorWithLabel()."
] |
cli/cli
|
In cli/cli, determine if `main` and `Exit` 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.test`/main().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/Exit().`
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.test`/main().
|
scip-go gomod github.com/golang/go/src . os/Exit().
|
main
|
Exit
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list.test`/main().",
"scip-go gomod github.com/golang/go/src . os/Exit()."
] |
cli/cli
|
In cli/cli, determine if `watchRun` and `T#Run` 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/watch`/watchRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/T#Run().`
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/watch`/watchRun().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
watchRun
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `RepoGitIgnoreTemplate` and `StatusStringResponse` 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`/RepoGitIgnoreTemplate().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StatusStringResponse().`
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`/RepoGitIgnoreTemplate().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/StatusStringResponse().
|
RepoGitIgnoreTemplate
|
StatusStringResponse
| false
| null | null |
cli/cli
|
In cli/cli, determine if `cfg#Pager` and `cfg#get` 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#Pager().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#get().`
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#Pager().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#get().
|
cfg#Pager
|
cfg#get
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/cfg#Pager().",
"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`/cfg#get()."
] |
cli/cli
|
In cli/cli, determine if `addRun` 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/repo/deploy-key/add`/addRun().`
- 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/repo/deploy-key/add`/addRun().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
addRun
|
Sprintf
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key/add`/addRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/deploy-key/add`/uploadDeployKey().",
"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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/generateScopesSuggestion().",
"scip-go gomod github.com/golang/go/src . fmt/Sprintf()."
] |
cli/cli
|
In cli/cli, determine if `Absolute#Join` and `T#Run` 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/safepaths`/Absolute#Join().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/T#Run().`
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/safepaths`/Absolute#Join().
|
scip-go gomod github.com/golang/go/src . testing/T#Run().
|
Absolute#Join
|
T#Run
| false
| null | null |
cli/cli
|
In cli/cli, determine if `newPortsVisibilityCmd` and `AddCodespaceSelector` 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`/newPortsVisibilityCmd().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/AddCodespaceSelector().`
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`/newPortsVisibilityCmd().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/AddCodespaceSelector().
|
newPortsVisibilityCmd
|
AddCodespaceSelector
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestPRMergeTTY_withDeleteBranch` and `NopCloser` 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`/TestPRMergeTTY_withDeleteBranch().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/NopCloser().`
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`/TestPRMergeTTY_withDeleteBranch().
|
scip-go gomod github.com/golang/go/src . io/NopCloser().
|
TestPRMergeTTY_withDeleteBranch
|
NopCloser
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/TestPRMergeTTY_withDeleteBranch().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/GraphQL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/decodeJSONBody().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/readBody().",
"scip-go gomod github.com/golang/go/src . io/NopCloser()."
] |
cli/cli
|
In cli/cli, determine if `createFakeEditPendingOpServer` and `common#Errorf` 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/api`/createFakeEditPendingOpServer().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/common#Errorf().`
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/api`/createFakeEditPendingOpServer().
|
scip-go gomod github.com/golang/go/src . testing/common#Errorf().
|
createFakeEditPendingOpServer
|
common#Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `FindRepoBranchID` 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/api`/FindRepoBranchID().`
- 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/api`/FindRepoBranchID().
|
scip-go gomod github.com/golang/go/src . `net/url`/URL#Hostname().
|
FindRepoBranchID
|
URL#Hostname
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/FindRepoBranchID().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/Client#Query().",
"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 `TestTokenFromKeyringNonExistent` and `NewIsolatedTestConfig` 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`/TestTokenFromKeyringNonExistent().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewIsolatedTestConfig().`
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`/TestTokenFromKeyringNonExistent().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/NewIsolatedTestConfig().
|
TestTokenFromKeyringNonExistent
|
NewIsolatedTestConfig
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenFromKeyringNonExistent().",
"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()."
] |
cli/cli
|
In cli/cli, determine if `getCurrentUsername` 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/status`/getCurrentUsername().`
- 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/status`/getCurrentUsername().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().
|
getCurrentUsername
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `PopulateMultipleSelectedRepositoryInformation` and `PopulateSelectedRepositoryInformation` 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/shared`/PopulateMultipleSelectedRepositoryInformation().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/shared`/PopulateSelectedRepositoryInformation().`
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/shared`/PopulateMultipleSelectedRepositoryInformation().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/shared`/PopulateSelectedRepositoryInformation().
|
PopulateMultipleSelectedRepositoryInformation
|
PopulateSelectedRepositoryInformation
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/shared`/PopulateMultipleSelectedRepositoryInformation().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/variable/shared`/PopulateSelectedRepositoryInformation()."
] |
cli/cli
|
In cli/cli, determine if `ExampleOption_Expect` and `Some` 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/option_test`/ExampleOption_Expect().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Some().`
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/option_test`/ExampleOption_Expect().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Some().
|
ExampleOption_Expect
|
Some
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option_test`/ExampleOption_Expect().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/option`/Some()."
] |
cli/cli
|
In cli/cli, determine if `Client#QueryWithContext` 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/api`/Client#QueryWithContext().`
- 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/api`/Client#QueryWithContext().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().
|
Client#QueryWithContext
|
NewClientFromHTTP
| false
| null | null |
cli/cli
|
In cli/cli, determine if `printHumanIssuePreview` and `stringSet#Add` 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/view`/printHumanIssuePreview().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/set`/stringSet#Add().`
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/view`/printHumanIssuePreview().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/set`/stringSet#Add().
|
printHumanIssuePreview
|
stringSet#Add
| false
| null | null |
cli/cli
|
In cli/cli, determine if `cfg#CacheDir` and `TestPRReview_interactive` 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#CacheDir().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/TestPRReview_interactive().`
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#CacheDir().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/TestPRReview_interactive().
|
cfg#CacheDir
|
TestPRReview_interactive
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/TestPRReview_interactive().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/review`/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#CacheDir()."
] |
cli/cli
|
In cli/cli, determine if `zipLogFetcher#GetLog` 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/run/view`/zipLogFetcher#GetLog().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/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/run/view`/zipLogFetcher#GetLog().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().
|
zipLogFetcher#GetLog
|
Equal
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Shell` and `newCpCmd` 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`/Shell().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newCpCmd().`
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`/Shell().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newCpCmd().
|
Shell
|
newCpCmd
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/newCpCmd().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#Copy().",
"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/internal/codespaces`/Shell()."
] |
cli/cli
|
In cli/cli, determine if `deleteGPGKey` and `Itoa` 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/delete`/deleteGPGKey().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strconv/Itoa().`
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/delete`/deleteGPGKey().
|
scip-go gomod github.com/golang/go/src . strconv/Itoa().
|
deleteGPGKey
|
Itoa
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdDeleteBaseRepoFuncs` and `Strings` 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/delete`/TestNewCmdDeleteBaseRepoFuncs().`
- Symbol B: `scip-go gomod github.com/golang/go/src . sort/Strings().`
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/delete`/TestNewCmdDeleteBaseRepoFuncs().
|
scip-go gomod github.com/golang/go/src . sort/Strings().
|
TestNewCmdDeleteBaseRepoFuncs
|
Strings
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/delete`/TestNewCmdDeleteBaseRepoFuncs().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().",
"scip-go gomod github.com/golang/go/src . sort/Strings()."
] |
cli/cli
|
In cli/cli, determine if `cancelWorkflowRun` 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/run/cancel`/cancelWorkflowRun().`
- 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/run/cancel`/cancelWorkflowRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorScheme().
|
cancelWorkflowRun
|
IOStreams#ColorScheme
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestTokenStoredInConfig` and `newTestAuthConfig` 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`/TestTokenStoredInConfig().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/newTestAuthConfig().`
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`/TestTokenStoredInConfig().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/newTestAuthConfig().
|
TestTokenStoredInConfig
|
newTestAuthConfig
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/TestTokenStoredInConfig().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/config`/newTestAuthConfig()."
] |
cli/cli
|
In cli/cli, determine if `NewQualifiedHeadRefWithoutOwner` 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/pr/shared`/NewQualifiedHeadRefWithoutOwner().`
- 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/pr/shared`/NewQualifiedHeadRefWithoutOwner().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewClientFromHTTP().
|
NewQualifiedHeadRefWithoutOwner
|
NewClientFromHTTP
| false
| null | null |
cli/cli
|
In cli/cli, determine if `setPrepareCmd` and `CommandStubber#find` 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`/setPrepareCmd().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().`
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`/setPrepareCmd().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/run`/CommandStubber#find().
|
setPrepareCmd
|
CommandStubber#find
| false
| null | null |
cli/cli
|
In cli/cli, determine if `submitPR` and `NewDetector` 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/create`/submitPR().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/featuredetection`/NewDetector().`
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/create`/submitPR().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/featuredetection`/NewDetector().
|
submitPR
|
NewDetector
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mockEmptyV2ProjectItems` and `IOStreams#SetStdinTTY` 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/view`/mockEmptyV2ProjectItems().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().`
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/view`/mockEmptyV2ProjectItems().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStdinTTY().
|
mockEmptyV2ProjectItems
|
IOStreams#SetStdinTTY
| false
| null | null |
cli/cli
|
In cli/cli, determine if `newExtList` and `extList#Filter` 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`/newExtList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#Filter().`
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`/newExtList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#Filter().
|
newExtList
|
extList#Filter
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestFetchBundleFromAttestations_BundleURL` and `NopCloser` 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`/TestFetchBundleFromAttestations_BundleURL().`
- Symbol B: `scip-go gomod github.com/golang/go/src . io/NopCloser().`
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`/TestFetchBundleFromAttestations_BundleURL().
|
scip-go gomod github.com/golang/go/src . io/NopCloser().
|
TestFetchBundleFromAttestations_BundleURL
|
NopCloser
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/api`/TestFetchBundleFromAttestations_BundleURL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/attestation/io`/NewTestHandler().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/Test().",
"scip-go gomod github.com/golang/go/src . io/NopCloser()."
] |
cli/cli
|
In cli/cli, determine if `jsonArrayWriter#Close` and `fillPlaceholders` 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`/jsonArrayWriter#Close().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/fillPlaceholders().`
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`/jsonArrayWriter#Close().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/fillPlaceholders().
|
jsonArrayWriter#Close
|
fillPlaceholders
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_SmartBaseRepo` and `getHost` 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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/getHost().`
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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/getHost().
|
Test_SmartBaseRepo
|
getHost
| true
| 5
|
[
"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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/New().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/httpClientFunc().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewHTTPClient().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AddAuthTokenHeader().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/getHost()."
] |
cli/cli
|
In cli/cli, determine if `Client#OwnerIDAndType` and `Client#userOrgLogins` 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#OwnerIDAndType().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#userOrgLogins().`
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#OwnerIDAndType().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#userOrgLogins().
|
Client#OwnerIDAndType
|
Client#userOrgLogins
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Manager#installBin` and `Extension#Path` 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#installBin().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#Path().`
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#installBin().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Extension#Path().
|
Manager#installBin
|
Extension#Path
| false
| null | null |
cli/cli
|
In cli/cli, determine if `ValidateKey` 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/config/set`/ValidateKey().`
- 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/config/set`/ValidateKey().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
ValidateKey
|
Sprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `New` and `T#Setenv` 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/api`/New().`
- Symbol B: `scip-go gomod github.com/golang/go/src . testing/T#Setenv().`
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/api`/New().
|
scip-go gomod github.com/golang/go/src . testing/T#Setenv().
|
New
|
T#Setenv
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdList` and `FlagErrorWrap` 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`/TestNewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorWrap().`
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`/TestNewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorWrap().
|
TestNewCmdList
|
FlagErrorWrap
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/list`/TestNewCmdList().",
"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/cmdutil`/FlagErrorf().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/FlagErrorWrap()."
] |
cli/cli
|
In cli/cli, determine if `updateGist` and `Open` 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/edit`/updateGist().`
- Symbol B: `scip-go gomod github.com/golang/go/src . os/Open().`
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/edit`/updateGist().
|
scip-go gomod github.com/golang/go/src . os/Open().
|
updateGist
|
Open
| false
| null | null |
cli/cli
|
In cli/cli, determine if `computeSeed` and `ParseInt` 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/garden`/computeSeed().`
- Symbol B: `scip-go gomod github.com/golang/go/src . strconv/ParseInt().`
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/garden`/computeSeed().
|
scip-go gomod github.com/golang/go/src . strconv/ParseInt().
|
computeSeed
|
ParseInt
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/garden`/computeSeed().",
"scip-go gomod github.com/golang/go/src . strconv/ParseInt()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdEditItem` and `NewCmdList` 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`/NewCmdEditItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/NewCmdList().`
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`/NewCmdEditItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/NewCmdList().
|
NewCmdEditItem
|
NewCmdList
| false
| null | null |
cli/cli
|
In cli/cli, determine if `getViewer` and `Fprintf` 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/authflow`/getViewer().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprintf().`
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/authflow`/getViewer().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintf().
|
getViewer
|
Fprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `findNextPage` and `ListArtifacts` 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`/findNextPage().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/ListArtifacts().`
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`/findNextPage().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/ListArtifacts().
|
findNextPage
|
ListArtifacts
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/ListArtifacts().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/apiGet().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/shared`/findNextPage()."
] |
cli/cli
|
In cli/cli, determine if `login` 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/pkg/cmd/auth/token`/login().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/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/pkg/cmd/auth/token`/login().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/EqualError().
|
login
|
EqualError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_runAdd` 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/ssh-key/add`/Test_runAdd().`
- 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/ssh-key/add`/Test_runAdd().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/httpmock`/Registry#Verify().
|
Test_runAdd
|
Registry#Verify
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/ssh-key/add`/Test_runAdd().",
"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 `pinRun` and `ColorScheme#Yellow` 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/pin`/pinRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().`
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/pin`/pinRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().
|
pinRun
|
ColorScheme#Yellow
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/issue/pin`/pinRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow()."
] |
cli/cli
|
In cli/cli, determine if `TestManager_Install_rosetta_fallback_not_found` 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/extension`/TestManager_Install_rosetta_fallback_not_found().`
- 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/extension`/TestManager_Install_rosetta_fallback_not_found().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintln().
|
TestManager_Install_rosetta_fallback_not_found
|
Fprintln
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/TestManager_Install_rosetta_fallback_not_found().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#Install().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/Manager#installBin().",
"scip-go gomod github.com/golang/go/src . fmt/Fprintln()."
] |
cli/cli
|
In cli/cli, determine if `revertRun` and `FlagSet#BoolVarP` 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/revert`/revertRun().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVarP().`
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/revert`/revertRun().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#BoolVarP().
|
revertRun
|
FlagSet#BoolVarP
| false
| null | null |
cli/cli
|
In cli/cli, determine if `StatusGetter#LoadSearchResults` 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/status`/StatusGetter#LoadSearchResults().`
- 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/status`/StatusGetter#LoadSearchResults().
|
scip-go gomod github.com/golang/go/src . fmt/Fprintln().
|
StatusGetter#LoadSearchResults
|
Fprintln
| false
| null | null |
cli/cli
|
In cli/cli, determine if `buildURL` and `filterProjects` 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/list`/buildURL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/filterProjects().`
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/list`/buildURL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/list`/filterProjects().
|
buildURL
|
filterProjects
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdLock` and `NewCmdChecks` 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`/NewCmdLock().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checks`/NewCmdChecks().`
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`/NewCmdLock().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/checks`/NewCmdChecks().
|
NewCmdLock
|
NewCmdChecks
| false
| null | null |
cli/cli
|
In cli/cli, determine if `getToken` and `Errorf` 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/migration`/getToken().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Errorf().`
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/migration`/getToken().
|
scip-go gomod github.com/golang/go/src . fmt/Errorf().
|
getToken
|
Errorf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestNewCmdList` and `Client#NewProject` 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`/TestNewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewProject().`
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`/TestNewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewProject().
|
TestNewCmdList
|
Client#NewProject
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/TestNewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/NewCmdList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-list`/runList().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/Client#NewProject()."
] |
cli/cli
|
In cli/cli, determine if `extList#Refresh` and `extList#ScrollUp` 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#Refresh().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#ScrollUp().`
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#Refresh().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension/browse`/extList#ScrollUp().
|
extList#Refresh
|
extList#ScrollUp
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdExtension` and `Fprint` 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/root`/NewCmdExtension().`
- Symbol B: `scip-go gomod github.com/golang/go/src . fmt/Fprint().`
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/root`/NewCmdExtension().
|
scip-go gomod github.com/golang/go/src . fmt/Fprint().
|
NewCmdExtension
|
Fprint
| false
| null | null |
cli/cli
|
In cli/cli, determine if `serializeProjectWithItems` and `TestRunList_Org` 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`/serializeProjectWithItems().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/TestRunList_Org().`
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`/serializeProjectWithItems().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/TestRunList_Org().
|
serializeProjectWithItems
|
TestRunList_Org
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/item-list`/TestRunList_Org().",
"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()."
] |
cli/cli
|
In cli/cli, determine if `App#printOpenSSHConfig` 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#printOpenSSHConfig().`
- 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#printOpenSSHConfig().
|
scip-go gomod github.com/spf13/cobra v1.10.2 `github.com/spf13/cobra`/Command#Flags().
|
App#printOpenSSHConfig
|
Command#Flags
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Editable#Clone` and `UpdateIssue` 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`/Editable#Clone().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/UpdateIssue().`
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`/Editable#Clone().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/UpdateIssue().
|
Editable#Clone
|
UpdateIssue
| false
| null | null |
cli/cli
|
In cli/cli, determine if `CommentableEditSurvey` and `CommentableConfirmDeleteLastComment` 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`/CommentableEditSurvey().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableConfirmDeleteLastComment().`
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`/CommentableEditSurvey().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/shared`/CommentableConfirmDeleteLastComment().
|
CommentableEditSurvey
|
CommentableConfirmDeleteLastComment
| false
| null | null |
cli/cli
|
In cli/cli, determine if `viewRun` and `Buffer#String` 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/gitignore/view`/viewRun().`
- Symbol B: `scip-go gomod github.com/golang/go/src . bytes/Buffer#String().`
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/gitignore/view`/viewRun().
|
scip-go gomod github.com/golang/go/src . bytes/Buffer#String().
|
viewRun
|
Buffer#String
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#CheckoutNewBranch` and `mergeContext#infof` 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#CheckoutNewBranch().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#infof().`
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#CheckoutNewBranch().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#infof().
|
Client#CheckoutNewBranch
|
mergeContext#infof
| false
| null | null |
cli/cli
|
In cli/cli, determine if `printHeaders` 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/cmd/api`/printHeaders().`
- 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/cmd/api`/printHeaders().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#ColorEnabled().
|
printHeaders
|
IOStreams#ColorEnabled
| false
| null | null |
cli/cli
|
In cli/cli, determine if `getOrgPublicKey` and `setSecret` 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`/getOrgPublicKey().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/setSecret().`
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`/getOrgPublicKey().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/setSecret().
|
getOrgPublicKey
|
setSecret
| false
| null | null |
cli/cli
|
In cli/cli, determine if `App#StartProgressIndicatorWithLabel` 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/codespace`/App#StartProgressIndicatorWithLabel().`
- 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/codespace`/App#StartProgressIndicatorWithLabel().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().
|
App#StartProgressIndicatorWithLabel
|
IOStreams#startTextualProgressIndicator
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/codespace`/App#StartProgressIndicatorWithLabel().",
"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 `TestJSONProjects` 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/project/shared/queries`/TestJSONProjects().`
- 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/project/shared/queries`/TestJSONProjects().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError().
|
TestJSONProjects
|
NoError
| true
| 1
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/shared/queries`/TestJSONProjects().",
"scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/NoError()."
] |
cli/cli
|
In cli/cli, determine if `renderPullRequestPlain` and `renderPullRequestTTY` 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/create`/renderPullRequestPlain().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/renderPullRequestTTY().`
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/create`/renderPullRequestPlain().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/create`/renderPullRequestTTY().
|
renderPullRequestPlain
|
renderPullRequestTTY
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NilBoolFlag` and `Docf` 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/cmdutil`/NilBoolFlag().`
- Symbol B: `scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf().`
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/cmdutil`/NilBoolFlag().
|
scip-go gomod github.com/MakeNowJust/heredoc v1.0.0 `github.com/MakeNowJust/heredoc`/Docf().
|
NilBoolFlag
|
Docf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `generateScopesSuggestion` and `Header#Get` 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`/generateScopesSuggestion().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().`
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`/generateScopesSuggestion().
|
scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().
|
generateScopesSuggestion
|
Header#Get
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdRoot` and `FlagSet#Parse` 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/root`/NewCmdRoot().`
- Symbol B: `scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#Parse().`
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/root`/NewCmdRoot().
|
scip-go gomod github.com/spf13/pflag v1.0.10 `github.com/spf13/pflag`/FlagSet#Parse().
|
NewCmdRoot
|
FlagSet#Parse
| false
| null | null |
cli/cli
|
In cli/cli, determine if `newTestIOStreams` 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/iostreams`/newTestIOStreams().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/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/iostreams`/newTestIOStreams().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
|
newTestIOStreams
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `selectWorkflow` and `GetWorkflows` 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`/selectWorkflow().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/GetWorkflows().`
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`/selectWorkflow().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/workflow/shared`/GetWorkflows().
|
selectWorkflow
|
GetWorkflows
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_getBody` 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/secret/set`/Test_getBody().`
- 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/secret/set`/Test_getBody().
|
scip-go gomod github.com/golang/go/src . os/File#Fd().
|
Test_getBody
|
File#Fd
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/Test_getBody().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/set`/getBody().",
"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/golang/go/src . os/File#Fd()."
] |
cli/cli
|
In cli/cli, determine if `AddJSONFlagsWithoutShorthand` and `statusRun` 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/cmdutil`/AddJSONFlagsWithoutShorthand().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/statusRun().`
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/cmdutil`/AddJSONFlagsWithoutShorthand().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/status`/statusRun().
|
AddJSONFlagsWithoutShorthand
|
statusRun
| false
| null | null |
cli/cli
|
In cli/cli, determine if `TestRunCreateField_TEXT` 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/project/field-create`/TestRunCreateField_TEXT().`
- 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/project/field-create`/TestRunCreateField_TEXT().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#startTextualProgressIndicator().
|
TestRunCreateField_TEXT
|
IOStreams#startTextualProgressIndicator
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/field-create`/TestRunCreateField_TEXT().",
"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#NewProject().",
"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#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 `NewCmdAddItem` and `NewCmdUnlink` 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-add`/NewCmdAddItem().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/unlink`/NewCmdUnlink().`
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-add`/NewCmdAddItem().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/unlink`/NewCmdUnlink().
|
NewCmdAddItem
|
NewCmdUnlink
| false
| null | null |
cli/cli
|
In cli/cli, determine if `listHeader` and `ColorScheme#Yellow` 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`/listHeader().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().`
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`/listHeader().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/ColorScheme#Yellow().
|
listHeader
|
ColorScheme#Yellow
| false
| null | null |
cli/cli
|
In cli/cli, determine if `renderMarkdownWithFormat` 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/agent-task/shared`/renderMarkdownWithFormat().`
- 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/agent-task/shared`/renderMarkdownWithFormat().
|
scip-go gomod github.com/golang/go/src . fmt/Sprintf().
|
renderMarkdownWithFormat
|
Sprintf
| false
| null | null |
cli/cli
|
In cli/cli, determine if `AuthFlow` and `IOStreams#CanPrompt` 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/authflow`/AuthFlow().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().`
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/authflow`/AuthFlow().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().
|
AuthFlow
|
IOStreams#CanPrompt
| false
| null | null |
cli/cli
|
In cli/cli, determine if `configureTestCredentialHelper` and `withIsolatedGitConfig` 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/auth/shared/gitcredentials_test`/configureTestCredentialHelper().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/withIsolatedGitConfig().`
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/auth/shared/gitcredentials_test`/configureTestCredentialHelper().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/withIsolatedGitConfig().
|
configureTestCredentialHelper
|
withIsolatedGitConfig
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_ArchiveRun` and `IOStreams#SetStderrTTY` 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/archive`/Test_ArchiveRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStderrTTY().`
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/archive`/Test_ArchiveRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#SetStderrTTY().
|
Test_ArchiveRun
|
IOStreams#SetStderrTTY
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/archive`/Test_ArchiveRun().",
"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#SetStderrTTY()."
] |
cli/cli
|
In cli/cli, determine if `newGitClient` and `Abs` 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`/newGitClient().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `path/filepath`/Abs().`
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`/newGitClient().
|
scip-go gomod github.com/golang/go/src . `path/filepath`/Abs().
|
newGitClient
|
Abs
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/factory`/newGitClient().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/Factory#Executable().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/executable().",
"scip-go gomod github.com/golang/go/src . `path/filepath`/Abs()."
] |
cli/cli
|
In cli/cli, determine if `baseRepoFromOpts` 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/issue/argparsetest`/baseRepoFromOpts().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/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/issue/argparsetest`/baseRepoFromOpts().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/assert`/Equal().
|
baseRepoFromOpts
|
Equal
| false
| null | null |
cli/cli
|
In cli/cli, determine if `createTestDir` 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/cmdutil`/createTestDir().`
- Symbol B: `scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/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/cmdutil`/createTestDir().
|
scip-go gomod github.com/stretchr/testify v1.11.1 `github.com/stretchr/testify/require`/NoError().
|
createTestDir
|
NoError
| false
| null | null |
cli/cli
|
In cli/cli, determine if `NewCmdList` and `EnableRepoOverride` 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/list`/NewCmdList().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().`
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/list`/NewCmdList().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmdutil`/EnableRepoOverride().
|
NewCmdList
|
EnableRepoOverride
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mapRepoNamesToIDs` and `getSecretsFromOptions` 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`/getSecretsFromOptions().`
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`/getSecretsFromOptions().
|
mapRepoNamesToIDs
|
getSecretsFromOptions
| false
| null | null |
cli/cli
|
In cli/cli, determine if `getToken` and `Config#Remove` 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/migration`/getToken().`
- Symbol B: `scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/Config#Remove().`
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/migration`/getToken().
|
scip-go gomod github.com/cli/go-gh/v2 v2.13.0 `github.com/cli/go-gh/v2/pkg/config`/Config#Remove().
|
getToken
|
Config#Remove
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_runLock` and `ProjectsV2ItemsForIssue` 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`/ProjectsV2ItemsForIssue().`
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`/ProjectsV2ItemsForIssue().
|
Test_runLock
|
ProjectsV2ItemsForIssue
| 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/shared`/FindIssueOrPR().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/ProjectsV2ItemsForIssue()."
] |
cli/cli
|
In cli/cli, determine if `zipLogMap#forStep` and `TestNewCmdView` 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/view`/zipLogMap#forStep().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/TestNewCmdView().`
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/view`/zipLogMap#forStep().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/TestNewCmdView().
|
zipLogMap#forStep
|
TestNewCmdView
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/TestNewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/NewCmdView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/runView().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/populateLogSegments().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/run/view`/zipLogMap#forStep()."
] |
cli/cli
|
In cli/cli, determine if `GitCredentialFlow#Setup` and `Mutex#Lock` 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/auth/shared`/GitCredentialFlow#Setup().`
- Symbol B: `scip-go gomod github.com/golang/go/src . sync/Mutex#Lock().`
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/auth/shared`/GitCredentialFlow#Setup().
|
scip-go gomod github.com/golang/go/src . sync/Mutex#Lock().
|
GitCredentialFlow#Setup
|
Mutex#Lock
| true
| 3
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared`/GitCredentialFlow#Setup().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials`/Updater#Update().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Command().",
"scip-go gomod github.com/golang/go/src . sync/Mutex#Lock()."
] |
cli/cli
|
In cli/cli, determine if `fillCredentials` and `configureStoreCredentialHelper` 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/auth/shared/gitcredentials_test`/fillCredentials().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/configureStoreCredentialHelper().`
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/auth/shared/gitcredentials_test`/fillCredentials().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/auth/shared/gitcredentials_test`/configureStoreCredentialHelper().
|
fillCredentials
|
configureStoreCredentialHelper
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Test_apiRun_paginationGraphQL` and `NewHTTPClient` 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`/Test_apiRun_paginationGraphQL().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewHTTPClient().`
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`/Test_apiRun_paginationGraphQL().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewHTTPClient().
|
Test_apiRun_paginationGraphQL
|
NewHTTPClient
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/Test_apiRun_paginationGraphQL().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/api`/apiRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewHTTPClient()."
] |
cli/cli
|
In cli/cli, determine if `NewCmdCreateField` 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/cmd/project/field-create`/NewCmdCreateField().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/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/cmd/project/field-create`/NewCmdCreateField().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/project/edit`/NewCmdEdit().
|
NewCmdCreateField
|
NewCmdEdit
| false
| null | null |
cli/cli
|
In cli/cli, determine if `mergeContext#warnIfDiverged` and `Mutex#Lock` 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`/mergeContext#warnIfDiverged().`
- Symbol B: `scip-go gomod github.com/golang/go/src . sync/Mutex#Lock().`
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`/mergeContext#warnIfDiverged().
|
scip-go gomod github.com/golang/go/src . sync/Mutex#Lock().
|
mergeContext#warnIfDiverged
|
Mutex#Lock
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/merge`/mergeContext#warnIfDiverged().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#LastCommit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#lookupCommit().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#Command().",
"scip-go gomod github.com/golang/go/src . sync/Mutex#Lock()."
] |
cli/cli
|
In cli/cli, determine if `runCommandWithRootDirOverridden` and `Header#Get` 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/create`/runCommandWithRootDirOverridden().`
- Symbol B: `scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().`
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/create`/runCommandWithRootDirOverridden().
|
scip-go gomod github.com/golang/go/src . `net/http`/Header#Get().
|
runCommandWithRootDirOverridden
|
Header#Get
| true
| 4
|
[
"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/pkg/cmd/issue/create`/createRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/NewCachedHTTPClient().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/api`/AddCacheTTLHeader().",
"scip-go gomod github.com/golang/go/src . `net/http`/Header#Get()."
] |
cli/cli
|
In cli/cli, determine if `runEdit` and `Buffer#String` 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/edit`/runEdit().`
- Symbol B: `scip-go gomod github.com/golang/go/src . bytes/Buffer#String().`
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/edit`/runEdit().
|
scip-go gomod github.com/golang/go/src . bytes/Buffer#String().
|
runEdit
|
Buffer#String
| false
| null | null |
cli/cli
|
In cli/cli, determine if `StringEnumFlag` and `IOStreams#CanPrompt` 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/cmdutil`/StringEnumFlag().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().`
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/cmdutil`/StringEnumFlag().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#CanPrompt().
|
StringEnumFlag
|
IOStreams#CanPrompt
| false
| null | null |
cli/cli
|
In cli/cli, determine if `setSecret` and `GetSecretEntity` 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`/setSecret().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared`/GetSecretEntity().`
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`/setSecret().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/secret/shared`/GetSecretEntity().
|
setSecret
|
GetSecretEntity
| false
| null | null |
cli/cli
|
In cli/cli, determine if `Client#CheckoutBranch` and `run` 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#CheckoutBranch().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/run().`
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#CheckoutBranch().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/run().
|
Client#CheckoutBranch
|
run
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/cmd/gen-docs`/run().",
"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/close`/NewCmdClose().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/pr/close`/closeRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/git`/Client#CheckoutBranch()."
] |
cli/cli
|
In cli/cli, determine if `NormalizeRepoName` and `TestKramdownCompatibleDocs` 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/shared`/NormalizeRepoName().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestKramdownCompatibleDocs().`
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/shared`/NormalizeRepoName().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestKramdownCompatibleDocs().
|
NormalizeRepoName
|
TestKramdownCompatibleDocs
| true
| 5
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/root`/TestKramdownCompatibleDocs().",
"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/repo`/NewCmdRepo().",
"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/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/fork`/forkRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/shared`/NormalizeRepoName()."
] |
cli/cli
|
In cli/cli, determine if `TestNewCmdExtension` 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/extension`/TestNewCmdExtension().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/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/extension`/TestNewCmdExtension().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/New().
|
TestNewCmdExtension
|
New
| true
| 2
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/TestNewCmdExtension().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/extension`/NewCmdExtension().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/internal/tableprinter`/New()."
] |
cli/cli
|
In cli/cli, determine if `listRun` and `IOStreams#AccessibleColorsEnabled` 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/license/list`/listRun().`
- Symbol B: `scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#AccessibleColorsEnabled().`
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/license/list`/listRun().
|
scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#AccessibleColorsEnabled().
|
listRun
|
IOStreams#AccessibleColorsEnabled
| true
| 4
|
[
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/license/list`/listRun().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/cmd/repo/license/list`/renderLicensesTable().",
"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#ColorScheme().",
"scip-go gomod github.com/cli/cli/v2 v2.85.0 `github.com/cli/cli/v2/pkg/iostreams`/IOStreams#AccessibleColorsEnabled()."
] |
cli/cli
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.