Dataset Viewer
Auto-converted to Parquet Duplicate
instance_id
stringlengths
13
37
text
stringlengths
2.89k
2.32M
repo
stringclasses
33 values
base_commit
stringlengths
40
40
problem_statement
stringlengths
10
256k
hints_text
stringlengths
0
908k
created_at
stringdate
2010-12-29 02:44:27
2023-08-26 08:23:00
patch
stringlengths
18
101M
test_patch
stringclasses
1 value
version
stringclasses
1 value
FAIL_TO_PASS
stringclasses
1 value
PASS_TO_PASS
stringclasses
1 value
environment_setup_commit
stringclasses
1 value
conan-io__conan-6254
You will be provided with a partial code base and an issue statement explaining a problem to resolve. <issue> [bug] Conan does not provide `Authorization` cookie when accessing `/v1/ping` when adding user This means that Conan cannot use an Artifactory which is behind a proxy, even if BasicAuth is allowed through the ...
conan-io/conan
7175a56d4d68d20288fa4f60223492b51c9ca7ed
[bug] Conan does not provide `Authorization` cookie when accessing `/v1/ping` when adding user This means that Conan cannot use an Artifactory which is behind a proxy, even if BasicAuth is allowed through the proxy. Also, the log says it is providing an Authorization header, which is misleading. As we have added a us...
It is true that the traces are showing some ``"Authorization" = ********`` traces, but the problem lies in the masking of the traces not the request. This request by design never intended to submit basic auth. I have submitted PR #6245 to do some cleaning on the Rest layer, and also to fix these erroneous traces. We...
2019-12-18T10:30:56Z
<patch> diff --git a/conans/client/rest/rest_client.py b/conans/client/rest/rest_client.py --- a/conans/client/rest/rest_client.py +++ b/conans/client/rest/rest_client.py @@ -46,12 +46,12 @@ def __init__(self, remote, token, refresh_token, custom_headers, output, request # This dict is shared for all the insta...
[]
[]
huggingface__transformers-7456
You will be provided with a partial code base and an issue statement explaining a problem to resolve. <issue> import error in version 3.3.0, conflict with local directory "datasets" ## Environment info <!-- You can run the command `transformers-cli env` and copy-and-paste its output below. Don't forget to fill o...
huggingface/transformers
9e9a1fb8c75e2ef00fea9c4c0dc511fc0178081c
import error in version 3.3.0, conflict with local directory "datasets" ## Environment info <!-- You can run the command `transformers-cli env` and copy-and-paste its output below. Don't forget to fill out the missing fields in that output! --> - `transformers` version: 3.3.0 - Platform: Google Colab ...
Sadly that is how python works, it will try to import the datasets library from a local folder if you have a folder named like this in the path your are working in. However, this should only work if there is a `__init__.py` in your folder named datasets. Removing that file should then solve the bug. This change just br...
2020-09-29T17:31:49Z
<patch> diff --git a/src/transformers/file_utils.py b/src/transformers/file_utils.py --- a/src/transformers/file_utils.py +++ b/src/transformers/file_utils.py @@ -68,8 +68,12 @@ try: import datasets # noqa: F401 - _datasets_available = True - logger.debug(f"Succesfully imported datasets version {datasets...
[]
[]
huggingface__transformers-21104
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
huggingface/transformers
b210c83a78022226ce48402cd67d8c8da7afbd8d
"Pre-trained tokenizer `repr` is inconsistent with attribute name\n### System Info\n\n- `transformer(...TRUNCATED)
2023-01-13T09:03:36Z
"<patch>\ndiff --git a/src/transformers/tokenization_utils_base.py b/src/transformers/tokenization_u(...TRUNCATED)
[]
[]
conda__conda-9135
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
conda/conda
3ac7898ee41188659418685c5f4e38c227af8e3d
"Conda cannot properly export current environment via `conda env export` (without extra args)\n## Cu(...TRUNCATED)
"It appears that `conda env export` does not detect when the activate environment is a full path to (...TRUNCATED)
2019-08-23T21:41:52Z
"<patch>\ndiff --git a/conda_env/cli/main_export.py b/conda_env/cli/main_export.py\n--- a/conda_env/(...TRUNCATED)
[]
[]
pandas-dev__pandas-36202
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
pandas-dev/pandas
12d3453c1ca82a22ed26dfc9bcb06b20384cd9a7
"DataFrame.replace: TypeError: Cannot compare types 'ndarray(dtype=int64)' and 'unicode'\n#### Code (...TRUNCATED)
"pls show a copy-pastable example, IOW construct df1 here.\nIt's simple \r\n```\r\ncolumns_values_ma(...TRUNCATED)
2020-09-07T19:54:48Z
<patch> </patch>
[]
[]
wagtail__wagtail-7408
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
wagtail/wagtail
8413d00bdd03c447900019961d604186e17d2870
"ModelAdmin IndexView not keyboard navigable\nFound a bug? Please fill out the sections below. 👍\(...TRUNCATED)
"Thank you @jessemenn, re-reading this I remember testing it as well after you had mentioned it and (...TRUNCATED)
2021-08-05T21:33:44Z
"<patch>\ndiff --git a/wagtail/contrib/modeladmin/templatetags/modeladmin_tags.py b/wagtail/contrib/(...TRUNCATED)
[]
[]
jupyterlab__jupyterlab-8717
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
jupyterlab/jupyterlab
d02fcfdad07e300c07af5f7cd2aa6856e5c7d097
"Browser check is not failing when it should\nI noticed while working on https://github.com/jupyterl(...TRUNCATED)
2020-07-26T11:08:11Z
"<patch>\ndiff --git a/jupyterlab/browser_check.py b/jupyterlab/browser_check.py\n--- a/jupyterlab/b(...TRUNCATED)
[]
[]
pandas-dev__pandas-5903
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
pandas-dev/pandas
e29c8e89fe51e1c754daa29c00b93e6b515b3afe
"Go through package docstrings and markup code snippets as such\nNoted by @karmel in #3422, sphinx s(...TRUNCATED)
"@cpcloud interesting....\n\nthis seems more like an ongoing thing ... although maybe there aren't t(...TRUNCATED)
2014-01-10T21:48:16Z
"<patch>\ndiff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst\n--- a/doc/source/ecosyst(...TRUNCATED)
[]
[]
pantsbuild__pants-5374
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
pantsbuild/pants
43b445aed5cc1706f631e90474fd207858bd1979
"Add a stat for usage of the daemon\nCurrently usage of the daemon is not recorded by the runtracker(...TRUNCATED)
We'll want to cherry pick this into the `1.4.x` stable branch as soon as it is available.
2018-01-23T01:19:00Z
"<patch>\ndiff --git a/src/python/pants/bin/daemon_pants_runner.py b/src/python/pants/bin/daemon_pan(...TRUNCATED)
[]
[]
pandas-dev__pandas-6158
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
pandas-dev/pandas
e89029dbc301feab1de8e4a6495a242b8688ee5d
"String comparison in query()\nHi, it seems that string comparisons aren't supported in query() yet,(...TRUNCATED)
"cc @cpcloud \n\nIIRC this is not implemented ATM\n\nYep only `==` and `!=` are tested for strings.\(...TRUNCATED)
2014-01-29T02:25:33Z
"<patch>\ndiff --git a/doc/source/enhancingperf.rst b/doc/source/enhancingperf.rst\n--- a/doc/source(...TRUNCATED)
[]
[]
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
282