added stringdate 2025-04-01 04:05:38 2025-04-01 07:14:06 | created timestamp[us]date 2001-10-09 16:19:16 2025-01-01 03:51:31 | id stringlengths 4 10 | metadata dict | source stringclasses 2
values | text stringlengths 0 1.61M |
|---|---|---|---|---|---|
2025-04-01T04:33:36.970120 | 2015-10-06T09:03:22 | 109964870 | {
"authors": [
"jmesserly",
"leafpetersen",
"vsmenon",
"zoechi"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5158",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/24507"
} | gharchive/issue | Will need runtime check to cast to type (num)
With
dartanalyzer --strong --lints web/index.dart
[warning] _nextProgress (([dynamic]) β void) will need runtime check to cast to type (num) β void (/home/dart/dart-lang/polymer_elements/demo/web/paper_progress/paper_progress_demo.dart, line 50, col 38)
for this functio... |
2025-04-01T04:33:36.973523 | 2016-04-27T10:21:13 | 151351070 | {
"authors": [
"bwilkerson",
"xavierhainaux"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5159",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/26345"
} | gharchive/issue | Default values must be constant: false positive
import 'dart:web_gl';
function({int colorMode : RenderingContext.RGBA}) {}
With Dart 1.16, the analyzer report an error ERROR: Default values of an optional parameter must be constant
The variable is defined as a static const int web_gl_dartium.dart
There is the same ... |
2025-04-01T04:33:36.976413 | 2018-09-10T05:26:59 | 358473063 | {
"authors": [
"Hixie",
"eernstg"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5160",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/34414"
} | gharchive/issue | Allow type parameters on constructors
I have a class of type Foo<T> which I want to construct using a source of R values and a callback that can convert Rs to Ts.
typedef T Converter<R, T>(R value);
class Foo<T> {
factory Foo.convert<R>(Bar<R> source, Converter<R, T> converter) {
// ...
}
}
... |
2025-04-01T04:33:36.996398 | 2019-03-08T18:12:43 | 418898692 | {
"authors": [
"aartbik",
"mraleph"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5161",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/36156"
} | gharchive/issue | error: expected: CanDeoptimize() in AOT-DebugX64
With the new coverage of DartFuzz comes a new failure!
AOT-DebugX64 assert fail:
Isolate (/b/s/w/ir/tmp/t/dart_fuzzAPHZTQ) JIT-O3-DebugSIMARM - AOT-DebugX64: !DIVERGENCE! 1.4:3353051289 (output=false)
fail2:
../../runtime/vm/compiler/backend/il.cc: 4664: error: expecte... |
2025-04-01T04:33:37.011723 | 2021-03-22T17:01:50 | 837927275 | {
"authors": [
"daninnunez27",
"stereotype441"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5162",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/45416"
} | gharchive/issue | Customer-reported issue with NNBD migration tool: Could not apply migration
Could not apply migration
Error: Bad state: Cannot apply migration. Files on disk do not match the expected pre-migration state. Press the "rerun from sources" button and then try again. (Changed file path is E:\Progranacion Proyect\Flutter_P... |
2025-04-01T04:33:37.018074 | 2022-03-22T08:35:51 | 1176560934 | {
"authors": [
"daadu",
"eernstg",
"leafpetersen"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5163",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/48635"
} | gharchive/issue | Inconsistent behaviour when getter that returns a function is called with/without .call()
Dart-pad demo: https://dartpad.dev/?id=a0f88b47e1d05bd8f2347442f867de84
When a "getter" returns a function - depending on how it is called - obj.adder(fetchNum()) vs obj.adder.call(fetchNum()) - the execution-path is different,... |
2025-04-01T04:33:37.027171 | 2022-08-29T08:24:49 | 1353898827 | {
"authors": [
"eernstg",
"iapicca",
"scheglov"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5164",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/49842"
} | gharchive/issue | [analyzer] Missing error in extension method
please see this code sample
import 'dart:async';
typedef Nullary<T> = T Function();
typedef NullaryAsync<T> = Nullary<Future<T>>;
typedef NullaryFutureOr<T> = Nullary<FutureOr<T>>;
typedef Unary<T, S> = T Function(S);
typedef UnaryAsync<T, S> = Unary<Future<T>, S>;
typed... |
2025-04-01T04:33:37.030521 | 2022-10-12T03:55:20 | 1405519026 | {
"authors": [
"337240552"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5165",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/50183"
} | gharchive/issue | Create an issue
Dart SDK Version (dart --version)
Dart SDK version: 2.17.6 (stable) (Tue Jul 12 12:54:37 2022 +0200) on "macos_x64"
Whether you are using Windows, MacOSX, or Linux (if applicable)
MacOSX
Run vm_snapshot_analysis:analyse crashed with stack as below.
cmd: vm_snapshot_analysis:analyse summary apk-c... |
2025-04-01T04:33:37.032400 | 2023-08-10T10:21:29 | 1844890424 | {
"authors": [
"eernstg",
"sgrekhov"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5166",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/53172"
} | gharchive/issue | No error in CFE if extension type has two incompatible superinterfaces
The error expected below is reported by analyzer but not reported by CFE
// SharedOptions=--enable-experiment=inline-class
extension type V1(int id) {
int m() => 42;
}
extension type V2(int id) {
String m() => "42";
}
extension type V(int i... |
2025-04-01T04:33:37.033649 | 2012-09-21T22:44:22 | 84516852 | {
"authors": [
"DartBot",
"munificent"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5167",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/5376"
} | gharchive/issue | Should not show "no lib directory" warning for root package
It's valid to have a root app package that does not have a lib directory because it only has entrypoint files in "bin", or "web". Given that, we shouldn't show a warning if the root package doesn't have a lib directory, only if packages you depend on don't.
... |
2025-04-01T04:33:37.041326 | 2023-11-22T01:53:25 | 2005420297 | {
"authors": [
"a-siva",
"dcharkes",
"liamappelbe",
"lrhn",
"mosuem",
"parlough"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5168",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart... | gharchive/issue | Failures on 329961: Adding the resource-identifier functionality from the compiler to the vm
There are new test failures on Adding the resource-identifier functionality from the compiler to the vm.
The tests
pkg/vm/test/transformations/resource_identifier_test RuntimeError (expected Pass)
are failing on configuratio... |
2025-04-01T04:33:37.044031 | 2024-05-13T14:14:03 | 2292966327 | {
"authors": [
"DanTup",
"rmacnak-google"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5169",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/55704"
} | gharchive/issue | Add the ability to access the return value of a function through the VM Service when execution is paused on return
In JS in VS Code, when you step over a return, there's an final stop location at the return which includes the return value in the variables list:
https://github.com/Dart-Code/Dart-Code/assets/1078012/8c... |
2025-04-01T04:33:37.048751 | 2024-05-31T11:13:29 | 2327584419 | {
"authors": [
"mkustermann",
"mraleph",
"userAdityaa"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5170",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/55886"
} | gharchive/issue | HttpResponse.addStream does not forward cancelation
The following regression test demonstrates the problem:
import 'dart:io';
import 'dart:async';
import 'dart:convert';
Future<void> pipeStream(Stream<List<int>> from, IOSink to) async {
StreamSubscription<List<int>>? subscription;
late final StreamController<L... |
2025-04-01T04:33:37.054536 | 2024-06-03T18:01:32 | 2331740552 | {
"authors": [
"parlough",
"stereotype441",
"treeplate"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5171",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/55914"
} | gharchive/issue | Analyser reports no issues for erroring dart program [records]
void foo(final Object? e) {
(
user: (e as Map<String, Object?>),
message: e['text'],
);
}
Analyser reports no issues.
dart run:
test.dart:4:15: Error: The operator '[]' isn't defined for the class 'Object?'.
- 'Object' is from 'dart:core'.
... |
2025-04-01T04:33:37.056305 | 2013-03-13T17:20:09 | 84530136 | {
"authors": [
"DartBot",
"sigmundch"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5172",
"repo": "dart-lang/sdk",
"url": "https://github.com/dart-lang/sdk/issues/9113"
} | gharchive/issue | show uploader on pub versions page
For coordination purposes, sometimes it is useful to see who uploaded a particular version of a package. Maybe we can show on each version of a package the actual person that did the upload?
I'm not convinced that we really want this though. For example, some packages have a single ... |
2025-04-01T04:33:37.062368 | 2024-11-24T11:42:54 | 2687637511 | {
"authors": [
"amery"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5173",
"repo": "darvaza-proxy/x",
"url": "https://github.com/darvaza-proxy/x/pull/143"
} | gharchive/pull-request | net/bind: extend Config to configure default listeners
Three parameters added to Config{} used when defining the default listeners.
Context
KeepAlive
ReusePort (SO_REUSEADDR)
Summary by CodeRabbit
New Features
Enhanced configurability for TCP and UDP listeners with new options: ReusePort, Context, and KeepAlive... |
2025-04-01T04:33:37.091188 | 2022-03-06T17:33:19 | 1160669362 | {
"authors": [
"Boscop",
"elvinex",
"stastnypremysl",
"teddywaweru",
"xoomp"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5174",
"repo": "darwinex/dwxconnect",
"url": "https://github.com/darwin... | gharchive/issue | Question: Performance problems
Hello.
I studied your code and I am unsure, whether the solution of communication with Metatrader through creating and deleting files is fast enough.
There must be made serialization by OS when changing folder, the OS must maintain the filesystem integrity,... and there are many other o... |
2025-04-01T04:33:37.100892 | 2022-08-31T10:48:31 | 1357155604 | {
"authors": [
"strophy"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5175",
"repo": "dashevo/dash-network-deploy",
"url": "https://github.com/dashevo/dash-network-deploy/pull/345"
} | gharchive/pull-request | chore: update to elastic 8
Issue being fixed or feature implemented
Elastic Stack 7.x branch will not see any further features and the supporting ansible roles were deprecated.
What was done?
Switch from elastic.beats role to geerlingguy.filebeat
Update Elastic Stack to 8.4.0
Update password and cert generation... |
2025-04-01T04:33:37.105260 | 2015-05-02T17:55:37 | 72676471 | {
"authors": [
"UdjinM6",
"crowning-"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5176",
"repo": "dashpay/dash",
"url": "https://github.com/dashpay/dash/pull/325"
} | gharchive/pull-request | V0.12.0.x various (gitian) build fixes
Same commit as discussed in PMs on dct. I was able to compile binaries for win/mac/linux without any errors on my local gitian VM, please check if it works for you too.
@schinzelh Any news on bamboo build with this? Was it successful?
Have to try this once it's merged.
As you ... |
2025-04-01T04:33:37.118736 | 2016-06-12T11:18:12 | 159822410 | {
"authors": [
"UdjinM6",
"crowning-",
"schinzelh"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5177",
"repo": "dashpay/dash",
"url": "https://github.com/dashpay/dash/pull/882"
} | gharchive/pull-request | Autobackup enhancements + support autobackup in PS
Autobackup refactoring and improvements:
make nWalletBackups globally accessible;
move autobackup code from init.cpp to walletdb.cpp, see AutoBackupWallet function;
refactor autobackup code to warn user if autobackup failed instead of silently ignoring this fact;
re... |
2025-04-01T04:33:37.121141 | 2016-08-12T01:02:29 | 170780032 | {
"authors": [
"UdjinM6",
"crowning-",
"schinzelh"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5178",
"repo": "dashpay/dash",
"url": "https://github.com/dashpay/dash/pull/936"
} | gharchive/pull-request | Bump NO_BLOOM_VERSION and SENDHEADERS_VERSION to match PROTOCOL_VERSION
These features were introduced in bitcoin 0.11/0.12 and our 0.12.0.x nodes (which are bitcoin 0.10 based) are already running on higher protocol (70103). Bumping these to avoid banning nodes for misbehavior (bloom) and correctly (not) push sendhe... |
2025-04-01T04:33:37.142230 | 2022-04-21T19:55:38 | 1211489228 | {
"authors": [
"ayushdg",
"codecov-commenter"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5179",
"repo": "dask-contrib/dask-sql",
"url": "https://github.com/dask-contrib/dask-sql/pull/495"
} | gharchive/pull-request | Timestampdiff support
This pr builds on the great work done in #293 to support timestampdiff operations for additional time units like month/year.
The key issue is that calcite sqlOperatorType for the datetimeSubtractionOperator is the minus operation and was being mapped to subtraction but this is a special operator... |
2025-04-01T04:33:37.147030 | 2018-04-17T09:21:22 | 314975081 | {
"authors": [
"guillaumeeb",
"lesteve"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5180",
"repo": "dask/dask-jobqueue",
"url": "https://github.com/dask/dask-jobqueue/issues/35"
} | gharchive/issue | Python 2: AttributeError: attribute 'doc' of 'type' objects is not writable
Maybe related to https://github.com/dask/dask-jobqueue/issues/31#issuecomment-380869544.
conda create -n tmp27 dask distributed pytest docrep python=2 ipython -c conda-forge -y
ipython -c 'import dask_jobqueue'
------------------------------... |
2025-04-01T04:33:37.150508 | 2024-08-20T16:57:58 | 2476121973 | {
"authors": [
"jrbourbeau",
"rjzamora"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5181",
"repo": "dask/dask",
"url": "https://github.com/dask/dask/issues/11334"
} | gharchive/issue | gpuCI failing
I'm seeing gpuCI failures over in https://github.com/dask/dask/pull/11331 that seem unrelated to the changes in that PR. See here for console logs.
cc @charlesbluca
FWIW there's a similar looking failure over in distributed too https://github.com/dask/distributed/pull/8837
Thanks @jrbourbeau ! I thi... |
2025-04-01T04:33:37.177736 | 2017-10-20T06:11:45 | 267072931 | {
"authors": [
"Leo223",
"RoelantStegmann",
"fjetter",
"jcrist",
"martindurant",
"mrocklin",
"stuckeyr",
"sushmit86",
"wesm",
"xhochy"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.... | gharchive/issue | Error importing Parquet from HDFS using PyArrow
Hi,
I get the following error when attempting to read a parquet file stored on hdfs:
df = dataframe.read_parquet('hdfs://hdfsnn:8020/user/hdfs/ndsparq/Test.parquet', engine='arrow')
---------------------------------------------------------------------------
OSError ... |
2025-04-01T04:33:37.308707 | 2018-11-26T12:12:40 | 384303026 | {
"authors": [
"StephanOpfer"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5183",
"repo": "dasys-lab/alica-plan-designer-fx",
"url": "https://github.com/dasys-lab/alica-plan-designer-fx/issues/9"
} | gharchive/issue | Synchronization Tool
Implement the synchronisation tool:
Click the icon to activate the tool:
icon graphically shows to be active
mouse turns into a small synchronisation icon with an even smaller plus sign (+) at the lower right corner
Click as often as you need into the plan editor field:
creates a synchroni... |
2025-04-01T04:33:37.333606 | 2021-09-01T09:47:44 | 984941414 | {
"authors": [
"Zac-HD",
"honno",
"jakirkham",
"kgryte",
"leofang",
"pmeier",
"rgommers"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5184",
"repo": "data-apis/array-api",
"url": "https://github... | gharchive/issue | Specify NaN behaviour in unique()
Say we have an array with multiple NaN values:
>>> x = xp.full(5, xp.nan)
>>> x
Array([nan, nan, nan, nan, nan])
Should NaNs be treated as unique to one another?
>>> xp.unique(x)
Array([nan, nan, nan, nan, nan])
Or should they be treated as the same?
>>> xp.unique(x)
Array([nan])
... |
2025-04-01T04:33:37.337461 | 2023-01-17T09:02:53 | 1536013349 | {
"authors": [
"jbrockmendel",
"rgommers"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5185",
"repo": "data-apis/dataframe-api",
"url": "https://github.com/data-apis/dataframe-api/pull/98"
} | gharchive/pull-request | Render API docstrings in .py files as html
This does the following:
Ensure the package in spec/API_specification/dataframe_api/ is importable
Ensure all docstrings for objects/methods are rendered in the html docs via autodoc
Add a description for operators supported by the dataframe object (and a few TODOs)
Adds Sp... |
2025-04-01T04:33:37.339655 | 2023-03-14T10:41:59 | 1623200401 | {
"authors": [
"sgarg-CS"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5186",
"repo": "data-integrations/salesforce",
"url": "https://github.com/data-integrations/salesforce/pull/170"
} | gharchive/pull-request | Fixes for PLUGIN-1527 PLUGIN-1533 PLUGIN-1469
PLUGIN-1469
PLUGIN-1527
PLUGIN-1533
Also, added a new method to renew the session if the bulk connection resets.
All commits have been squashed.
|
2025-04-01T04:33:37.351958 | 2023-08-15T12:47:19 | 1851382755 | {
"authors": [
"SLornieCYC"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5187",
"repo": "data-to-insight/quality-lac-data-beta-validator",
"url": "https://github.com/data-to-insight/quality-lac-data-beta-validator/issu... | gharchive/issue | Error code SW03STG1 [Added 2023 v1.1]
Note: This rule was added by DFE in the 2023/24 v1.1 validation check document. It is dependent on #637.
Error information
Error code
SW03STG1
Description to display
For each social worker episode, information should be complete
DfE Long-form description of error
If any social wo... |
2025-04-01T04:33:37.364632 | 2023-05-31T12:26:05 | 1734109763 | {
"authors": [
"nfx",
"souvik-databricks"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5188",
"repo": "databricks/databricks-sdk-py",
"url": "https://github.com/databricks/databricks-sdk-py/issues/133"
} | gharchive/issue | Query History examples missing
The Examples and the README is not helpful for using the SDK when it comes to Query History APIs.
The documentation and user guide needs to be improved else this is not useful and I have to use the python requests package and do everything by myself from scratch.
@nfx sounds good sin... |
2025-04-01T04:33:37.366018 | 2015-01-14T03:46:06 | 54280941 | {
"authors": [
"JoshRosen",
"vishalsingh2972"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5189",
"repo": "databricks/spark-pr-dashboard",
"url": "https://github.com/databricks/spark-pr-dashboard/issues/41"
} | gharchive/issue | When clicking on internal links, scroll to top of page
If I click on a username after having scrolled down the page, React updates the page contents but maintains my scroll position at the bottom of the page. When clicking on most links, it would be more intuitive to stroll to the top of the page.
This should be pre... |
2025-04-01T04:33:37.369507 | 2021-04-07T12:08:01 | 852340448 | {
"authors": [
"SaravShah",
"marek-babic"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5190",
"repo": "databricks/spark-redshift",
"url": "https://github.com/databricks/spark-redshift/issues/459"
} | gharchive/issue | Error when saving a dataframe to Redshift (java.lang.ArrayStoreException: java.lang.invoke.SerializedLambda)
Hi there
I'm using this package io.github.spark-redshift-community:spark-redshift_2.12:4.2.0 as a dependency in the context of AWS EMR job trying to save a dataframe to Redshift.
Sadly this attempt fails with ... |
2025-04-01T04:33:37.398853 | 2021-07-22T23:25:21 | 951131978 | {
"authors": [
"pradh"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5191",
"repo": "datacommonsorg/import",
"url": "https://github.com/datacommonsorg/import/pull/7"
} | gharchive/pull-request | Add protoc generation and formatting to pre-submit
Rely on maven to generate protoc and format code by using different plugins. Also upgrade Java from 8 to 11.
Thanks for the review!
|
2025-04-01T04:33:37.410634 | 2024-05-02T10:11:16 | 2275120292 | {
"authors": [
"dataesri"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5192",
"repo": "dataesr/openalex-affiliations",
"url": "https://github.com/dataesr/openalex-affiliations/issues/147"
} | gharchive/issue | Correction for raw affiliation Department Research Center STIS, M2CS, National Graduate School of Arts and Crafts of Rabat (ENSAM), Biomedical Engineering, Mohammed V University in Rabat, Rabat, MOROCCO
Correction needed for raw affiliation Department Research Center STIS, M2CS, National Graduate School of Arts and C... |
2025-04-01T04:33:37.414958 | 2024-05-16T13:09:01 | 2300363630 | {
"authors": [
"dataesri"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5193",
"repo": "dataesr/openalex-affiliations",
"url": "https://github.com/dataesr/openalex-affiliations/issues/215"
} | gharchive/issue | Correction for raw affiliation Mathematics, Sorbonne UniversitΓ©, Paris, France
Correction needed for raw affiliation Mathematics, Sorbonne UniversitΓ©, Paris, France
raw_affiliation_name: Mathematics, Sorbonne UniversitΓ©, Paris, France
new_rors: 02en5vm52
previous_rors:
works_examples: W4395093900;W4395093950;W4395093... |
2025-04-01T04:33:37.417362 | 2024-10-30T07:54:38 | 2623193352 | {
"authors": [
"dataesri"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5194",
"repo": "dataesr/openalex-affiliations",
"url": "https://github.com/dataesr/openalex-affiliations/issues/7235"
} | gharchive/issue | Correction for raw affiliation INRAE, TETIS, University of Montpellier, AgroParisTech, Montpellier, France
Correction needed for raw affiliation INRAE, TETIS, University of Montpellier, AgroParisTech, Montpellier, France
raw_affiliation_name: INRAE, TETIS, University of Montpellier, AgroParisTech, Montpellier, France... |
2025-04-01T04:33:37.422347 | 2024-05-30T09:52:36 | 2325243579 | {
"authors": [
"dataesri"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5195",
"repo": "dataesr/openalex-affiliations",
"url": "https://github.com/dataesr/openalex-affiliations/issues/776"
} | gharchive/issue | Correction for raw affiliation LS3MN2E-ENSAM, faculty of sciences, Mohammed V University, Rabat
Correction needed for raw affiliation LS3MN2E-ENSAM, faculty of sciences, Mohammed V University, Rabat
raw_affiliation_name: LS3MN2E-ENSAM, faculty of sciences, Mohammed V University, Rabat
new_rors: 00r8w8f84
previous_ror... |
2025-04-01T04:33:37.424407 | 2024-11-20T22:06:09 | 2677331524 | {
"authors": [
"dataesri"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5196",
"repo": "dataesr/openalex-affiliations",
"url": "https://github.com/dataesr/openalex-affiliations/issues/8247"
} | gharchive/issue | Correction for raw affiliation King's University College at Western University, London, Canada
Correction needed for raw affiliation King's University College at Western University, London, Canada
raw_affiliation_name: King's University College at Western University, London, Canada
new_rors: ;02grkyz14
previous_rors:... |
2025-04-01T04:33:37.481179 | 2022-09-27T13:44:28 | 1387795012 | {
"authors": [
"drmingdrmer",
"mfelsche"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5197",
"repo": "datafuselabs/openraft",
"url": "https://github.com/datafuselabs/openraft/issues/565"
} | gharchive/issue | Let Engine deal with AppendResponse::HigherVote error
Vote can not be updated directly. Other related states should be updated accordingly too, such as InternalServerState
#564
Can we consider this fixed now, or are there places left where this should be fixed as well?
It can be closed :)
|
2025-04-01T04:33:37.484303 | 2024-08-03T05:18:55 | 2446109057 | {
"authors": [
"drmingdrmer"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5198",
"repo": "datafuselabs/openraft",
"url": "https://github.com/datafuselabs/openraft/pull/1223"
} | gharchive/pull-request | Refactor: Move sleep_until() and timeout_at() out of AsyncRuntime trait
Changelog
Refactor: Move sleep_until() and timeout_at() out of AsyncRuntime trait
The sleep_until() and timeout_at() functions can be automatically
derived from sleep() and timeout(). This change removes the need for
applications to implement the... |
2025-04-01T04:33:37.487403 | 2022-11-20T19:52:57 | 1457024730 | {
"authors": [
"laem",
"nosgestesclimat"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5199",
"repo": "datagir/nosgestesclimat",
"url": "https://github.com/datagir/nosgestesclimat/issues/1593"
} | gharchive/issue | Air travel describes flying in france
Why describe βhours in Franceβ and βhours in Europe,β etc? Why not just ask how many km flying per year? The first question phrasing canβt be answered by those living outside France, but distance can be answered by anyone
This ticket was created automatically by our robot from o... |
2025-04-01T04:33:37.495201 | 2022-10-24T14:24:56 | 1420922238 | {
"authors": [
"dionissqq",
"katerina-stepanova",
"skalkin"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5200",
"repo": "datagrok-ai/public",
"url": "https://github.com/datagrok-ai/public/issues/1146"
} | gharchive/issue | Filter tags set through code are ignored for structure columns
Steps to reproduce:
Create a dataframe containing structure column
Set tags on it, so that categorical filter would be used:
.ignore-custom-filter = true
.structure-filter-type = Categorical
Open filters and add this structure column to filters
Code exa... |
2025-04-01T04:33:37.498180 | 2018-07-26T11:47:07 | 344810229 | {
"authors": [
"anuveyatsu",
"tanvirchahal"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5201",
"repo": "datahq/frontend",
"url": "https://github.com/datahq/frontend/issues/338"
} | gharchive/issue | Graphs - Implement Graph Updates
Based on #337, implement the graphs to be cleaner and impressive
User Stories
As a designer, I want the graphs to be in better colors, that it complement's datahub's color scheme
As a user, I want cleaner graph UI, so that looking at the graphs is an easy and pleasant user experienc... |
2025-04-01T04:33:37.504367 | 2023-02-15T20:08:49 | 1586484446 | {
"authors": [
"askarbozcan",
"hsheth2"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5202",
"repo": "datahub-project/datahub",
"url": "https://github.com/datahub-project/datahub/issues/7350"
} | gharchive/issue | Why is acryl-datahub Python package uninstalled in datahub-ingestion Docker image?
Describe the bug
Layer 27 of datahub-ingestion image: link
requirements.txt is installed, and then acryl-datahub package is removed, forcing me to redownload it for my own custom image, as I am using datahub-ingestion image for program... |
2025-04-01T04:33:37.507041 | 2023-01-31T18:08:28 | 1564785421 | {
"authors": [
"aditya-radhakrishnan",
"jjoyce0510"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5203",
"repo": "datahub-project/datahub",
"url": "https://github.com/datahub-project/datahub/pull/7196"
} | gharchive/pull-request | fix(ingest-idp): emit empty GroupMembership when there are no groups
Checklist
[x] The PR conforms to DataHub's Contributing Guideline (particularly Commit Message Format)
[x] Links to related issues (if applicable)
[x] Tests for the changes have been added/updated (if applicable)
[x] Docs related to the changes hav... |
2025-04-01T04:33:37.531270 | 2023-12-18T08:36:29 | 2046030493 | {
"authors": [
"iSRIDHARRAO",
"jenkins-datakaveri"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5204",
"repo": "datakaveri/iudx-deployment",
"url": "https://github.com/datakaveri/iudx-deployment/pull/640"
} | gharchive/pull-request | Zookeeper version updated
Modified updated version of zookeeper, tested and verified deployment locally.
Can one of the admins verify this patch?
|
2025-04-01T04:33:37.543609 | 2016-11-05T22:58:07 | 187529436 | {
"authors": [
"gabriel-almeida",
"josecostamartins"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5205",
"repo": "datasciencebr/serenata-de-amor",
"url": "https://github.com/datasciencebr/serenata-de-amor/pull/107"
} | gharchive/pull-request | Family name classifier
I managed to test the ideas that I suggested in #98 in these last days, so I'm pulling a baseline implementation (and getting frustrated with git's complexity). I could use the script from #93 to get the "congressperson_relatives" dataset and test the final learning algorithm.
Some consideratio... |
2025-04-01T04:33:37.548597 | 2014-05-15T16:43:17 | 33603325 | {
"authors": [
"stuartherbert"
],
"license": "bsd-3-clause",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5206",
"repo": "datasift/storyplayer",
"url": "https://github.com/datasift/storyplayer/issues/98"
} | gharchive/issue | Fix: reduce dev mode output
To make the output easier to read, we need to reduce the amount of it.
No longer display the value when we store/retrieve from the checkpoint
No longer display HTTP responses
Make the output more diff friendly by switching to relative timestamps rather than absolute ones (or at least make... |
2025-04-01T04:33:37.558033 | 2021-08-12T17:33:44 | 969249033 | {
"authors": [
"HadesArchitect",
"dan-seol"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5207",
"repo": "datastaxdevs/workshop-intro-to-cassandra",
"url": "https://github.com/datastaxdevs/workshop-intro-to-c... | gharchive/issue | [HW] DAN-SEOL
Name: Dan Seol
Email<EMAIL_ADDRESS>Linkedin Profile: https://www.linkedin.com/in/yunheum-dan-seol/
Attach the homework screenshots below for both step II and step III:
BEFORE DELETE
AFTER DELETE
DATA MODELING
CQL
It was a great session. thank you all!
Hey Dan Seol, great job! Congrats! Here is you... |
2025-04-01T04:33:37.578828 | 2024-02-21T04:43:17 | 2145821802 | {
"authors": [
"Jash2606",
"coolderli",
"jerryshao",
"justinmclean",
"qqqttt123"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5208",
"repo": "datastrato/gravitino",
"url": "https://github.com/dat... | gharchive/issue | [Improvement] Two classes of the same name
What would you like to be improved?
We have two classes with the same name - this could be confusing:
./clients/client-java/src/main/java/com/datastrato/gravitino/client/FilesetCatalog.java
./api/src/main/java/com/datastrato/gravitino/file/FilesetCatalog.java
How should we i... |
2025-04-01T04:33:37.592263 | 2018-12-20T17:08:23 | 393135169 | {
"authors": [
"curran"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5209",
"repo": "datavis-tech/vizhub",
"url": "https://github.com/datavis-tech/vizhub/pull/50"
} | gharchive/pull-request | Add JSX support via Buble
Closes https://github.com/datavis-tech/vizhub-ui/issues/50
Got this working locall with the following program, pulling in React and ReactDOM from unpkg:
import React from 'React';
import ReactDOM from 'ReactDOM';
ReactDOM.render(<h1>foo</h1>, document.getElementById('message'));
More work... |
2025-04-01T04:33:37.602916 | 2018-02-23T20:32:04 | 299841136 | {
"authors": [
"yoshuawuyts"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5210",
"repo": "datrs/dat-network-protocol",
"url": "https://github.com/datrs/dat-network-protocol/issues/1"
} | gharchive/issue | rename to dat-network-protocol
Technically sleep-protocol isn't accurate. SLEEP only describes the disk format. dat-network-protocol would be more accurate.
done!
|
2025-04-01T04:33:37.624451 | 2019-02-15T19:05:35 | 410903599 | {
"authors": [
"davecheney",
"jvmatl"
],
"license": "bsd-2-clause",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5211",
"repo": "davecheney/gcvis",
"url": "https://github.com/davecheney/gcvis/issues/38"
} | gharchive/issue | Are GC Timing Graphs supported?
The README has not been updated since 2015, and it says:
Note: GC timing graphs are only supported for go 1.6
.. is this still true, or was it only true back when Go 1.6 was the new hotness?
It should probably read Go 1.6 or later. But it's likely that the output format has changed... |
2025-04-01T04:33:37.626603 | 2021-12-25T16:20:53 | 1088624206 | {
"authors": [
"davedbase",
"otonashixav"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5212",
"repo": "davedbase/solid-primitives",
"url": "https://github.com/davedbase/solid-primitives/issues/42"
} | gharchive/issue | createMediaQuery initial state
Why does createMediaQuery use onMount to update its signal instead of directly creating it with mql.matches? From my perspective this would return a signal reflecting the current state of the media query immediately instead of only after effects have run. Avoiding the effect also allows... |
2025-04-01T04:33:37.633216 | 2021-02-10T19:38:10 | 805809574 | {
"authors": [
"scala-steward"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5213",
"repo": "davenverse/mules-redis",
"url": "https://github.com/davenverse/mules-redis/pull/58"
} | gharchive/pull-request | Update cats-core to 2.4.1
Updates org.typelevel:cats-core from 2.1.1 to 2.4.1.
GitHub Release Notes - Changelog - Version Diff
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you have any feedback, just ... |
2025-04-01T04:33:37.637561 | 2023-11-15T16:22:52 | 1995114242 | {
"authors": [
"LasneF",
"daveshanley"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5214",
"repo": "daveshanley/vacuum",
"url": "https://github.com/daveshanley/vacuum/issues/369"
} | gharchive/issue | spectral rules looks not working correctly
given the spectral rules like this
openapi-v3-schema-properties-names-camel-case:
description: Ensuring that schema property names are camel case.
message: All schema property names should be camel case.
severity: warn
given: "$..properties"
then:
function: casing
functionO... |
2025-04-01T04:33:37.656809 | 2023-11-12T14:20:00 | 1989426005 | {
"authors": [
"davicotico",
"tomadmiraal"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5215",
"repo": "davicotico/Menu-Editor",
"url": "https://github.com/davicotico/Menu-Editor/issues/5"
} | gharchive/issue | Buttons are not working
I've created a small demo:
<!DOCTYPE html>
<html lang="nl" dir="ltr">
<head>
<link rel="stylesheet"<EMAIL_ADDRESS> <script<EMAIL_ADDRESS> </head>
<body>
<div id="navigation-items"></div>
<script>
var items = [{"text":"Home","href":"/home","icon":"fa-solid fa-house"... |
2025-04-01T04:33:37.665386 | 2023-03-03T07:37:38 | 1608103230 | {
"authors": [
"david-tejada"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5216",
"repo": "david-tejada/rango",
"url": "https://github.com/david-tejada/rango/issues/89"
} | gharchive/issue | crown <hint> not taking into account sticky headers when scrolling behavior is "smooth"
Since I check if the element is on top just after calling the scroll function, when using smooth scrolling the element still hasn't scrolled to its final position.
It might be possible to use a combination of element.scrollIntoV... |
2025-04-01T04:33:37.687954 | 2018-07-04T14:51:41 | 338305178 | {
"authors": [
"davidgiven",
"drawkula"
],
"license": "bsd-2-clause",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5217",
"repo": "davidgiven/cowgol",
"url": "https://github.com/davidgiven/cowgol/pull/6"
} | gharchive/pull-request | doc is in md format - fixing links
*.html ββ· *.md for language, toolchain, bbcdist, cpmdist, fuzixdist
Sadly, it's supposed to be like that --- the links are translated to HTML before deployment with Jekyll at http://cowlark.com/wordgrinder. I know this makes them less useful standalone, but I don't have link rewri... |
2025-04-01T04:33:37.689337 | 2021-05-25T03:46:36 | 900230980 | {
"authors": [
"davidgiven",
"hharte"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5218",
"repo": "davidgiven/fluxengine",
"url": "https://github.com/davidgiven/fluxengine/pull/267"
} | gharchive/pull-request | Northstar: Fix configurations.
Tested read/write with 350K, 175K, and 87K disks.
facepalm
Also, I didn't know you could issue pull requests for other pull requests!
Thanks David, I didnβt know that either, but I couldnβt figure out how else to submit a patch with the change to the review.
|
2025-04-01T04:33:37.784814 | 2021-03-20T22:09:05 | 836921429 | {
"authors": [
"Andarist",
"SimeonC",
"davidkpiano",
"mattpocock"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5219",
"repo": "davidkpiano/xstate",
"url": "https://github.com/davidkpiano/xstate/issues/2020"
} | gharchive/issue | @xstate/inspect should not bail in production
@xstate/inspect works when process.env.NODE_ENV === 'development', but fails when NODE_ENV === 'production'. This is due to this line of code:
https://github.com/davidkpiano/xstate/blob/f3870f837e7d86bd4e3a1d28485e76b026579291/packages/core/src/devTools.ts#L43
Reproductio... |
2025-04-01T04:33:37.789394 | 2023-11-10T20:16:38 | 1988326020 | {
"authors": [
"davidlj95"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5220",
"repo": "davidlj95/chrislb",
"url": "https://github.com/davidlj95/chrislb/issues/202"
} | gharchive/issue | Replace @ngaox/seo library with something else
It's forcing use of --legacy-peer-deps given requires Angular v15 as peer dep. But app is using Angular v16 and soon will be v17. Which is a PIA. When using npm, bun doesn't care.
There's probably a more updated / popular dependency for metadata. We need:
Set the page t... |
2025-04-01T04:33:37.811829 | 2021-08-21T12:51:48 | 976130459 | {
"authors": [
"tjenkinson"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5221",
"repo": "davidtheclark/cosmiconfig",
"url": "https://github.com/davidtheclark/cosmiconfig/pull/260"
} | gharchive/pull-request | Do not crash if there is a directory named after a search place
Recently fixed a very similar bug in eslint π
refs https://github.com/rollup/plugins/pull/981
I've added an entry to the changelog. It's pretty unlikely someone would actually hit the bug given naming a directory "package.json" is pretty strange. We'r... |
2025-04-01T04:33:37.813427 | 2016-11-07T21:53:03 | 187839758 | {
"authors": [
"davidwagn"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5222",
"repo": "davidwagn/FighterEvo",
"url": "https://github.com/davidwagn/FighterEvo/issues/16"
} | gharchive/issue | Fix FeelerPos
To explain: Currently atleast the rendering of the FeelerPos is not consistent with how it should be. It needs to be tested if the computed FeelerPos is correct (likely, considering that for the vector of the FeelerPos the same method is used as for moving in forward direction, which works fine), and th... |
2025-04-01T04:33:37.818604 | 2023-05-23T05:22:59 | 1721208480 | {
"authors": [
"davila7",
"sonydaman"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5223",
"repo": "davila7/code-gpt-docs",
"url": "https://github.com/davila7/code-gpt-docs/issues/152"
} | gharchive/issue | Can't install 'danielsanmedium.dscodegpt' extension because it is not compatible with the current version of Visual Studio Code (version 1.69.1).
Can't install 'danielsanmedium.dscodegpt' extension because it is not compatible with the current version of Visual Studio Code (version 1.69.1).
@sonydaman @handersonc
P... |
2025-04-01T04:33:37.826097 | 2017-02-08T20:25:43 | 206314222 | {
"authors": [
"LipillaiDave",
"davinkevin"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5224",
"repo": "davinkevin/AngularStompDK",
"url": "https://github.com/davinkevin/AngularStompDK/issues/49"
} | gharchive/issue | If server goes down, AngularStompDK will automatically reconnect over a hundred times after it comes up at times
Hello,
If I put the server down to update it, when it comes back up, clients will keep connecting to it over and over. Sometimes it is over a hundred times per client that is only receiving & sending messa... |
2025-04-01T04:33:37.854146 | 2020-12-03T19:01:50 | 756474883 | {
"authors": [
"kseniiaguzeeva",
"sameerpremji"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5225",
"repo": "dbeaver/dbeaver",
"url": "https://github.com/dbeaver/dbeaver/issues/10602"
} | gharchive/issue | Export Preferences to JSON/XML file?
System information:
Operating system (distribution) and version: Windows 10 (x64)
DBeaver version: 7.3.0
Connection specification:
Database name and version: Not relevant to the question
Describe your question: Is there a way to export my Preferences (Window --> Preferences) t... |
2025-04-01T04:33:37.856419 | 2018-03-14T07:59:58 | 305056280 | {
"authors": [
"infectormp",
"rohit9771",
"serge-rider"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5226",
"repo": "dbeaver/dbeaver",
"url": "https://github.com/dbeaver/dbeaver/issues/3143"
} | gharchive/issue | Not able to connect to SQL server database from DBeaver 4.3.5
Hello Team,
I'm facing connection issue whereas my fellow associates are able to connect to MS SQL db thru Dbeaver.
I sense there is some firewall or something blocking my connection.
Any suggestion would be helpful.
Thanks.
Can you connect to db withou... |
2025-04-01T04:33:37.859873 | 2020-02-24T20:14:43 | 570118613 | {
"authors": [
"jerkstorecaller",
"uslss"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5227",
"repo": "dbeaver/dbeaver",
"url": "https://github.com/dbeaver/dbeaver/issues/7990"
} | gharchive/issue | How to set a sticky parameter/variable valid for duration of session?
System information:
Operating system (distribution) and version : Windows 10
DBeaver version: <IP_ADDRESS>002151353
Connection specification:
SQLite
Describe your question:
I have a bunch of SQL scripts I wrote to analyze data from SQLite dbs.... |
2025-04-01T04:33:37.862314 | 2020-02-28T12:25:11 | 572724620 | {
"authors": [
"kseniiaguzeeva",
"serge-rider"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5228",
"repo": "dbeaver/dbeaver",
"url": "https://github.com/dbeaver/dbeaver/issues/8035"
} | gharchive/issue | Defining virtual keys: "Use all columns" btn doesn't work
System information:
Operating system (distribution) and version Win 10
DBeaver version 7.0.0
Describe the problem you're observing:
Defining virtual keys: "Use all columns" btn doesn't work
Seems, it is not a bug as I described above, but is it expected r... |
2025-04-01T04:33:37.885251 | 2023-07-04T11:56:50 | 1787788082 | {
"authors": [
"E1izabeth",
"MashaKorax",
"bianyun"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5229",
"repo": "dbeaver/dbeaver",
"url": "https://github.com/dbeaver/dbeaver/pull/20470"
} | gharchive/pull-request | dbeaver#18312 Complete some Simplified Chinese localization work
The missing properties files mentioned in issue #18312 haven't been created yet (PR #20464 did this, but haven't been merged yet), so localization in those places still doesn't work.
Therefore, based on the current latest version, I have localized Simpl... |
2025-04-01T04:33:37.886385 | 2023-09-04T07:54:06 | 1879719668 | {
"authors": [
"Destrolaric",
"MashaKorax"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5230",
"repo": "dbeaver/dbeaver",
"url": "https://github.com/dbeaver/dbeaver/pull/21103"
} | gharchive/pull-request | dbeaver/dbeaver#21099 fix crash for users with space in username
Closes dbeaver/dbeaver#21099
verified
|
2025-04-01T04:33:37.912873 | 2022-07-06T16:06:55 | 1296063267 | {
"authors": [
"emmyoop"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5231",
"repo": "dbt-labs/dbt-core",
"url": "https://github.com/dbt-labs/dbt-core/issues/5444"
} | gharchive/issue | [CT-815] Partial parsing error at execution for metric modification
I think there might be a minor issue related to partial parsing. We now have metric references in models. If a model and metric have been parsed and the metric is deleted or renamed, I'm pretty sure we aren't scheduling the model for re-parsing, so t... |
2025-04-01T04:33:37.918958 | 2022-08-02T00:28:38 | 1325131270 | {
"authors": [
"ChenyuLInx",
"lostmygithubaccount"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5232",
"repo": "dbt-labs/dbt-core",
"url": "https://github.com/dbt-labs/dbt-core/issues/5598"
} | gharchive/issue | [CT-974] [SPIKE] support UDF in python models
Is this your first time submitting a feature request?
[X] I have read the expectations for open source contributors
[X] I have searched the existing issues, and I could not find an existing issue for this feature
[X] I am requesting a straightforward extension of existin... |
2025-04-01T04:33:37.930046 | 2023-02-22T16:32:41 | 1595425133 | {
"authors": [
"dtger",
"emirkmo",
"matthieucan"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5233",
"repo": "dbt-labs/dbt-docs",
"url": "https://github.com/dbt-labs/dbt-docs/pull/375"
} | gharchive/pull-request | Integrate mermaid.js to render graphs in markdown
resolves #338
Description
Hello,
This PR integrates mermaid.js into dbt docs.
The idea is to render markdown code blocks using the mermaid language into their corresponding visual representation.
For example, the following code block:
{% docs my_model %}
hello world
... |
2025-04-01T04:33:37.938883 | 2023-07-16T19:44:18 | 1806698773 | {
"authors": [
"smarthomeagentur"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5234",
"repo": "dcaputo-harmoni/open-balena-admin",
"url": "https://github.com/dcaputo-harmoni/open-balena-admin/issues/23"
} | gharchive/issue | SSH Remote with kubernetes setup
Hi,
I tried kubernetes the first time today and got everything running on AWS EKS and HELM Scripts(openbalena, openbalena-admin). I added a device and I also made it to push a image to the device. all this works fine via UI. Btw amazing work, I love it!
now the cherry on top would be ... |
2025-04-01T04:33:37.949584 | 2022-10-18T09:32:25 | 1412886308 | {
"authors": [
"FalloutCrew",
"mjthoraval"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5235",
"repo": "dcartertod/zotero-plugins",
"url": "https://github.com/dcartertod/zotero-plugins/issues/24"
} | gharchive/issue | Unable to find ZoteroPreview.xpi
The readme installation instruction is to begin by downloading ZoteroPreview.xpi . However, I am unable to locate this file in this rep.
Is the file renamed? A clarification would be useful.
Ah, thanks a lot.
I found the link originally, but Firefox gave me an error message. I reali... |
2025-04-01T04:33:37.955144 | 2020-05-16T14:58:33 | 619493151 | {
"authors": [
"jornwildenbeest",
"marianvlad",
"mennotempelaar",
"milewski"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5236",
"repo": "dcasia/nova-json-wrapper",
"url": "https://github.com/dcasia/nova-js... | gharchive/issue | Error saving the resource
I'm using Nova 3 and when I save the resource I get "json_decode() expects parameter 1 to be string, array given" JsonWrapper.php#L104
Same here
#8 did not fix the json_decode error
I think this may happen because the attribute is being cast to an array? is there any $casts=[] set on a... |
2025-04-01T04:33:37.971314 | 2014-05-30T17:44:47 | 34666114 | {
"authors": [
"DenisDubovitskiy",
"JaKXz",
"JonDum",
"KeitIG",
"KyleKing",
"NeXTs",
"dciccale"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5237",
"repo": "dciccale/css2stylus.js",
"url": "https:... | gharchive/issue | @media
So @media tags aren't rendering so well right now.
input:
@media only screen and (max-width: 998px) {
.page.grid {
padding: 0% 4%;
}
}
output:
@media
only
screen
and
(max-width
&:
998px)
.page.grid {
padding 0% 4%
It looks like the code is t... |
2025-04-01T04:33:37.974823 | 2022-04-13T11:00:39 | 1203140550 | {
"authors": [
"TobsenHH",
"aetha",
"dckiller51",
"edenhaus",
"lazodar"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5238",
"repo": "dckiller51/bodymiscale",
"url": "https://github.com/dckiller51... | gharchive/issue | V2.1.0 no input for Birthday
no input field for birthday
Subscribing, I get the same issue.
Do you have version 2022.4.0.b0 at least?
Did you have the choice of the date before the error message?
Do not enter the date manually, otherwise you will get this error message.
You can click on the years for a quick sel... |
2025-04-01T04:33:37.988427 | 2016-12-22T21:58:58 | 197275260 | {
"authors": [
"mlunoe",
"nLight"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5239",
"repo": "dcos/dcos-ui",
"url": "https://github.com/dcos/dcos-ui/pull/1689"
} | gharchive/pull-request | Adjusting the scroll container listener to be the page content
βΉοΈ This is the same fix as for release 1.8: https://github.com/dcos/dcos-ui/pull/1688
Before:
After:
retest this please
|
2025-04-01T04:33:37.990846 | 2017-01-17T23:08:31 | 201432741 | {
"authors": [
"jfurrow",
"mlunoe",
"nLight",
"wavesoft"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5240",
"repo": "dcos/dcos-ui",
"url": "https://github.com/dcos/dcos-ui/pull/1805"
} | gharchive/pull-request | DCOS-12560: Move column style properties to external stylesheet
This PR moves the column width and visibility styles for the ServicesTable to its an external stylesheet, following the same pattern as other tables the UI.
It also:
increases the width of the resources columns to prevent text wrapping
removes the @base... |
2025-04-01T04:33:38.002957 | 2020-06-04T13:51:25 | 630844201 | {
"authors": [
"mesosphere-ci",
"mesosphere-renovate"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5241",
"repo": "dcos/dcos-ui",
"url": "https://github.com/dcos/dcos-ui/pull/4714"
} | gharchive/pull-request | chore(deps): update dependency stylelint to v13.6.0
This PR contains the following updates:
Package
Type
Update
Change
stylelint (source)
devDependencies
minor
13.5.0 -> 13.6.0
Release Notes
stylelint/stylelint
v13.6.0
Compare Source
Added: ignoreSelectors[] to block-opening-brace-space-before (#β4640).
... |
2025-04-01T04:33:38.009496 | 2017-07-12T18:22:20 | 242471431 | {
"authors": [
"amitaekbote",
"philipnrmn"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5242",
"repo": "dcos/dcos",
"url": "https://github.com/dcos/dcos/pull/1723"
} | gharchive/pull-request | [1.9.2] Bump dcos-metrics hash
High Level Description
This PR updates dcos-metrics to the latest master. This brings in a fix to a bug where app data would be lost if it was not sent as a single batch. Additionally, a stability fix which was already in master is brought back into 1.9.2 in this PR.
Related Issues
DCO... |
2025-04-01T04:33:38.010670 | 2016-08-02T20:08:09 | 168976283 | {
"authors": [
"cmaloney",
"orsenthil"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5243",
"repo": "dcos/dcos",
"url": "https://github.com/dcos/dcos/pull/470"
} | gharchive/pull-request | Add a pkgpanda package that will say what roles are active
This makes it so we have a state of what is currently running, instead of the state of what might be running.
cc: @alberts @orsenthil @lingmann @spahl
LGTM.
|
2025-04-01T04:33:38.017622 | 2018-04-12T20:51:45 | 313883064 | {
"authors": [
"judithpatudith",
"s-t-e-v-e-n-k"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5244",
"repo": "dcos/examples",
"url": "https://github.com/dcos/examples/issues/296"
} | gharchive/issue | jenkins - update example for 1.11
Thanks for your interest in updating the Jenkins example! This example hasn't been updated in a few releases because it's incredibly complex and few people have the resources to fully update it. If you update this example, please feel free to simplify it considerably (browse other ex... |
2025-04-01T04:33:38.025267 | 2020-07-11T10:15:31 | 655180473 | {
"authors": [
"FrancisRussell",
"mathstuf"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5245",
"repo": "dcrewi/rust-mersenne-twister",
"url": "https://github.com/dcrewi/rust-mersenne-twister/issues/10"
} | gharchive/issue | Out of date with rand crate (0.7)
Rand is now at 0.7, making it hard to use this crate with it.
See #7.
|
2025-04-01T04:33:38.081326 | 2020-10-21T21:31:25 | 726877774 | {
"authors": [
"ddibiasi",
"shan-tws"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5254",
"repo": "ddibiasi/Funker",
"url": "https://github.com/ddibiasi/Funker/issues/8"
} | gharchive/issue | OBEX File Transfer Failed:
OBEX file transfer failed with exception:
at.dibiasi.funker.error.BluetoothConnectionException: Session is null
Sorry for the late reply, I did not get an E-Mail from GitHub, telling me about this issue.
Seems like you have not called the connect() method.
This snipped should help you:
va... |
2025-04-01T04:33:38.118770 | 2022-10-18T04:22:47 | 1412549846 | {
"authors": [
"ddworken",
"raguay"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5255",
"repo": "ddworken/hishtory",
"url": "https://github.com/ddworken/hishtory/issues/3"
} | gharchive/issue | [Support] fish with oh-my-fish
It would be great to support the fish shell and the oh-my-fish setting of the prompt.
I forgot, I use the oh-my-posh in fish to generate the command line status/prompt. I think it would need to work with it's format.
Added! v0.147 now supports fish. If you already have hishtory inst... |
2025-04-01T04:33:38.139285 | 2018-05-31T14:45:58 | 328169332 | {
"authors": [
"deanhet",
"imtmh"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5256",
"repo": "deanhet/react-native-text-ticker",
"url": "https://github.com/deanhet/react-native-text-ticker/issues/4"
} | gharchive/issue | TypeError:expected dynamic type 'double',but had type null (constructing arguments for UIManager.measure at argument index 0)
I got the above error,
Currently, I am using the TextTicker for the header, so Its working for the first screen, but when i navigate to the second screen the above error is popping up.
_re... |
2025-04-01T04:33:38.164556 | 2022-11-16T16:58:20 | 1451954321 | {
"authors": [
"scala-steward"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5257",
"repo": "debasishg/tradeioZ",
"url": "https://github.com/debasishg/tradeioZ/pull/88"
} | gharchive/pull-request | Update sbt-scalafmt to 2.5.0
Updates org.scalameta:sbt-scalafmt from 2.4.6 to 2.5.0.
GitHub Release Notes - Version Diff
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you have any feedback, just mentio... |
2025-04-01T04:33:38.171511 | 2023-04-11T13:43:59 | 1662520826 | {
"authors": [
"scala-steward"
],
"license": "MIT",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5258",
"repo": "debasishg/tradeioZ2",
"url": "https://github.com/debasishg/tradeioZ2/pull/179"
} | gharchive/pull-request | Update zio, zio-macros, zio-streams, zio-test, ... to 2.0.12
About this PR
π¦ Updates
dev.zio:zio
dev.zio:zio-macros
dev.zio:zio-streams
dev.zio:zio-test
dev.zio:zio-test-sbt
from 2.0.2 to 2.0.12
π GitHub Release Notes - Version Diff
Usage
β
Please merge!
I'll automatically update this PR to resolve conflicts as l... |
2025-04-01T04:33:38.190292 | 2024-04-23T02:02:09 | 2257772823 | {
"authors": [
"debcaldarola",
"threeStoneLei1"
],
"license": "BSD-2-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5259",
"repo": "debcaldarola/fedsam",
"url": "https://github.com/debcaldarola/fedsam/issues/11"
} | gharchive/issue | Thanks for the open source code, can you please provide the code to visualize the loss landscape?
Thanks for the open source code, can you please provide the code to visualize the loss landscape?
Hi,
our loss landscape plots are computed using Tom Goldstein's repo as reference.
|
2025-04-01T04:33:38.191779 | 2022-10-05T15:28:09 | 1397988729 | {
"authors": [
"harveyyue",
"jpechane"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5260",
"repo": "debezium/debezium",
"url": "https://github.com/debezium/debezium/pull/3937"
} | gharchive/pull-request | DBZ-5674 Invalid DDL statement could not be parsed crashes kafka-connect for MySql
https://issues.redhat.com/browse/DBZ-5674
Upstream pr: https://github.com/antlr/grammars-v4/pull/2862
@harveyyue Applied, thanks!
|
2025-04-01T04:33:38.193751 | 2023-03-29T05:41:55 | 1645072592 | {
"authors": [
"MartinMedek",
"jpechane",
"obabec"
],
"license": "apache-2.0",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5261",
"repo": "debezium/debezium",
"url": "https://github.com/debezium/debezium/pull/4406"
} | gharchive/pull-request | DBZ-1661 Verify streaming off of secondary works
β¦g from mysql slave
@MartinMedek It seems there is a conflit in the release pipeline. Did you pull the latest main?
@MartinMedek It seems there is a conflit in the release pipeline. Did you pull the latest main?
should be fixed now
@obabec Is there anything els... |
2025-04-01T04:33:38.207943 | 2017-08-27T08:46:09 | 253150313 | {
"authors": [
"beworker",
"eagleeye",
"elmigranto"
],
"license": "mit",
"license_source": "bigquery",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5262",
"repo": "debitoor/chai-subset",
"url": "https://github.com/debitoor/chai-subset/pull/66"
} | gharchive/pull-request | Adding a compare function to be used in expected object template
The idea of this PR is to add a possibility of using a compare function inside the expected object. This allows to check not only static values, but also add more sophisticated checks like check for being not null, check for been defined etc.
Here is th... |
2025-04-01T04:33:38.226659 | 2023-08-25T13:29:11 | 1867060822 | {
"authors": [
"LautaroPetaccio"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5263",
"repo": "decentraland/profile",
"url": "https://github.com/decentraland/profile/issues/232"
} | gharchive/issue | Assets tab
Contains all the tasks needed to build the Assets tab.
Private Zenhub Image
Closing it as it's already done.
|
2025-04-01T04:33:38.230825 | 2022-02-22T21:30:51 | 1147387054 | {
"authors": [
"kdenhartog",
"peacekeeper"
],
"license": "Apache-2.0",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5264",
"repo": "decentralized-identity/did-registration",
"url": "https://github.com/decentralized-identity/did-registr... | gharchive/issue | Define a way to polyfill method specific driver in to a browser API
Thinking about where I see this going, I think one of the clear places I could see this getting implemented would be as a Browser API since DIDs have been standardized at W3C. However, one thing that's certain is that browser vendors won't want to su... |
2025-04-01T04:33:38.240072 | 2022-05-31T03:46:36 | 1253296212 | {
"authors": [
"breathiness",
"deckerst"
],
"license": "BSD-3-Clause",
"license_source": "github-api",
"license_type": "permissive",
"provenance": "gharchive-dolma-0004.json.gz:5265",
"repo": "deckerst/aves",
"url": "https://github.com/deckerst/aves/issues/263"
} | gharchive/issue | Add images storage size information to the overlay layer of the image view page
Sometimes I save images with the same resolution, but different storage sizes.
I can't see the storage size of the images in the software.
Do you know that you can swipe up to show more information, including the storage size? ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.