id
stringlengths 4
10
| text
stringlengths 4
2.14M
| source
stringclasses 2
values | created
timestamp[s]date 2001-05-16 21:05:09
2025-01-01 03:38:30
| added
stringdate 2025-04-01 04:05:38
2025-04-01 07:14:06
| metadata
dict |
---|---|---|---|---|---|
1316692382
|
Support symbolic links
Hi @woelper,
thank you for providing dircpy! I notice it ignores symbolic links at the moment. Only files and directories are handled.
I implemented the necessary functionality. Note that I had to use path.symlink_metadata().is_ok() to check if a file exists, as path.exists() follows symbolic links. That is, if the symbolic link was dangling, it would return false and the link wouldn't be copied. Also, metadata() would follow symbolic links, which is not what we want here.
Nice, thanks! Wow, I would have never guessed that symlink_metadata() Queries the metadata about a file without following symlinks. I'll merge this PR, but I think I might add a test before I release. If you want to write one, feel free to do so!
Does this #5 work for you?
Thanks, yes. Merged #5 . Nice work!
I like the functionality as it is now as default - it basically recreates a folder 1:1.
As for ergonomics, do you think it makes sense to add options to skip symlinks or dereference them? Or is this something people will not need?
Crates.io version has been released.
Crates.io version has been released.
Nice! Thanks
As for ergonomics, do you think it makes sense to add options to skip symlinks or dereference them? Or is this something people will not need?
I was thinking about this as well. Typically, symbolic links convey some semantics. E.g., one might use a symlink to ensure the same content is found at various file paths. And wants to keep this invariant, even after some program modifies the file via one of the paths. Or to save space referencing a huge file from multiple paths.
There is the exception though of symbolic links that become dangling in the destination because they don't reference a path within the copied directory...
I, personally, don't see the use for skipping symbolic links, dereferencing during copy might have its use though.
|
gharchive/pull-request
| 2022-07-25T11:30:23 |
2025-04-01T06:40:56.622386
|
{
"authors": [
"fzgregor",
"woelper"
],
"repo": "woelper/dircpy",
"url": "https://github.com/woelper/dircpy/pull/4",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
264559064
|
OutOfMemory Crash during capture using back-facing camera
Is this a bug report?
Yes
Have you read the Contributing Guidelines?
Yes
Environment
Android Studio 3.0 Beta 7
Samsung Galaxy S5
com.wonderkiln:camerakit:0.11.1
Steps to Reproduce
Load up a CameraView
Capture image using the back-facing camera
Application crashes with OutOfMemoryError during ExifUtil.decodeBitmapWithRotation
When using the front-facing camera there is no issue.
I think the crash is due to resolution differences between the front/back facing cameras.
Expected Behavior
I thought the picture will be transferred to the CameraListener I've set up.
Actual Behavior
Application crashes:
E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker
Process: com.orons.weddingapp, PID: 4186
java.lang.OutOfMemoryError: Failed to allocate a 63489036 byte allocation with 16777216 free bytes and 41MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:939)
at android.graphics.Bitmap.createBitmap(Bitmap.java:912)
at android.graphics.Bitmap.createBitmap(Bitmap.java:843)
at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:34)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:511)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:277)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1142)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:145)
at android.os.HandlerThread.run(HandlerThread.java:61)
Reproducible Demo
(Paste the link to an example project and exact instructions to reproduce the issue.)
I'm actually facing the same issue
Environment
Android Studio 2.3.3
Device 1:
Samsung Galaxy S5 (G900F)
Android 6.0.1
com.wonderkiln:camerakit:0.10.1 and com.wonderkiln:camerakit:0.11.1
Device 2:
Samsung Galaxy A5 (SM-A520F)
Android 7.0.0
com.wonderkiln:camerakit:0.10.1
Device 3:
Samsung Galaxy A5
Android 6.0.1
com.wonderkiln:camerakit:0.10.1
Steps to Reproduce
Declare CameraView in xml
Capture image using the back-facing camera
Application crashes with OutOfMemoryError during ExifUtil.decodeBitmapWithRotation
When using the front-facing camera there is no issue.
Expected Behavior
I thought the picture will be transferred to the CameraListener I've set up.
Actual Behavior
Application crashes:
FATAL EXCEPTION: CameraViewWorker
Process: it.wedigital.silcamykeys, PID: 32735
java.lang.OutOfMemoryError: Failed to allocate a 63489036 byte allocation with 16771680 free bytes and 43MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:34)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:511)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:277)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:158)
at android.os.HandlerThread.run(HandlerThread.java:61)
FYI - This happens on the demo app as well.
10-11 15:18:44.765 23141-23162/com.wonderkiln.camerakit.demo E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker
Process: com.wonderkiln.camerakit.demo, PID: 23141
java.lang.OutOfMemoryError: Failed to allocate a 63489036 byte allocation with 16766656 free bytes and 39MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:34)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:511)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:277)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:158)
at android.os.HandlerThread.run(HandlerThread.java:61)
It happened to me too, same on Samsung devices.
As a quick fix...although it isn't recommended by Google I've added
android:largeHeap="true"
in the application tag in the Manifest
and also handled the Error (again...hacking)
Hope you'll fix this soon though, it's not the safest.
I've faced the same issue with CameraKit on my project where I'm currently using this library. I connected library as a module and made some changes to ExifUtil class like creating bitmap with inSampleSize equals to 2 just for reducing bitmap in-memory size. There is a method that I've added to ExifUtil class:
private static Bitmap getSampledBitmap(byte[] picture) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
options.inSampleSize = SAMPLED_SIZE_DEFAULT; // equals to 2
options.inJustDecodeBounds = false;
return BitmapFactory.decodeByteArray(picture, 0, picture.length, options);
}
We are working on a fix for this today and will be part of the 0.11.2 release. Will keep this ticket updated as it progresses!
@pihariev Yeah that's how I've fixed it locally, will be out in a release sometime today.
Fixed via https://github.com/wonderkiln/CameraKit-Android/pull/204
Going into testing via @AndrewGable and @capezzbr and will close if resolved.
Unfortunately this isn't fixed for the Samsung S5, this is the stack trace I get running the demo app on the latest master
10-20 16:48:35.195 7896-7941/com.wonderkiln.camerakit.demo W/art: Throwing OutOfMemoryError "Failed to allocate a 63489036 byte allocation with 16777216 free bytes and 40MB until OOM"
10-20 16:48:35.205 7896-7941/com.wonderkiln.camerakit.demo E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker
Process: com.wonderkiln.camerakit.demo, PID: 7896
java.lang.OutOfMemoryError: Failed to allocate a 63489036 byte allocation with 16777216 free bytes and 40MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:38)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:520)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:288)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:158)
at android.os.HandlerThread.run(HandlerThread.java:61)
Moved to 0.12.0 milestone @AndrewGable -- thanks for reOpening and the trace!
Facing same in Moto G3 Android 6.0
Throwing OutOfMemoryError "Failed to allocate a 48688652 byte allocation with 16773168 free bytes and 21MB until OOM"
FATAL EXCEPTION: CameraViewWorker
Process: com.example.ritesh.rkcamera, PID: 32260
java.lang.OutOfMemoryError: Failed to allocate a 48688652 byte allocation with 16773168 free bytes and 21MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.BitmapRegionDecoder.nativeDecodeRegion(Native Method)
at android.graphics.BitmapRegionDecoder.decodeRegion(BitmapRegionDecoder.java:188)
at com.wonderkiln.camerakit.CenterCrop.(CenterCrop.java:36)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:530)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:288)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1111)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.os.HandlerThread.run(HandlerThread.java:61)
Facing same issue on Samsung Galaxy J7 Duos.
`
E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker
java.lang.OutOfMemoryError: Failed to allocate a 38340876 byte allocation with 16777216 free bytes and 36MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:38)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:512)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:280)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.os.HandlerThread.run(HandlerThread.java:61)
`
Facing the same issue on Samsung Galaxy J7
`
E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker
java.lang.OutOfMemoryError: Failed to allocate a 38340876 byte allocation with 16777216 free bytes and 36MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:975)
at android.graphics.Bitmap.createBitmap(Bitmap.java:946)
at android.graphics.Bitmap.createBitmap(Bitmap.java:877)
at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:38)
at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:512)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:280)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.os.HandlerThread.run(HandlerThread.java:61)
Facing the same issue on Samsung Galaxy J7
E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker Process: me.veganbuddy.veganbuddy, PID: 16262 java.lang.OutOfMemoryError: Failed to allocate a 38340876 byte allocation with 16777216 free bytes and 36MB until OOM at dalvik.system.VMRuntime.newNonMovableArray(Native Method) at android.graphics.Bitmap.nativeCreate(Native Method) at android.graphics.Bitmap.createBitmap(Bitmap.java:975) at android.graphics.Bitmap.createBitmap(Bitmap.java:946) at android.graphics.Bitmap.createBitmap(Bitmap.java:877) at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:38) at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:512) at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:280) at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.os.HandlerThread.run(HandlerThread.java:61)
Facing the same issue on Samsung Galaxy J7
E/AndroidRuntime: FATAL EXCEPTION: CameraViewWorker Process: me.buddy.buddy, PID: 16262 java.lang.OutOfMemoryError: Failed to allocate a 38340876 byte allocation with 16777216 free bytes and 36MB until OOM at dalvik.system.VMRuntime.newNonMovableArray(Native Method) at android.graphics.Bitmap.nativeCreate(Native Method) at android.graphics.Bitmap.createBitmap(Bitmap.java:975) at android.graphics.Bitmap.createBitmap(Bitmap.java:946) at android.graphics.Bitmap.createBitmap(Bitmap.java:877) at com.wonderkiln.camerakit.ExifUtil.decodeBitmapWithRotation(ExifUtil.java:38) at com.wonderkiln.camerakit.CameraView$CameraListenerMiddleWare.onPictureTaken(CameraView.java:512) at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:280) at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1165) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.os.HandlerThread.run(HandlerThread.java:61)
Fixed in 0.12.0. Update dependency to:
compile 'com.wonderkiln:camerakit:0.12.0'
Hi,
This issue still there in Samsung Galaxy Note5 (SM-N920I).
Here is the log
java.lang.OutOfMemoryError: Failed to allocate a 63489036 byte allocation with 16777216 free bytes and 30MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.BitmapRegionDecoder.nativeDecodeRegion(Native Method)
at android.graphics.BitmapRegionDecoder.decodeRegion(BitmapRegionDecoder.java:285)
at com.wonderkiln.camerakit.PostProcessor.getBitmap(PostProcessor.java:84)
at com.wonderkiln.camerakit.PostProcessor.getJpeg(PostProcessor.java:42)
at com.wonderkiln.camerakit.CameraView$5.imageCaptured(CameraView.java:439)
at com.wonderkiln.camerakit.Camera1$2.onPictureTaken(Camera1.java:288)
at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1115)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
at android.os.HandlerThread.run(HandlerThread.java:61)
|
gharchive/issue
| 2017-10-11T12:00:41 |
2025-04-01T06:40:56.672412
|
{
"authors": [
"AndrewGable",
"BharathKumarBachina",
"Jameido",
"abhisheksingapore",
"austinkettner",
"dwillmc",
"pihariev",
"ritesh94",
"tamper2",
"tartacutza"
],
"repo": "wonderkiln/CameraKit-Android",
"url": "https://github.com/wonderkiln/CameraKit-Android/issues/199",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
310505958
|
Fix readme.md's typo
In getting started section, I think the command should be react-google-ads.
I've try to npm i -S react-google-ades but not working.
$ npm i -S react-google-ades
npm ERR! code E404
npm ERR! 404 Not Found: react-google-ades@latest
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/dc_hideokamoto/.npm/_logs/2018-04-02T14_48_42_089Z-debug.log
Thanks for merging :)
|
gharchive/pull-request
| 2018-04-02T14:51:38 |
2025-04-01T06:40:56.681091
|
{
"authors": [
"hideokamoto"
],
"repo": "wonism/react-google-ads",
"url": "https://github.com/wonism/react-google-ads/pull/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
161426934
|
showcase multiple targets?
How can I showcase multiple targets?
@power7714 Is there any solution ?
|
gharchive/issue
| 2016-06-21T12:43:27 |
2025-04-01T06:40:56.933157
|
{
"authors": [
"Midhilaj",
"power7714"
],
"repo": "wooplr/Spotlight",
"url": "https://github.com/wooplr/Spotlight/issues/6",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2263662712
|
Fix typo in release script
Description
Documentation
Does this require changes to the WorkOS Docs? E.g. the API Reference or code snippets need updates.
[ ] Yes
If yes, link a related docs PR and add a docs maintainer as a reviewer. Their approval is required.
|
gharchive/pull-request
| 2024-04-25T13:56:07 |
2025-04-01T06:40:57.031910
|
{
"authors": [
"amadeo-workos"
],
"repo": "workos/workos-kotlin",
"url": "https://github.com/workos/workos-kotlin/pull/216",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1388649555
|
android input issue
Reconsider the input problem of the editor under android, any ideas are welcome.
keep composition input state for Sougou Keyboard #228
Hi @RaulPROP and @BitPhinix,
I have been trying to handle Android input issues for slate-angular. I tested several input cases in the richtext demo, inlines demo, and markdown demo using multiple input methods like Gboard, Sougou Keyboard, Baidu IME, and others. I also validated some issues mentioned in this PR: https://github.com/ianstormtaylor/slate/pull/4988. It has been working fine so far.
Could someone please help me verify whether there are any other problems? Thank you very much!
|
gharchive/issue
| 2022-09-28T03:04:41 |
2025-04-01T06:40:57.035967
|
{
"authors": [
"pubuzhixing8"
],
"repo": "worktile/slate-angular",
"url": "https://github.com/worktile/slate-angular/issues/216",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1962590675
|
🛑 WoSC Files is down
In d77ab4d, WoSC Files (https://files.worldofsteelcraft.tk) was down:
HTTP code: 0
Response time: 0 ms
Resolved: WoSC Files is back up in 55adf93 after 9 minutes.
|
gharchive/issue
| 2023-10-26T02:32:25 |
2025-04-01T06:40:57.042780
|
{
"authors": [
"dplayz"
],
"repo": "worldofsteelcraft/status",
"url": "https://github.com/worldofsteelcraft/status/issues/153",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
447570551
|
Errors trying to compile auto-generated REST api package
Steps to recreate:
Created chaincode usschainx
Tests OK
Attempt to create REST api as follows:
npm install -g @worldsibu/convector-rest-api
conv-rest-api generate api -c usschainx -p usschain2
REST api package created OK
npx lerna run compile --scope usschainx-app
Tool Versions:
conv version 1.1.3
hurl version 1.0.5
convector-rest-api version 1.0.8
I am running this command: npx lerna run compile --scope usschainx-app
THE ERROR:
../../node_modules/fabric-shim/node_modules/winston/index.d.ts(4,23): error TS4090: Conflicting definitions for 'node' found at '/Users/mac/WORLD_SIBU/unemployment-services-chaincode-repo/usschain2/node_modules/fabric-shim/node_modules/@types/node/ts3.2/index.d.ts' and '/Users/mac/WORLD_SIBU/unemployment-services-chaincode-repo/usschain2/node_modules/@types/node/ts3.2/index.d.ts'. Consider installing a specific version of this library to resolve the conflict.
../../node_modules/fabric-shim/node_modules/winston/lib/winston/config/index.d.ts(4,23): error TS4090: Conflicting definitions for 'node' found at '/Users/mac/WORLD_SIBU/unemployment-services-chaincode-repo/usschain2/node_modules/fabric-shim/node_modules/@types/node/ts3.2/index.d.ts' and '/Users/mac/WORLD_SIBU/unemployment-services-chaincode-repo/usschain2/node_modules/@types/node/ts3.2/index.d.ts'. Consider installing a specific version of this library to resolve the conflict.
../../node_modules/fabric-shim/node_modules/winston/lib/winston/transports/index.d.ts(4,23): error TS4090: Conflicting definitions for 'node' found at '/Users/mac/WORLD_SIBU/unemployment-services-chaincode-repo/usschain2/node_modules/fabric-shim/node_modules/@types/node/ts3.2/index.d.ts' and '/Users/mac/WORLD_SIBU/unemployment-services-chaincode-repo/usschain2/node_modules/@types/node/ts3.2/index.d.ts'. Consider installing a specific version of this library to resolve the conflict.
I re-generated my rest api a few more times and still falling down. If a link to my repo would help:
https://github.com/malengatiger/unemployment-services-chaincode-repo/tree/master/usschain2
Thanks!
|
gharchive/issue
| 2019-05-23T10:20:55 |
2025-04-01T06:40:57.049167
|
{
"authors": [
"malengatiger"
],
"repo": "worldsibu/convector-rest-api",
"url": "https://github.com/worldsibu/convector-rest-api/issues/7",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
57015806
|
Postgresql
Hey, maybe this is not an issue but i have a question about dejavu. How is it possible to use it with postgresql? I create a new database script and rewrite the sql statements. But since there is no hex or unhex function in postgresql it wont work. I use the encode/decode function but for example the decode function returns a longer string than the unhex in mysql. Is there any solution?
EDIT:
i found a way to create a postgresql script. Can be closed
@BeeZerk do you mean a database adapter? Would welcome a pgsql PR if you have one working.
@worldveil yeah i have one now. But my python knowledge isnt that good so maybe there are some bugs. But i can create fingerprints from a directory and recognize files. If you want i send it to you
The best way to do this would be to migrate the current adapter to sqlalchemy which is not very hard.
|
gharchive/issue
| 2015-02-09T10:58:01 |
2025-04-01T06:40:57.051313
|
{
"authors": [
"BeeZerk",
"avilaton",
"worldveil"
],
"repo": "worldveil/dejavu",
"url": "https://github.com/worldveil/dejavu/issues/69",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2298302167
|
🛑 Ombi is down
In 5a262e6, Ombi (https://ombi.wouterplanet.com) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Ombi is back up in 3e0aba7 after 25 minutes.
|
gharchive/issue
| 2024-05-15T15:59:20 |
2025-04-01T06:40:57.064388
|
{
"authors": [
"woeterman94"
],
"repo": "wouterplanet/monitoring",
"url": "https://github.com/wouterplanet/monitoring/issues/129",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
772910787
|
Lanugage selector script does not take in new language
I am working on a multi-language website, and wanted to add a language that is currently not part of the pre-translated 34 ones, Slovak. I followed the instructions, created an sk.yaml in the i18n directory in root, give the menu parameters, and the website is built, but cannot be accesssed from the main language (English) interface.
For understanding what is happening, I created three languages, en, nl, and sk.
http://...url/sk/ shows the website, but it is not accessible from the English/Dutch interface language selector.
http://...url/nl/ not only shows the Dutch website, but the language selector works as expected.
http://...url/ shows the default English and allows the selection of the Dutch version (nl)
I think that there is a script that emunerates the languages, but I cannot locate it. Because the all other UI elements are correctly shown in Slovak. I think that the problem is that the string 'Slovak' needs to be inserted to a language list, and of course, needs to be translated in existing languages. For example, the Dutch version language list knows that English = Engels, but does not know how to call Slovak.
Creating menus
The new documentation (compared to earlier academic versions) suggests to create new toml files for each language. As you can see if you click through, this is not necessary, the Dutch menu comes up nicely when the menus.toml is configured with both English and Dutch.
I tried to configure here the Slovak language, too, and then I also followed the suggested route, i.e. the creation of a separate menu.sk.toml [This may require clarification in the documentation, but I think both approaches work fine.]
I believe that the problem is in the language selector script, becasue in fact the Slovak website is created properly, with Slovak title, and Slovak scripting.
Technical details:
Link to your GitHub project: https://github.com/dataobservatory-eu/listen-local-website/
Wowchemy Version (from your go.mod): go 1.15, github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20201220004521-6c434e6de205
Hugo Version (run hugo version): 0.79.0
Browser/OS: Windows10
Wowchemy Template: module github.com/wowchemy/starter-academic
Extra:
Needless to say that as soon as I resolve this issue, I'll send a pull request with a new Slovak localization, and an update of Dutch, Estonian, Hungarian versions, as some recent improvements in the UI were not followed in the lanugage.yaml files.
You added your new language in your config/_default/languages.toml right?
|
gharchive/issue
| 2020-12-22T12:30:14 |
2025-04-01T06:40:57.070724
|
{
"authors": [
"antaldaniel",
"rodrigoalcarazdelaosa"
],
"repo": "wowchemy/wowchemy-hugo-modules",
"url": "https://github.com/wowchemy/wowchemy-hugo-modules/issues/2048",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1551884581
|
Crash Report 1486025123
Link:
https://wowsims.github.io/wotlk/rogue/#eJztmE1IFGEYx+d5dnadHRRft2Bnl93Yhg4iBDOzSS4E79SpwIMFgXgyaMNDh8WbniQySugQVNgeCoRCwkPRum1ZK30JCq5LHwt9LIiQGZqYFGwG0TuzHQvZN729P4aXZz7+/5f5zW3UoIIG9kAKBwBGAXIARYAlgEMkhm1gQyek4Lx7KyCFB71nwNdx+kRfslfxEl84A2ojuTCO2ueo7ss+w4Ucqn5S+YC6Z5KN9ST7CLX5qO65fgPVOnIpj9qVCIucY5FMSPct3kd2qCrZeIDa4C4dJLWB3GGZyxFdLuRQYm3PH7K2DdbWSDLszi8WY23VwjFWeDWiyuRiHtk6dMtZy2+ddeWx88BIFrXZKBueTriDTNITqMvsnb0jOIvqMEqCvxIwak30ywpo2BVkH0rWMIbN2OaxcRgOhGUCGgxBi2G0xi3DZGurZbITZ47vNSw2OIdhxE12xbIscwHqlZk5JO/nUJv6iEsgr0FdGqR3IKVR0r/v8Vf33Gc3VYeddih9zWGaJqpXinT3KZcStcYxdlRTWrb7a5+1t6TGePJfPd3BHQdrzVSdtZftP8kKPQzdILxthvAmvPEivPEhvPEhvPEhvPEhvPEhvPEhvPEhvPEhvPEhvPEhvPGxdd6OuX8Mb7r/mb7SmeX2vhepH7TW7pPH++8trxb/kVuj+48k3ni+vab5u6XkeuITnRqY7Fksl+h0x21/V2Gd9iZHgyudAbvWfbebgNFcKaTHXoXsBvPll59Bn71Z4jefGhdT
RNG Seed: 3532051829
runtime error: invalid memory address or nil pointer dereference
Stack Trace:
goroutine 11 [running]:
runtime/debug.Stack()
/opt/hostedtoolcache/go/1.18.10/x64/src/runtime/debug/stack.go:24 +0x6
github.com/wowsims/wotlk/sim/core.runSim.func1()
/home/runner/work/wotlk/wotlk/sim/core/sim.go:59 +0x10
panic({0xeeb00, 0x1340fa0})
/opt/hostedtoolcache/go/1.18.10/x64/src/runtime/panic.go:838 +0x29
github.com/wowsims/wotlk/sim/rogue.(*Rogue).setupAssassinationRotation(0x210a000, 0x151d4a0)
/home/runner/work/wotlk/wotlk/sim/rogue/assassination_rotation.go:292 +0x104
github.com/wowsims/wotlk/sim/rogue.(*Rogue).setPriorityItems(0x210a000, 0x151d4a0)
/home/runner/work/wotlk/wotlk/sim/rogue/rotation.go:268 +0x10
github.com/wowsims/wotlk/sim/rogue.(*Rogue).Reset(0x210a000, 0x151d4a0)
/home/runner
Clear your cache for the site and it will run.
Clearing cache didn't seem to solve the issue. Running a specific talent set seems to be the cause of the issue. Here's an export link
https://wowsims.github.io/wotlk/rogue/#eJzjEudgMmDKYCxgamBkXMHIuIOR8QIj4wtGRicBBSYLRgfGCMYCxg6wlBCDVCNrEyNbQE5iZWoRB6sAm9QGRi5+gc17mCReyiqxbTvM9GgHExenwI87TErM+4FMHoFtQLkHskrM8+YzcbELXN7NJDFVBqhlPVB4i6QSG1ARSB2XwK+dTBKtckqMDED2XaDkFBkQm1PgyC6gUb+ASvgFtgCF/wH1AI2CmDZ1G5PENBkuFoHefUxAsmsniLx7E0S+2QtSMPcBk8QxHi42gXVJEh9FgMIHdzMpsQD9y7qI6SwT1wwmhlGAFQgZkKqjioWDUYIpShwYTywSTApMGkwWzA5MMxhtpFgEGCUYuxi1DAxMjY0MDIGkqZEhkANiG+saGAEZIGRgYGwIFDEyMjJ8xMjDceo8k8Dt88Doe8r0gpHlAyP7LEaGW4wMs5gYlO5KcELsNHEQhDBEHCRnzQSBk/aWEJEL9oppYHDN3mgrk0KgBIcWrWO7xYEqxhgcpMicBHFhR1L1QMLM564DVOcPew/GBMbRcCMERsNtNNzIBaPhRh4YDTfywGi4kQdGw408MBpu5IHRcCMPUC/cgsA9w6Xg/sRH+1OvfSqPFvy0J9XslNCqza/fXcCh74O9uaflVeYvV+z3bbyW+snyuf2xhv0Zz+5esz8ZsIoz6twn+6LUFeJvIoQcSLWX1kDIQOPHuVlrLks68BpeevtbnM2BkA4AMSDqFA==
I will take a look at that. Thanks for letting me know it wasn't just old settings
|
gharchive/issue
| 2023-01-21T18:59:06 |
2025-04-01T06:40:57.078856
|
{
"authors": [
"catszeid",
"polocabbit"
],
"repo": "wowsims/wotlk",
"url": "https://github.com/wowsims/wotlk/issues/2442",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2063956544
|
replace Phoenix.HTML.Tag
contributes to #299
coverage: 100.0%. remained the same
when pulling 4ce52639d5a7d881fc260878d88ed03f2f4a0432 on remove-phoenix-html-tag-references
into ce208adb84b44c575f4e322d86396a98d5d80bbf on main.
|
gharchive/pull-request
| 2024-01-03T12:32:35 |
2025-04-01T06:40:57.085272
|
{
"authors": [
"coveralls",
"woylie"
],
"repo": "woylie/flop_phoenix",
"url": "https://github.com/woylie/flop_phoenix/pull/308",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
138444738
|
Port Package Functional Tests page from wiki
From https://github.com/wp-cli/wp-cli/issues/2508
Handled this in #112
|
gharchive/pull-request
| 2016-03-04T10:58:22 |
2025-04-01T06:40:57.088073
|
{
"authors": [
"danielbachhuber",
"gilbitron"
],
"repo": "wp-cli/wp-cli.github.com",
"url": "https://github.com/wp-cli/wp-cli.github.com/pull/92",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
728839692
|
타 사이트 지원 여부
실례지만 혹시 카카오나 탑툰, 레진 같은 사이트도 지원 가능성이 있을까요..?
덕분에 정말 편하게 읽고 있습니다. 감사합니다 !
없습니다.
|
gharchive/issue
| 2020-10-24T17:46:00 |
2025-04-01T06:40:57.154135
|
{
"authors": [
"kimhomo",
"wr-rainforest"
],
"repo": "wr-rainforest/Naver-Webtoon-Downloader",
"url": "https://github.com/wr-rainforest/Naver-Webtoon-Downloader/issues/3",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2243781704
|
Language Detection
Need a Wrangle to simply detect the langauge of texst, not translate it. I searched the DeepL API docs and it doesn't seem to do this directly. It doesd return the detected language, but you must specify the targe language.
I found an Azure API that does this explicitly. What do you think about giving it a try?
https://learn.microsoft.com/en-us/azure/ai-services/language-service/language-detection/how-to/call-api
The general use case is processing a file that has multiple languages. Specifically, as an input to PRA, I need the language in order to direct the search to the appropriate country / websites.
I'm hoping that we can do this w a Recipe just like we did for the Google Address validation.
Closing this. Achieved with extract.ai using a prompt.
|
gharchive/issue
| 2024-04-15T14:05:28 |
2025-04-01T06:40:57.156450
|
{
"authors": [
"ChrisWRWX",
"ebhills"
],
"repo": "wrangleworks/WranglesPY",
"url": "https://github.com/wrangleworks/WranglesPY/issues/455",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
751845404
|
[Feature Request] Raw Strings
I think that a simple raw string would be beneficial when using lots of texts with double-quotes and similar needs to escape characters.
I think using the backtick character (`) (similar to Javascript) could be an option to delimiter a raw string.
var raw = `This is a "Raw" String`
var raw2 = `
This can be done too %(not_interpolated)
`
Thanks 👍
I prefer Rust syntax because using this syntax there's no way to encode a backtick in the string.
Rust syntax:
r then zero to infinite #s then the string then the same number of #s as in the start.
For example:
r"I am a raw string an I can include \"
r#"I am an another raw string and I can include even " (and of course \ too)"#
r#####"I am a third raw strings and I can include " then up to 4 #s - see: "#### "#####
Syntax:
RAW_STRING_LITERAL :
r RAW_STRING_CONTENT
RAW_STRING_CONTENT :
" <text> "
| # RAW_STRING_CONTENT #
(From The Rust Reference).
You are right that a single backtick character would need to be escaped too.
But that kind of syntax is in my humble opinion, not much Wren like.
If something can be to pass variables that can be done with replace.
r"My not interpolated "string" with {param}".toString.replace("{param}", 42)
If something can be to pass variables that can be done with replace.
That's true but not relevant.
r"My not interpolated "string" with {param}".toString.replace("{param}", 42)
Your string isn't valid because you have " inside.
how about using python's """ for delimiting a raw string?
Then you cannot encode """. Yes, this is rarer, but still.
Ok, how about using the current string method. But just adding a new escape character %r(). Then the interpolation logic would detect that and convert the contents to codepoints until the end of the parenthesis, later will interpolate the string and finally convert %r() back from codepoints to a string.
var raw = "
%r("This is a raw string")
"
First, that can collide with format specifiers that we may have in the future.
Second, it does not solve the problem of escaping the end marker.
Third, I find it strange and unnatural.
Maybe it can't be helped but for raw strings, a new keyword must be provided. Unless there is some syntax sugar that could be added to convert to raw codepoints before interpolation. I don't know xd.
Here is a discussion of raw strings in Swift. https://github.com/apple/swift-evolution/blob/master/proposals/0200-raw-string-escaping.md
I'm not arguing that raw strings are not useful, I'm just saying that about the proposed syntax.
C# raw strings are pretty good. I love C#, but in this case, I think that Rust and C++ approaches are better. Remember that raw strings are often (although not always) used in the context of long strings, and in those places, even double quotes instead of one can confuse and break the read continuity. For example, how is reading this:
@"
<!DOCTYPE html>
<html lang=""en"">
<head>
<title>My Title</title>
<head>
<h1 style=""font-family: Arial;"">Header</h1>
<script src=""script.js""></script>
</html>
"
Versus reading this:
r#"
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Title</title>
<head>
<h1 style="font-family: Arial;">Header</h1>
<script src="script.js"></script>
</html>
"#
When I read the first example my eyes jump here and there because of the extra quotes. The second example is clear and easy to read. I also had in some project a list of strings that were aligned, and the quotes broke the alignment and make everything ugly.
A simple solution would be to extend regular string to allow newlines to be
included. It has the benefit to allow raw like string at the cost of
requiring to escape the escape char.
Be careful that raw lines also open the line termination character, that is
OS dependent.
Considering last point and that it is an option that one hardly use, all in
all I don't find it really worth it to add.
Nevertheless, I find at least it should be addressed the escape double-quotes use case. It's a common character, especially in JSON and HTML documents. The "fat quotes" (""") can be provided to automatically:
1: Enable using double quotes without escaping
2: Remove incidental white-space
var json = """
{
"my": "json"
}
"""
I'd like to see raw strings added to Wren too.
Personally, I dislike the way C++ and Rust do it. Although they can cope with just about anything it's just too complicated for my taste.
The Go language uses back-ticks to delineate raw strings but a lot of people aren't happy that you can't then include back-ticks themselves in the raw string.
The best solution in my view is to use triple quotes. A number of languages have adopted this as a reasonable solution. You can't then include triple quotes in the raw string but how often does that come up? - not very often I suspect.
A simple solution would be to extend regular string to allow newlines to be included. It has the benefit to allow raw like string at the cost of requiring to escape the escape char.
What wasn't clear when I said:
Also I think it is important to say here that Wren supports multiline string literals (for some reason it's not stated in the docs).
You can't then include triple quotes in the raw string but how often does that come up? - not very often I suspect.
When you include a code in the language that includes raw string. That happened to me.
Single quotes aren't currently used by Wren, couldn't we use a single-quoted string as a raw string?
If we did, then we wouldn't be able to include single-quotes in the raw string and they're commoner in my experience than back-ticks and certainly much more common than triple double-quotes.
Other languages like Elixir uses the concept of sigils ~s()and ~S()
https://elixir-lang.org/getting-started/sigils.html#strings
~s(String with escape codes \x26 #{"inter" <> "polation"})
"String with escape codes & interpolation"
~S(String without escape codes \x26 without #{interpolation})
"String without escape codes \\x26 without \#{interpolation}"
I think this has been solved by @ruby0x1 https://github.com/wren-lang/wren/commit/8304fd5ecc8b367f5ece477fd0808f1f0c33f7e8 👍 💯
I'm super happy about it. Thanks Ruby!
I forgot to comment here but I was working on it and it was ready.
Here's the documentation: https://wren.io/values.html#raw-strings
What a pleasant surprise :)
I've been thinking about this for some time and was convinced that triple double-quotes were the best solution for a simple language such as Wren. The ignoring of white-space when the triple quotes are on their own line is also a nice touch.
If your raw string does happen to include code in Wren itself or in a language which also uses triple quotes for raw strings, then this will normally be easy to deal with by temporarily replacing the triple double-quotes with single quotes, viz:
"""
A markdown string with embedded wren code example.
class Example {
construct code() {
var s = '''I'm an embedded raw string!'''
}
}
""".replace("'''", "\"\"\"")
With this feature in place maybe it is a good time to revisit unit testing?
@PureFox48 yea, replace works and you can also do combining
"""
some long parts"""
+ "\"\"\"" +
"""
the rest
"""
|
gharchive/issue
| 2020-11-26T22:08:09 |
2025-04-01T06:40:57.176512
|
{
"authors": [
"ChayimFriedman2",
"PureFox48",
"benpop",
"clsource",
"mhermier",
"ruby0x1"
],
"repo": "wren-lang/wren",
"url": "https://github.com/wren-lang/wren/issues/851",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
230280904
|
Add configurable timeout for metric labels.
When using highly variable metrics we'd like to bound memory use a bit by not persisting metrics which have stopped being sent to the underlying logger.
Default behaviour should be "forever" - practical behaviour for example, in the specific case of logging DNS requests/responses should let us configure an "age-out" period.
Closed by #3
|
gharchive/issue
| 2017-05-22T04:17:34 |
2025-04-01T06:40:57.190935
|
{
"authors": [
"wrouesnel"
],
"repo": "wrouesnel/tail_exporter",
"url": "https://github.com/wrouesnel/tail_exporter/issues/2",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1706915214
|
[APIM][2.5.0] Invalid code error while optimising for profiles
Description
While testing the Key Manager profile following issue was identified.
Following logs were observed while optimising for the key manager profile.
bin % sh profileSetup.sh -Dprofile=api-key-manager
Starting to optimize API Manager for the Key Manager profile
sed: 1: "../repository/conf/api- ...": invalid command code .
[2023-05-11 16:18:24:N] INFO - Disabled the <DataPublisher> from api-manager.xml file
sed: 1: "../repository/conf/api- ...": invalid command code .
[2023-05-11 16:18:24:N] INFO - Disabled the <JMSConnectionDetails> from api-manager.xml file
sed: 1: "../repository/conf/api- ...": invalid command code .
[2023-05-11 16:18:24:N] INFO - Disabled the <PolicyDeployer> from api-manager.xml file
sed: 1: "../repository/conf/axis ...": invalid command code .
[2023-05-11 16:18:24:N] INFO - Disabled the <transportSender name="ws" class="org.wso2.carbon.websocket.transport.WebsocketTransportSender"> from axis2.xml file
sed: 1: "../repository/conf/axis ...": invalid command code .
[2023-05-11 16:18:24:N] INFO - Disabled the <transportSender name="wss" class="org.wso2.carbon.websocket.transport.WebsocketTransportSender"> from axis2.xml file
Due to those commands were not executed several errors were generated when trying to start the key manager.
Similar issue was observed for other profiles as well
Product : wso2am-2.5.0
Update level : 68
Steps to Reproduce
Get a U2 updated wso2am-2.5.0 pack.
Run the <PRODUCT_HOME>/bin/profileSetup.sh script using sh <PRODUCT_HOME>/bin/profileSetup.sh -Dprofile=api-key-manager
Affected Component
APIM
Version
2.5.0
Environment Details (with versions)
macOS (Apple M1 Pro)
Relevant Log Output
No response
Related Issues
No response
Suggested Labels
No response
closing this issue as it has been resolved internally.
|
gharchive/issue
| 2023-05-12T04:44:05 |
2025-04-01T06:40:57.210292
|
{
"authors": [
"SavinduDimal",
"YasasRangika"
],
"repo": "wso2/api-manager",
"url": "https://github.com/wso2/api-manager/issues/1817",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1274660297
|
Start error on Macbook M1
Description
Application throw exception when I trying execute,
org.osgi.framework.BundleException: Could not resolve module: io.netty.codec-http [29]
Unresolved requirement: Import-Package: com.aayushatharva.brotli4j.encoder; resolution:="optional"
Unresolved requirement: Import-Package: com.jcraft.jzlib; resolution:="optional"
Unresolved requirement: Import-Package: sun.nio.ch; resolution:="optional"
Unresolved requirement: Import-Package: org.eclipse.jetty.npn; version="[1.0.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.eclipse.jetty.alpn; version="[1.0.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: io.netty.handler.ssl; version="[4.1.0,5.0.0)"
-> Export-Package: io.netty.handler.ssl; bundle-symbolic-name="io.netty.handler"; bundle-version="4.1.74.Final"; version="4.1.74"; uses:="io.netty.buffer,io.netty.channel,io.netty.handler.codec,io.netty.util,io.netty.util.concurrent,javax.crypto,javax.net.ssl"
io.netty.handler [33]
Unresolved requirement: Import-Package: sun.security.x509; resolution:="optional"
Unresolved requirement: Import-Package: org.eclipse.jetty.npn; version="[1.0.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.eclipse.jetty.alpn; version="[1.0.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.bouncycastle.asn1.x500; version="[1.69.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.bouncycastle.cert; version="[1.69.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.bouncycastle.cert.jcajce; version="[1.69.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.bouncycastle.jce.provider; version="[1.69.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.bouncycastle.operator; version="[1.69.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.bouncycastle.operator.jcajce; version="[1.69.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.conscrypt; version="[2.5.0,3.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: sun.nio.ch; resolution:="optional"
Unresolved requirement: Import-Package: io.netty.internal.tcnative; version="[2.0.0,3.0.0)"
-> Export-Package: io.netty.internal.tcnative; bundle-symbolic-name="io.netty.tcnative-boringssl-static"; bundle-version="2.0.45.Final"; version="2.0.45"
Steps to Reproduce
Run command
sh wso2si-4.1.0/bin/server.sh
Affected Component
SI
Version
4.1.0
Environment Details (with versions)
Macbook Pro M1 2021
Java 11 (for Apple M1 chip)
WSO2 SI version 4.1.0
Relevant Log Output
org.osgi.framework.BundleException: Could not resolve module: io.netty.codec-http [29]
Unresolved requirement: Import-Package: com.aayushatharva.brotli4j.encoder; resolution:="optional"
Unresolved requirement: Import-Package: com.jcraft.jzlib; resolution:="optional"
Unresolved requirement: Import-Package: sun.nio.ch; resolution:="optional"
Unresolved requirement: Import-Package: org.eclipse.jetty.npn; version="[1.0.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: org.eclipse.jetty.alpn; version="[1.0.0,2.0.0)"; resolution:="optional"
Unresolved requirement: Import-Package: io.netty.handler.ssl; version="[4.1.0,5.0.0)"
-> Export-Package: io.netty.handler.ssl; bundle-symbolic-name="io.netty.handler"; bundle-version="4.1.74.Final"; version="4.1.74"; uses:="io.netty.buffer,io.netty.channel,io.netty.handler.codec,io.netty.util,io.netty.util.concurrent,javax.crypto,javax.net.ssl"
Related Issues
No response
Suggested Labels
No response
@vinhphamduc Have you been able to figure this out? I have tested above mentioned version on an Apple M1 Pro chip with OpenJDK Runtime Environment Temurin-11.0.16.1+1 and couldn't observe the above mentioned issue
|
gharchive/issue
| 2022-06-17T07:12:16 |
2025-04-01T06:40:57.227172
|
{
"authors": [
"AnuGayan",
"vinhphamduc"
],
"repo": "wso2/api-manager",
"url": "https://github.com/wso2/api-manager/issues/204",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2146192566
|
Maintaining minor OpenAPI document version
Description
APIM 3.2.0 U2 level 332 onwards, we can see the following behavior.
Go to the Publisher Portal and browse to the API definition.
Change the "info.version" property value to "1.0.1" (Assuming the initial value is "1.0.0").
Update the API.
The "info.version" property value reverts back to the "1.0.0" (API's version)
Therefore, cannot maintain the minor version on the OpenAPI document.
Steps to Reproduce
Mentioned in the description.
Affected Component
APIM
Version
3.2.0
Environment Details (with versions)
No response
Relevant Log Output
No response
Related Issues
No response
Suggested Labels
No response
Hi all,
As per discussions within the team, this is not a recommended/valid approach. In 4.x.x versions, the API version in the OAS file should align with the version of the managed API. Hence, we will be closing this issue and we won't send a fix to master.
Thank you
Avishka
|
gharchive/issue
| 2024-02-21T09:10:29 |
2025-04-01T06:40:57.232064
|
{
"authors": [
"Avishka-Shamendra",
"shavinsenadheera"
],
"repo": "wso2/api-manager",
"url": "https://github.com/wso2/api-manager/issues/2500",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2213148101
|
Fixed UI Styling Issues in API Security Audit Report Viewing Page
Fixes https://github.com/wso2/api-manager/issues/2570
New UI
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.You have signed the CLA already but the status is still pending? Let us recheck it.
|
gharchive/pull-request
| 2024-03-28T12:42:02 |
2025-04-01T06:40:57.236227
|
{
"authors": [
"CLAassistant",
"piyumaldk"
],
"repo": "wso2/apim-apps",
"url": "https://github.com/wso2/apim-apps/pull/656",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
568850201
|
Refactor DSS editor webapp
Purpose
Refactoring DSS editor webapp
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.You have signed the CLA already but the status is still pending? Let us recheck it.
All committers have signed the CLA.
|
gharchive/pull-request
| 2020-02-21T09:52:37 |
2025-04-01T06:40:57.263304
|
{
"authors": [
"CLAassistant",
"claassistantio",
"dilee"
],
"repo": "wso2/devstudio-tooling-dss",
"url": "https://github.com/wso2/devstudio-tooling-dss/pull/99",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
925921298
|
Sync Dev with Main
Purpose
Sync Dev with Main to add Slack and Choreo logo to Config Files
Closing since the changes are already pushed to main.
|
gharchive/pull-request
| 2021-06-21T07:37:07 |
2025-04-01T06:40:57.264480
|
{
"authors": [
"Nashaath"
],
"repo": "wso2/docs-choreo-dev",
"url": "https://github.com/wso2/docs-choreo-dev/pull/175",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2439238968
|
[WIP] roxy api config doc changes
Purpose
Describe the problems, issues, or needs driving this feature/fix and include links to related issues in the following format: Resolves issue1, issue2, etc.
Goals
Describe the solutions that this feature/fix will introduce to resolve the problems described above
Approach
Describe how you are implementing the solutions. Include an animated GIF or screenshot if the change affects the UI (email documentation@wso2.com to review all UI text). Include a link to a Markdown file or Google doc if the feature write-up is too long to paste here.
User stories
Summary of user stories addressed by this change>
Release note
Brief description of the new feature or bug fix as it will appear in the release notes
Documentation
Link(s) to product documentation that addresses the changes of this PR. If no doc impact, enter “N/A” plus brief explanation of why there’s no doc impact
Training
Link to the PR for changes to the training content in https://github.com/wso2/WSO2-Training, if applicable
Certification
Type “Sent” when you have provided new/updated certification questions, plus four answers for each question (correct answer highlighted in bold), based on this change. Certification questions/answers should be sent to certification@wso2.com and NOT pasted in this PR. If there is no impact on certification exams, type “N/A” and explain why.
Marketing
Link to drafts of marketing content that will describe and promote this feature, including product page changes, technical articles, blog posts, videos, etc., if applicable
Automation tests
Unit tests
Code coverage information
Integration tests
Details about the test cases and coverage
Security checks
Followed secure coding standards in http://wso2.com/technical-reports/wso2-secure-engineering-guidelines? yes/no
Ran FindSecurityBugs plugin and verified report? yes/no
Confirmed that this PR doesn't commit any keys, passwords, tokens, usernames, or other secrets? yes/no
Samples
Provide high-level details about the samples related to this feature
Related PRs
List any other related PRs
Migrations (if applicable)
Describe migration steps and platforms on which migration has been tested
Test environment
List all JDK versions, operating systems, databases, and browser/versions on which this feature/fix was tested
Learning
Describe the research phase and any blog posts, patterns, libraries, or add-ons you used to solve the problem.
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.You have signed the CLA already but the status is still pending? Let us recheck it.
|
gharchive/pull-request
| 2024-07-31T06:28:46 |
2025-04-01T06:40:57.275562
|
{
"authors": [
"CLAassistant",
"aka4rKO"
],
"repo": "wso2/docs-ob-toolkit-cds",
"url": "https://github.com/wso2/docs-ob-toolkit-cds/pull/82",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
948273727
|
Cannot generate a REST API with a WSDL file on Windows
Description:
Windows specific bug regarding generating a REST API with a WSDL file.
Steps to reproduce:
On Windows OS:
Go to publisher portal -> "I have a SOAP endpoint"
Implementation type = Generate REST APIs
Input type = WSDL File/Archive
Choose a WSDL file (not a zip file)
Try to create API on next page and it will fail
Affected Product Version:
APIM 3.2.0
Environment details (with versions):
OS: Windows 10
Optional Fields
Related Issues:
Suggested Labels:
Suggested Assignees:
The fix for the master has been already done via https://github.com/wso2/carbon-apimgt/commit/5329a140308dc3c7ba99ed837a8d90e98738bf1f and https://github.com/wso2/carbon-apimgt/pull/10686. Hence closing the issue.
|
gharchive/issue
| 2021-07-20T05:34:51 |
2025-04-01T06:40:57.286697
|
{
"authors": [
"BuddhikaJayanarth",
"wasuradananjith"
],
"repo": "wso2/product-apim",
"url": "https://github.com/wso2/product-apim/issues/11448",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
512463952
|
Scopes can be added with non existing roles
A role validation doesn't happen to check whether the provided role is available in the environment, when adding a new scope
Affected version : APIM 3.0 rc3
working in latest 3.1.0 pack.
|
gharchive/issue
| 2019-10-25T11:30:41 |
2025-04-01T06:40:57.288108
|
{
"authors": [
"kavishkafernando",
"msm1992"
],
"repo": "wso2/product-apim",
"url": "https://github.com/wso2/product-apim/issues/6694",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
59188333
|
Implementation of Ghost deployment(Lazy Loading) test cases for WSO2 AS (JIRI TA-591)
Implementation of Ghost deployment(Lazy Loading) test cases for WSO2 AS (JIRI TA-591)
this includes
Ghost deployment (Lazy Loading) test caes for WSO2 AS.
Rest web service artefact to retrieve the web-app/tenant lazy loading information.
add new "tests-common" module in between "modules/integration" and other common sub modules like "tests-common/admin-client","tests-common/ui-pages","tests-common/integration-test-utils".
Hi Saneth,
Can you let me know once you are done with above changes? I will mege this right away.
Thanks.
@kasunbg this can be merge now... I have done all changes.
|
gharchive/pull-request
| 2015-02-27T04:34:54 |
2025-04-01T06:40:57.290678
|
{
"authors": [
"kasunbg",
"sanethd"
],
"repo": "wso2/product-as",
"url": "https://github.com/wso2/product-as/pull/48",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
453904763
|
Sort the Certificate Alias list by alphabetical order in SAML config page
Moved from: https://wso2.org/jira/browse/IDENTITY-7112
If you have a long list of Certificate Aliases it's difficult to find it since the list is not ordered. Can we sort the list Alphabetically?
This issue is being closed due to extended inactivity. Please feel free to reopen it if further attention is needed. Thank you for helping us keep the issue list relevant and focused!
|
gharchive/issue
| 2019-06-09T14:45:02 |
2025-04-01T06:40:57.300214
|
{
"authors": [
"IsurangaPerera",
"isharak"
],
"repo": "wso2/product-is",
"url": "https://github.com/wso2/product-is/issues/5519",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
678194895
|
[SCIM2] Get Group call fails when the user list of the role is large
Description
Get Group call fails (timeout) when the user list of the role is large.
Following error can be also observed in the carbon log in IS 5.9.0.
[2020-08-13 11:36:29,788] [] WARN {org.wso2.carbon.tomcat.ext.valves.CarbonStuckThreadDetectionValve} - Thread [https-jsse-nio-9443-exec-4] (id=[{6}]) has been active for [600,906] milliseconds (since [8/13/20 11:26 AM]) to serve the same request for [https://localhost:9443/scim2/Groups/9cb38827-ede0-43c6-9568-98d29071da66] and may be stuck (configured threshold for this StuckThreadDetectionValve is [600] seconds). There is/are [1] thread(s) in total that are monitored by this Valve and may be stuck., tenantDomain=carbon.super java.lang.Throwable
Root Cause
The reason is that after the usernames are taken from carbon kernel via getUserListOfRole(roleName) API, at SCIM level it calls getUserClaimValue for each username to get the respective userId.
Steps to Reproduce
Assign over 1000 users to a role
Set the MaxUserLimit property to 1000
Call the SCIM2 getGroup API for the respective groupId
Reproduced IS Versions
5.7
5.9
Reproduced User Store
Active Directory
This issue is being closed due to extended inactivity. Please feel free to reopen it if further attention is needed. Thank you for helping us keep the issue list relevant and focused!
|
gharchive/issue
| 2020-08-13T06:43:03 |
2025-04-01T06:40:57.304013
|
{
"authors": [
"gayashanbc",
"isharak"
],
"repo": "wso2/product-is",
"url": "https://github.com/wso2/product-is/issues/9201",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1039866013
|
Bump Dependencies #1399539951
Bumps dependencies for product-is. Link : https://github.com/wso2/product-is/actions/runs/1399539951
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.jenkins-is-staging seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.You have signed the CLA already but the status is still pending? Let us recheck it.
|
gharchive/pull-request
| 2021-10-29T19:26:01 |
2025-04-01T06:40:57.307688
|
{
"authors": [
"CLAassistant",
"jenkins-is-staging"
],
"repo": "wso2/product-is",
"url": "https://github.com/wso2/product-is/pull/12731",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1943981225
|
Bump Dependencies #6524807879
Bumps dependencies for product-is. Link : https://github.com/wso2/product-is/actions/runs/6524807879
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.jenkins-is-staging seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.You have signed the CLA already but the status is still pending? Let us recheck it.
|
gharchive/pull-request
| 2023-10-15T17:31:21 |
2025-04-01T06:40:57.311013
|
{
"authors": [
"CLAassistant",
"jenkins-is-staging"
],
"repo": "wso2/product-is",
"url": "https://github.com/wso2/product-is/pull/16972",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
255251982
|
fix time bucket issue and fix issue that check style failed
@pengys5
Changes Unknown when pulling a4c0bb5db4368e29b4afb59ab045e468afb12a19 on ascrutae:feature/debugging into ** on wu-sheng:feature/debugging**.
Changes Unknown when pulling 6d46e85a6fe5cdc96f89ee7ef4d3eee6c42200c2 on ascrutae:feature/debugging into ** on wu-sheng:feature/debugging**.
|
gharchive/pull-request
| 2017-09-05T11:55:54 |
2025-04-01T06:40:57.352937
|
{
"authors": [
"ascrutae",
"coveralls"
],
"repo": "wu-sheng/sky-walking",
"url": "https://github.com/wu-sheng/sky-walking/pull/398",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2125669467
|
Add JavaTimeModule
Checklist
[ ] Pull requests follows the contribution guide
[ ] New or modified functionality is covered by tests
Description
This can be configured via the public API (see SchemaParserOptions). No need to patch the library
This can be configured via the public API (see SchemaParserOptions). No need to patch the library
|
gharchive/pull-request
| 2024-02-08T17:06:12 |
2025-04-01T06:40:57.364505
|
{
"authors": [
"Denisalik",
"thedeadferryman"
],
"repo": "wunderschild/graphql-java-tools",
"url": "https://github.com/wunderschild/graphql-java-tools/pull/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
609566939
|
Tooltip does not show on Safari-IOS browser when set the effect prop to solid
I tested on Safari-IOS, it won't show the tooltip if I set the effect prop to solid.
+1
Can anyone help with this?
How to reproduce
More than 1 tooltips on a page
On iPad/iPhone
Set the effect prop to solid
Click on the tips, everything looks fine at first.
Click on the tips again. The tooltip contents become invisible.
Expectation
Showing solid tooltips correctly every time when clicking on the tips.
More information
The first tooltip on a page behaves correctly.
Version
react-tooltip@4.2.21
|
gharchive/issue
| 2020-04-30T04:35:17 |
2025-04-01T06:40:57.395800
|
{
"authors": [
"hoangnm",
"msjh80311"
],
"repo": "wwayne/react-tooltip",
"url": "https://github.com/wwayne/react-tooltip/issues/591",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
308896380
|
Bug Reporter "How to report" tab
The "how to report a bug" tab of the bug reporter references https://sourceforge.net/p/wxglade/bugs/ rather than https://github.com/wxGlade/wxGlade/issues which is the current location. I am not sure if the mailing list is also incorrect.
Glade version v0.8.0
Shows the issue.
Thanks. I missed this one as I usually run under a debugger and so never reach the dialog.
It's updated in the repository now.
Fixed with 0.8.1 (see https://github.com/wxGlade/wxGlade/releases )
|
gharchive/issue
| 2018-03-27T09:45:40 |
2025-04-01T06:40:57.408241
|
{
"authors": [
"DietmarSchwertberger",
"GadgetSteve"
],
"repo": "wxGlade/wxGlade",
"url": "https://github.com/wxGlade/wxGlade/issues/312",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
223031214
|
[Vue warn]: Failed to resolve filter: substring(0,20) (found in component: )
Hello,
I do not know if I'm doing anything wrong, but when I use, for exemple, the substring (0.20) filter , I get this error: [Vue warn]: Failed to resolve filter: substring (0,20) (Found in component: )
can you help me?
thank you
@bonzinho The reason is you didn't install the filter correctly. Please see this: Install. If it can't work please let me know. :)
Hi again, thanks for quick response,
Sorry im noob with webpack,
and in my file spa.config i do this:
`require('materialize-css');
window.Vue = require('vue');
require('vue-resource');
require('vue-filter');
Vue.http.options.root = appConfig.api_url;
require('./router');`
var Vue = require('vue');
var VueFilter = require('vue-filter');
Vue.install(VueFilter); // don't forget install
Now, I think your problem must be solved. 😃
I had tried, but it shows me these errors:
[Filter duplication]: A filter named debouncehas has already been installed.
(Anonymous) @ vue-filter.js: 2775
Vue-filter.js: 2775 [filter duplication]: A filter named uppercasehas already been installed.
(Anonymous) @ vue-filter.js: 2775
Vue-filter.js: 2775 [filter duplication]: A filter named lowercasehas already been installed.
(Anonymous) @ vue-filter.js: 2775
Spa.js: 10 Uncaught TypeError: tete.install is not a function
At Object. (spa.js: 10)
At webpack_require (bootstrap efbb9be ...? 3158: 555)
At fn (bootstrap efbb9be ...? 3158: 86)
At Object. (bootstrap efbb9be ...? 3158: 578)
At webpack_require (bootstrap efbb9be ...? 3158: 555)
At bootstrap efbb9be ...? 3158: 578
At bootstrap efbb9be ...? 3158: 578
Thanks anyway
I had tried, but it shows me these errors:
[Filter duplication]: A filter named debouncehas has already been installed.
(Anonymous) @ vue-filter.js: 2775
Vue-filter.js: 2775 [filter duplication]: A filter named uppercasehas already been installed.
(Anonymous) @ vue-filter.js: 2775
Vue-filter.js: 2775 [filter duplication]: A filter named lowercasehas already been installed.
(Anonymous) @ vue-filter.js: 2775
Spa.js: 10 Uncaught TypeError: Vue.install is not a function
At Object. (spa.js: 10)
At webpack_require (bootstrap efbb9be ...? 3158: 555)
At fn (bootstrap efbb9be ...? 3158: 86)
At Object. (bootstrap efbb9be ...? 3158: 578)
At webpack_require (bootstrap efbb9be ...? 3158: 555)
At bootstrap efbb9be ...? 3158: 578
At bootstrap efbb9be ...? 3158: 578
Thanks anyway
@bonzinho I don't know why you got those error message.
Spa.js: 10 Uncaught TypeError: Vue.install is not a function
Vue.install this must be a function. I can check your webpack config. I guess the problem must in there.
|
gharchive/issue
| 2017-04-20T11:09:51 |
2025-04-01T06:40:57.453383
|
{
"authors": [
"bonzinho",
"wy-ei"
],
"repo": "wy-ei/vue-filter",
"url": "https://github.com/wy-ei/vue-filter/issues/12",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2629997106
|
[Feature request]支持导出到Hiddify 的专用链接支持
你好。
在导出到app使用时,期望增加hiddify软件的专用导出订阅链接,以便点击后只打开hiddify app。谢谢。
参考如下:https://hiddify.com/app/URL-Scheme/
加了
我没测试
有空的人一下
|
gharchive/issue
| 2024-11-01T23:01:35 |
2025-04-01T06:40:57.457931
|
{
"authors": [
"forjustice",
"wyx2685"
],
"repo": "wyx2685/v2board",
"url": "https://github.com/wyx2685/v2board/issues/166",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
70055816
|
Generated titanium.js
It should be cool if you could host teh generated titanium.js in your git repository. Thanks!
Do you encounter any issues with running the generator script? I'm not really following Titanium releases now since I've switched from mobile development. Would you provide PR with generated Tern definitions?
|
gharchive/issue
| 2015-04-22T08:19:52 |
2025-04-01T06:40:57.470925
|
{
"authors": [
"angelozerr",
"x-cray"
],
"repo": "x-cray/titanium-ternjs",
"url": "https://github.com/x-cray/titanium-ternjs/issues/1",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1533823771
|
Hot reloading removes unchanged plugins from the list
On startup:
Then I modify the BreakpointLog plugin:
Fixed by #76
|
gharchive/issue
| 2023-01-15T13:49:47 |
2025-04-01T06:40:57.481277
|
{
"authors": [
"mrexodia"
],
"repo": "x64dbg/DotX64Dbg",
"url": "https://github.com/x64dbg/DotX64Dbg/issues/72",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
406681060
|
LiveLink stops when Ctrl+Z pressed
LiveLink stops when Pressing Ctrl+Z for Undo action on C4D,and sometimes C4D crashes by it.
Actually looks like UI is still working,but it can't send
C4D's bugreport file and screenshot(zip)
It needs to restart C4D to fix it.
Hi Flowing, unfortunately most of these bugs are caused by memory errors in the underlying library that HLAELiveLink uses. The only true fix would be to completely re-write a websocket library (which I have considered). But the rate at which crashes happen seem to be small (at least in my tests). If there is enough demand however I will look into re-writing a the websocket backend. In the meantime if you do find any more situations that immediately cause a crash feel free to leave them as a comment on this issue, this will help me further diagnose the underlying problem.
thanks <3 cheers!
also C4D => HLAE cam sync stoppes when C4D has keyframe on camera positions.
I'm not sure it's websocket related bug or not tho.
Are there keyframes on each frame or is just a few across the timeline? And does it stop only on the keyframes or just outright stop working completely?
I'm using that your "HLAE CamIO 2 C4D",So it has keyframes on every frames.
it stoppes completely when C4D cam has keyframes.
Hmmm interesting, I will definitely have to look into that then. Thanks for the info!
|
gharchive/issue
| 2019-02-05T08:51:32 |
2025-04-01T06:40:57.635978
|
{
"authors": [
"FlowingSPDG",
"xNWP"
],
"repo": "xNWP/HLAELiveLink",
"url": "https://github.com/xNWP/HLAELiveLink/issues/6",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2006388350
|
Log In page return Server Error (500)
When trying to access the login page, the application returns a Server Error (500).
how to reproduce:
clicking the login button from any page.
Thank you for your feedback. We've already resolved it. The login is now working.
|
gharchive/issue
| 2023-11-22T13:49:35 |
2025-04-01T06:40:57.637622
|
{
"authors": [
"ReggieReo",
"xNatthapol"
],
"repo": "xNatthapol/SIP",
"url": "https://github.com/xNatthapol/SIP/issues/57",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
793641826
|
Add operations_access_level flag to projects
@svanharmelen I've got another PR for you :)
This flag was added in the most recent release of GitLab
Looks good, but I think we should then also add the field to the create and edit structs. Right?
Looks good, but I think we should then also add the field to the create and edit structs. Right?
Looks good, but I think we should then also add the field to the create and edit structs. Right?
Yes, good call. Added that as well
Looks good, but I think we should then also add the field to the create and edit structs. Right?
Yes, good call. Added that as well
|
gharchive/pull-request
| 2021-01-25T18:56:58 |
2025-04-01T06:40:57.798809
|
{
"authors": [
"cmmarslender",
"svanharmelen"
],
"repo": "xanzy/go-gitlab",
"url": "https://github.com/xanzy/go-gitlab/pull/1048",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
95926819
|
Added Vibration on Remote Arrow Press
Arrow buttons on remote give out 100ms vibrations on press. Setting to enable and disable the vibrations has been added too.
Fixes #95.
Thank you for having submitted a pull request for my feature request.
But:
@akshay2000 wrote:
Arrow buttons on remote give out 100ms vibrations on press.
Does your pull request only add vibration for the arrow buttons?
My feature request was about adding vibration to all buttons on the remote.
So, any chance you could add vibration to all buttons on the remote?
My feature request came from the intention to give Kore a tactile feedback.
So, it wouldn't make much sense to only have that tactile feedback on the arrow buttons.
All buttons on the remote should have that tactile feedback IMHO.
Any chance you could do it?
It would be much appreciated.
Regards
@wp9015362 I thought of adding tactile feedback everywhere, but that doesn't really provide any benefit. I have done some A/B testing earlier (for Windows Phone Kodi Remote) and that analytics data suggests that users prefer to have remote keys to vibrate.
Reasoning behind this could be that when you have all the buttons vibrating, it's same as all buttons not vibrating. In essence, there is no way for the user to differentiate between frequently used arrow keys and infrequently used other keys without looking at the phone.
Maybe you could try this version from this debug APK. Try and see if you like it. If not, I'll wait for one of the Team Kodi members to comment on it. I'm not sure if they even want to accept this.
@akshay2000 :
I disagree. I think having vibration on all buttons is great.
I know that it is great because I have an LG G2 smartphone.
The LG G2 / G3 / G4 smartphones come with an app called "LG Quick Remote".
Here you can see a video of it:
https://www.youtube.com/watch?v=5o6Z_YyfZXQ
The LG Quick Remote app has a setting called "Vibrate on tap".
When this setting is enabled, all buttons on the remote do vibrate when they are being pressed.
And this feels amazing.
What's also nice about the LG Quick Remote vibration is, that even when you press and hold a button on the remote, it continues to vibrate. But not with a constant vibration. When you hold down the channel plus or volume plus button for example it makes one short vibration after another with a little break inbetween, everytime a IR blast is being send out.
And it even makes the notification light blink once per IR blast.
It's really nice!
If Kore would do it like that, that would be really awesome.
Please do not just make the arrow buttons vibrate.
Please at least add an option to also make all buttons vibrate.
And, sorry, but I don't want to install APKs manually.
And I really hope that Team Kodi will accept this. Because when you have used LG's Quick Remote, you really miss the vibration feature in Kore.
Regards
PS:
It would also be nice if you could add an option to configure the strength of the vibration.
Regards
@wp9015362 Interesting. I had implemented the ability to send continuous vibration pulses when button is held down. But then I removed it.
At this point, I really don't know what the feature roadmap Team has planned for the app. And since you are not planning to install APK (I didn't inject malware, I promise!) there is no point in implementing further features. I don't even have a device to test vibrations. So, if the Team confirms that the feature is planned, then I will go ahead and implement it. If not, you're either stuck with no tactile feedback or manually managing APK.
I'm not opposed to adding vibration (as an option), and i'll take a look at this later. As for if all buttons should vibrate i don't have a strong opinion about this. I'll try it and see if i form an opinion.
@akshay2000 Good work on the remote for windows (haven't tried it, but looks good). Regarding this PR, i've just glanced at it, and it looks good. Just check if you need the vibrator on the remoteFragment, i believe it is superfluous.
@SyncedSynapse wrote:
I'm not opposed to adding vibration (as an option), and i'll take a look at this later. As for if all buttons should vibrate i don't have a strong opinion about this. I'll try it and see if i form an opinion.
Well, it would be nice if you would let the users decide for themselves via options.
You could add options for:
Configuring if the vibration is enabled on all buttons or only on the arrow buttons
Configuring the strength of the vibration
Configuring the length of the vibration
Configuring if the notification light blinks when a button is pressed
That way the users could configure how they like the vibration themselves.
That would be better than forcing one specific vibration config on the user.
Regards
i'm ok with the vibration as it's default off. We should not add too many option as it's overkill.
Well, yeah, okay, the options for the vibration strength/length and notification light might not be that much needed (but still nice to have anyway).
But an option to enable vibration for all buttons instead of only for the arrow buttons would be essential IMHO.
Because having vibration only for the arrow buttons would make the vibration feature pretty much useless. At least for me.
Regards
We should not add too many option as it's overkill.
Right. Too many choices paradox.
So, here is the plan for me:
Remove unnecessary references.
Enable vibration for all the remote buttons.
Just keep one setting to turn it on or off.
Enable continuous vibration pulse for buttons that send repeated signals.
By the way, @SyncedSynapse Is there a way we could get Windows Phone/Windows project under the umbrella along with iOS and Android apps?
I have added vibrations to all the buttons on remote. This request can now be merged.
@akshay2000 I still haven't been able to test this (i'm on the middle of something else), but looking at the code it looks like you've added vibration to all buttons, including play/ff/re and home/movies/etc.
I think these buttons shouldn't have vibration, as they are "normal" Android buttons and these don't have vibration associated with them. I think that vibration should only be applied to the d-pad and maybe the surrounding buttons, but not the "normal" ones. Also, vibration helps when the user is navigating Kodi's Ui and is not looking at the phone, and this only applies to the d-pad.
@SyncedSynapse That makes sense. In fact, that was my initial idea. I'll make the changes and push a commit.
Looks good, though i feel that 100ms vibration is a little too much. I might change this...
|
gharchive/pull-request
| 2015-07-19T16:02:59 |
2025-04-01T06:40:57.859904
|
{
"authors": [
"MartijnKaijser",
"SyncedSynapse",
"akshay2000",
"wp9015362"
],
"repo": "xbmc/Kore",
"url": "https://github.com/xbmc/Kore/pull/100",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2130277275
|
Investigate using pfUnit as formal testing framework
Currently unit tests are defined as regular subroutines and run through ctest. We may get better utilities using pfunit, like better float comparison, test tagging, running tests in parallel.
@slaizet said Thibault tried this out last year and described it as "painful" so I'd like to know what benefits we might get from pfunit before ripping out our current working test framework.
I've used pfUnit a bit in the past, but never done the setup from scratch so I am not sure how painful that part is. I think the main advantage is being able to cleanly run test with MPI. ctest can kind of do it (#20), but it seems fairly hacky.
An other option would be to use something like lit (https://llvm.org/docs/CommandGuide/lit.html). We are using it with Paul on an other fortran project and it is fairly straightforward.
I've used pFUnit in the past and found it a pain to work with, I would recommend ctest over lit.
@pbartholomew08 we're currently using ctest!
Considering many folks' poor experiences with pfunit, one fewer dependency to worry about, potential issues with f2008 + Nvidia's compilers, and the fact that ctest seems to be working fine for us now, I'm considering pfunit unsuitable.
|
gharchive/issue
| 2024-02-12T14:39:20 |
2025-04-01T06:40:58.019945
|
{
"authors": [
"JamieJQuinn",
"Nanoseb",
"pbartholomew08"
],
"repo": "xcompact3d/x3d2",
"url": "https://github.com/xcompact3d/x3d2/issues/36",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
737232504
|
Add avoid-cfg-tarpaulin flag
I created this pull request in order to avoid "cannot find attribute" error that comes from #[cfg_attr(tarpaulin, skip)] in some old dependencies.
In the project I use glutin that uses wayland-commons v0.21.13. When I want to check coverage using tarpaulin I get:
"Error: cannot find attribute `skip` in this scope"
--avoid-cfg-tarpaulin flag removes --cfg=tarpaulin from the RUSTFLAGS.
Do you agree to add such a flag?
Thanks in advance.
Yeah, I've endeavoured to get projects that haven't upgraded to upgrade via PRs (when I've spotted them) but some haven't yet or don't plan on releasing an update for a while. If you just update the changelog I'll approve and merge this.
Done
Awesome, thanks 👍
|
gharchive/pull-request
| 2020-11-05T20:08:41 |
2025-04-01T06:40:58.022774
|
{
"authors": [
"krisukox",
"xd009642"
],
"repo": "xd009642/tarpaulin",
"url": "https://github.com/xd009642/tarpaulin/pull/614",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2261122043
|
Remove formatting does not remove all formatting
Jodit Version: 4.1.12
Browser: Chrome
OS: Windows
Is React App: False
Content of the editor:
<p dir="ltr">example p tag</p>
Expected behavior:
Clicking on the 'remove formatting' button is removing 'dir="ltr"'.
Actual behavior:
Clicking on the 'remove formatting' button is not removing this
Hi, I checked in different editors, none of them deletes dir. Write how you think this should work, and where have you seen this behavior?
|
gharchive/issue
| 2024-04-24T11:58:15 |
2025-04-01T06:40:58.025895
|
{
"authors": [
"jeroentja",
"xdan"
],
"repo": "xdan/jodit",
"url": "https://github.com/xdan/jodit/issues/1118",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
495993911
|
More explicit code for segment slicing in dejittering
I also added a warning when effective srate was more than 10% different from specified srate.
I think this looks good. +1 for merge.
Some general comments:
I'd prefer if everyone made PRs from a dedicated branch in their fork. This makes it easier for others to pull remote branches. This also means no branches other than master in this repo (upstream).
Our code should try to adhere to PEP8. I know especially the line length of 79 characters is sometimes a problem, but in most cases it is possible.
At least 2 members of the dev team should have seen a PR. Ideally, if a member makes a PR, another member should perform the merge (except of course for trivial changes like typos and whatnot).
WDYT? We could create a short how to contribute guide with these points. Do you have anything to add?
Re this PR: do you want to add an entry to CHANGELOG.md? This refactoring could be in a CHANGED section.
I'd prefer if everyone made PRs from a dedicated branch in their fork. This makes it easier for others to pull remote branches. This also means no branches other than master in this repo (upstream).
Sorry but I'm a maintainer on many different open source repos and it would be a nightmare to manage if I had personal forks for each of them. This is especially problematic for repos like this that are also submodules because I guarantee at some point I would end up having the parent repo pointing its submodule ref to my personal repo. I'll just delete the branch after merge.
Our code should try to adhere to PEP8. I know especially the line length of 79 characters is sometimes a problem, but in most cases it is possible.
I try to adhere to all aspects of PEP8 except the 79 character length. There's already quite a bit of debate about whether or not that should still be included. I'll try to do it for this project but I'm not going to change my IDE defaults on my 6 different computers, so I'll probably miss it sometimes.
At least 2 members of the dev team should have seen a PR. Ideally, if a member makes a PR, another member should perform the merge (except of course for trivial changes like typos and whatnot).
I agree with the second sentence. For the first sentence, sometimes you're going to be waiting months for me to reply to something fairly trivial and that's probably worse than having to revert something after the fact. If you think I was too hasty in merging a PR then let me know and we can work on adding proper unit tests for whatever I missed.
I won't ever make a tagged release without getting consensus so 99.999% of users (who rely on pypi) won't see any changes until well after we've had time to play with changes. If you want to do a develop/master model then that works too.
It's already hard enough for me to find time to work on these things, please don't add any more barriers. Community is more important than having a pristine repo.
Sorry but I'm a maintainer on many different open source repos and it would be a nightmare to manage if I had personal forks for each of them. This is especially problematic for repos like this that are also submodules because I guarantee at some point I would end up having the parent repo pointing its submodule ref to my personal repo. I'll just delete the branch after merge.
I have personal forks for most of the repos I contribute to, but it's OK if you want to work on branches in this repo.
I try to adhere to all aspects of PEP8 except the 79 character length. There's already quite a bit of debate about whether or not that should still be included. I'll try to do it for this project but I'm not going to change my IDE defaults on my 6 different computers, so I'll probably miss it sometimes.
That's OK. If I spot any long lines in any PRs I review I will try to shorten them if it's not too much work.
I agree with the second sentence. For the first sentence, sometimes you're going to be waiting months for me to reply to something fairly trivial and that's probably worse than having to revert something after the fact. If you think I was too hasty in merging a PR then let me know and we can work on adding proper unit tests for whatever I missed.
This comment wasn't intended to criticize something you did, it was just an idea which I thought made sense to implement. Having said that, if you agree that at least two devs should have seen a PR, this means that for the majority of PRs (which are made by a dev) another dev will have to review it.
I won't ever make a tagged release without getting consensus so 99.999% of users (who rely on pypi) won't see any changes until well after we've had time to play with changes. If you want to do a develop/master model then that works too.
No, that's fine, let's continue making releases based on consensus.
It's already hard enough for me to find time to work on these things, please don't add any more barriers. Community is more important than having a pristine repo.
I certainly didn't want to add more barriers. I thought that by providing some guidelines maintaining should be less of a burden, but we don't have to implement all or any of my suggestions.
Thanks @cboulay!
|
gharchive/pull-request
| 2019-09-19T19:48:48 |
2025-04-01T06:40:58.042944
|
{
"authors": [
"cboulay",
"cbrnr"
],
"repo": "xdf-modules/xdf-python",
"url": "https://github.com/xdf-modules/xdf-python/pull/36",
"license": "BSD-2-Clause",
"license_type": "permissive",
"license_source": "github-api"
}
|
1907518923
|
Allow set token manually in conversation
OpenAI.conversation { }
When I use conversation block it always calls the env system, but I want to set the token manually.
OpenAI.conversation(here_token) { }
The problem:
@JvmField val FromEnvironment: OpenAI = OpenAI()
suspend fun <A> conversation(block: suspend Conversation.() -> A): A =
block(conversation(LocalVectorStore(FromEnvironment.DEFAULT_EMBEDDING)))
This always ends up calling the environment because the token is set to null by default.
class OpenAI(internal var token: String? = null, internal var host: String? = null)
For now, the token is part of the model not part of the Conversation. If you want to use a model with your own token you should do something like this:
OpenAI.conversation {
val chat = OpenAI(token = "your_token").DEFAULT_CHAT
val response = promptMessage("What is the meaning of life?, model = chat)
println(response)
}
Does that make sense for you?
There is a problem because to create OpenAI.conversation {, you call OpenAI with the token null always by default.
The second call OpenAI(token = "your_token").DEFAULT_CHAT it's okay.
It would be interesting if only one OpenAi() were created for the entire block. With Context Receivers this will be easier in the future.
Yes, this is a known error. FromEnvironment should be lazy... and I agree with you about the conversation block
|
gharchive/issue
| 2023-09-21T18:16:38 |
2025-04-01T06:40:58.060210
|
{
"authors": [
"carbaj03",
"javipacheco"
],
"repo": "xebia-functional/xef",
"url": "https://github.com/xebia-functional/xef/issues/442",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2417484819
|
Optional support for formatting
Have you considered adding optional support for formatting the output with Prettier/Biome?
You could have an optional peer dependency on prettier and prettier-plugin-svelte, and a format: 'prettier' option to trigger it:
const output = print(svelteAST, { format: 'prettier' });
Alternatively a small section on how to achieve it manually - eg. run the output through prettier before writing it to the file.
Just to make sure I understood the proposed idea. Let's focus on prettier to simplify it.
Placing in options { format: "prettier" } would trigger a post-formatting with it. Right?
So from my research, that means:
We would have to change print to be async function 😕 - see: https://prettier.io/docs/en/api#prettierformatsource-options
I'm not feeling in a favour of this, because I'd like to align closely with esrap functionality and API, and leave it to be synchronous. But I can be persuaded to look at it differently.
... I had a thought, but I lost it, so I'll leave it as placeholder.
Also, while working on this package, I'm seeing a possibility to refactor this API to implement more formatting options, where we wouldn't need any formatter at all. But rather a feature of auto-importing the formatting options from existing Prettier or Biome config. That's definitely on my mind 👍.
At the moment, I would like to focus on supporting printing TypeScript nodes, once maintainers of Svelte can find a time. So I don't get lost in my own refactor without having crucial features completed first. 😅
I'm definitely convinced on writing section guide with how to use with formatters API.
A quick example for prettier:
import fs from "node:fs";
import { format } from "prettier";
import { print } from "svelte-ast-print";
let ast; // ... there should be a part on how you get a svelte AST - either using parser from Svelte, or building your own(?)
const stringifiedCode = print(ast);
const formattedCode = await format(stringifiedCode, {
plugins: ["prettier-plugin-svelte"],
overrides: [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
});
// ... there should be a part with what you want to do with the final output.
// For example saving to file:
fs.writeFileSync("Button.svelte", formattedCode);
The async argument is a good one, makes sense to keep the API sync.
A good example of how to combine this with Prettier would probably be best right now then. Probably using Prettier's auto-resolving of user config. https://prettier.io/docs/en/api.html#prettierresolveconfigfileurlorpath--options
I've created PR #93 with a small guide on how to get output formatted to the user's needs using Prettier. I'd love to get your review and feedback based on your input: @JReinhold @manuel3108.
|
gharchive/issue
| 2024-07-18T21:55:53 |
2025-04-01T06:40:58.066697
|
{
"authors": [
"JReinhold",
"xeho91"
],
"repo": "xeho91/svelte-ast-print",
"url": "https://github.com/xeho91/svelte-ast-print/issues/88",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1726294056
|
Veracode Static scan - Very high security issues found with 1.1.9.1 version
Hi,
I am using snappy java's 1.1.9.1 jar in my application and when I did Veracode static scan, I found the following very high vulnerability issues.
Command or Argument Injection(1 flaw)
Description
Command or argument injection vulnerabilities occur when data enters an application from an untrusted source and is used to
dynamically construct and execute a command. In the case of OS command injection, an attacker may be able to either alter
the command executed by the application or append additional commands. In the case of argument injection, the attacker may
influence the behavior of the program in other ways, for example, by changing the destination of an outbound network request or
injecting additional commands into an argument or parameter. The command is typically executed with the privileges of the
executing process and gives an attacker a privilege or capability that he would not otherwise have.
Recommendations
Careful handling of all untrusted data is critical in preventing injection attacks. Using one or more of the following techniques
provides defense in depth and minimizes the likelihood of a vulnerability.
If possible, use library calls rather than external processes to recreate the desired functionality.
Validate user-supplied input using positive filters (white lists) to ensure that it conforms to the expected format, using
centralized data validation routines when possible.
Select safe API routines. Some APIs that execute system commands take an array of strings as input rather than a single
string, which protects against some forms of command injection by ensuring that a user-supplied argument cannot be
interpreted as part of the command.
Associated Flaws by CWE ID:
Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')(CWE ID 78)(1 flaw)
Description
This call contains a command injection flaw. The argument to the function is constructed using untrusted input. If an
attacker is allowed to specify all or part of the command, it may be possible to execute commands on the server with
the privileges of the executing process. The level of exposure depends on the effectiveness of input validation routines,
if any.
An effort to Fix: 3 - Complex implementation error. The fix is approx. 51-500 lines of code. Up to 5 days to fix.
Recommendations
Validate all untrusted input to ensure that it conforms to the expected format, using centralized data validation routines
when possible. When using black lists, be sure that the sanitizing routine performs a sufficient number of iterations to
remove all instances of disallowed characters. Most APIs that execute system commands also have a "safe" version of
the method that takes an array of strings as input rather than a single string, which protects against some forms of
command injection.
Instances found via Static Scan
| Flaw Id | Module # | Class # | Module | Location |
| 6512 | 130 | - | snappy-java-1.1.9.1.jar | org/.../xerial/snappy/OSInfo.java 178 |
Code:
int exitCode = Runtime.getRuntime().exec("which readelf").waitFor();
Untrusted Search Path(2 flaws)
Description
Executing commands or loading libraries from an untrusted source or in an untrusted environment can cause an application to
execute malicious commands (and payloads) on behalf of an attacker.
If an attacker is allowed to specify all or part of a filename to a certain API function, it may be possible to load arbitrary libraries.
In addition, certain functions perform automatic path searching, iterating over a list of paths to search for desired resources,
such as executables, libraries, or configuration files. If an attacker can modify the path, for example, by manipulating an
environment variable, he may be able to trick the program into referencing an attacker-controlled resource. Similarly, the
search path is static but an attacker is able to place a malicious copy of the resource higher in the search order than the file the
application intends to load, then the application will load the malicious version.
Recommendations
Avoid using user-supplied filenames or paths. When calling methods that load libraries or launch processes, ensure that full
paths are provided specifying the resource to be loaded.
Associated Flaws by CWE ID:
Process Control (CWE ID 114)(2 flaws)
Description
A function call could result in a process control attack. An argument to a process control function is either derived from
an untrusted source or is hard-coded, both of which may allow an attacker to execute malicious code under certain
conditions. If an attacker is allowed to specify all or part of the filename, it may be possible to load arbitrary libraries. If
the location is hard-coded and an attacker is able to place a malicious copy of the library higher in the search order than
the file the application intends to load, then the application will load the malicious version.
An effort to Fix: 2 - Implementation error. The fix is approx. 6-50 lines of code. 1 day to fix.
Recommendations
Always validate untrusted input to ensure that it conforms to the expected format, using centralized data validation
routines when possible. When using hard-coded file locations, use fully-qualified filenames to ensure the proper library
is being loaded.
Instances found via Static Scan
| Flaw Id | Module # | Class # | Module | Location |
| 6519 | 173 | - | snappy-java-1.1.9.1.jar | org/.../snappy/SnappyLoader.java 180 |
| 6522 | 173 | - | snappy-java-1.1.9.1.jar | org/.../snappy/SnappyLoader.java 183 |
Code:
if (nativeLibFile != null) {
// Load extracted or specified snappy java native library.
System.load(nativeLibFile.getAbsolutePath());
}
Thanks, @xerial. I did not know that previously. I will definitely use advisories next time. Let me close this issue right now.
|
gharchive/issue
| 2023-05-25T18:29:04 |
2025-04-01T06:40:58.092689
|
{
"authors": [
"rssurdikar"
],
"repo": "xerial/snappy-java",
"url": "https://github.com/xerial/snappy-java/issues/452",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
179699770
|
JDBC driver extracts a new dll library on every call of a java program into Temp/
I run into an issue, alreadt mentioned in bitbucket, but not here ([https://bitbucket.org/xerial/sqlite-jdbc/issues/202/jdbc-driver-extracts-a-new-dll-library-on])
I noticed this day that the my windows system drive is out of space after running a java program I wrote which imported 500k different files into a database.
Inspecting the issue using windows's "Disk Cleanup" shows around 129GB of data in user's temp folder, which turns out to be this sqlite jdbc dll driver, creating 500k different jdbc dlls on each call of the java my java program taking, each one taking 720kb of disk space.
The file name looks like this: sqlite-3.8.11.2-00a5dca3-f7cb-44b9-9014-de47cf377bd2-sqlitejdbc.dll where 00a5dca3-f7cb-44b9-9014-de47cf377bd2 part is always different.
Duplicate https://github.com/xerial/sqlite-jdbc/issues/80
|
gharchive/issue
| 2016-09-28T07:31:34 |
2025-04-01T06:40:58.096164
|
{
"authors": [
"Dunemaster"
],
"repo": "xerial/sqlite-jdbc",
"url": "https://github.com/xerial/sqlite-jdbc/issues/161",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
172799727
|
Fix typos in SQLiteDataSource public API.
setCouncChanges -> setCountChanges
setEnforceForeinKeys -> setEnforceForeignKeys
Hah. Good catch!
|
gharchive/pull-request
| 2016-08-23T20:34:00 |
2025-04-01T06:40:58.097206
|
{
"authors": [
"gitblit",
"jeffcoat"
],
"repo": "xerial/sqlite-jdbc",
"url": "https://github.com/xerial/sqlite-jdbc/pull/143",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
301816650
|
还能用吗?
江苏电信还能用吗?
自行测试
|
gharchive/issue
| 2018-03-02T16:04:35 |
2025-04-01T06:40:58.139710
|
{
"authors": [
"toolor",
"xfkencon"
],
"repo": "xfkencon/land-leg",
"url": "https://github.com/xfkencon/land-leg/issues/1",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1287211444
|
[FIX]: Board Settings switchs not working properly
Description
When you change the state of "Option to post cards anonymously" the "Limit votes" are checked too, and if you uncheck the "Limit votes" and "Option to post cards anonymously" the "Limit votes" are checked again.
Steps to reproduce
Login in the app;
On Boards/Dashboard page access to a board;
Open Board Settings dialog;
Change status of "Option to post cards anonymously" and "Limit votes".
Expected result
The status of switchs not change the other switch state.
Actual result
When you change a state of "Option to post cards anonymously" the status of "Limit votes" change too.
I can't reproduce your error
|
gharchive/issue
| 2022-06-28T11:38:13 |
2025-04-01T06:40:58.142223
|
{
"authors": [
"dsousa12",
"joaosantos99"
],
"repo": "xgeekshq/split",
"url": "https://github.com/xgeekshq/split/issues/282",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
583130328
|
Grid exports are rendered upside down
When exporting from Toolbox, Excel renders with an upside down font:
Closing - was due to incompatibility between an outdated version of Excel and Mac OS Catalina.
|
gharchive/issue
| 2020-03-17T16:14:49 |
2025-04-01T06:40:58.143924
|
{
"authors": [
"TomTirapani"
],
"repo": "xh/hoist-react",
"url": "https://github.com/xh/hoist-react/issues/1780",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
837067462
|
int32 multiplication overflow at a fat side of 32bit input
I think both inputs should be cast to native pointer prior to multiplication (they are checked unsigned already at that red point)
https://lgtm.com/projects/g/xianyi/OpenBLAS/latest/files/interface/imatcopy.c?sort=name&dir=ASC&mode=heatmap
https://lgtm.com/projects/g/xianyi/OpenBLAS/latest/files/interface/zimatcopy.c?sort=name&dir=ASC&mode=heatmap
Would you mind proposing a patch ? (Though I suspect any lda or ldb large enough to cause an overflow here would fail elsewhere a bit later when not building with INTERFACE64=1)
This would get one bit more before failing, will do tomorrow, like in 10h
|
gharchive/issue
| 2021-03-21T12:42:17 |
2025-04-01T06:40:58.148728
|
{
"authors": [
"brada4",
"martin-frbg"
],
"repo": "xianyi/OpenBLAS",
"url": "https://github.com/xianyi/OpenBLAS/issues/3160",
"license": "bsd-3-clause",
"license_type": "permissive",
"license_source": "bigquery"
}
|
489892625
|
wx-charts使用时,canvas最右边有一个矩形区域无法设置背景色
设置canvas背景色为蓝色.canvas { width: 100%; height: 200px; background:blue; }
设置页面背景色为黑色page{ background-color: rgb(0, 0, 0); }
此时发现wx-charts右边存在一个长方形小区域无法设置颜色(如图中箭头指示区域),依然为白色,柱状图、折线图等带横纵坐标的图表类型均有此现象,而饼图、雷达图等无横纵坐标的图表类型没有影响,是什么原因?
set wxCharts.config.background to 'blue'
我也遇到了这个情况,但是我的页面背景色为渐变色,这种应该怎么解决
设定 wxCharts.config.background 为 'rgba(0,0,0,0)'
我也遇到了这个情况,但是我的页面背景色为渐变色,这种应该怎么解决
|
gharchive/issue
| 2019-09-05T17:08:33 |
2025-04-01T06:40:58.151257
|
{
"authors": [
"2386182793",
"Jsx9989",
"arabiannightschat",
"kicer"
],
"repo": "xiaolin3303/wx-charts",
"url": "https://github.com/xiaolin3303/wx-charts/issues/389",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
931413129
|
xml 数据返回类型,设置了xml 结果显示示例是json
xml 数据返回类型,设置了xml 结果显示示例是json
https://github.com/xiaoymin/swagger-bootstrap-ui/issues/220
|
gharchive/issue
| 2021-06-28T10:20:44 |
2025-04-01T06:40:58.176197
|
{
"authors": [
"spacestime",
"xiaoymin"
],
"repo": "xiaoymin/swagger-bootstrap-ui",
"url": "https://github.com/xiaoymin/swagger-bootstrap-ui/issues/359",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1837831236
|
🛑 Blog is down
In deca87f, Blog (https://zhix.in) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Blog is back up in ba40dd9.
|
gharchive/issue
| 2023-08-05T16:25:40 |
2025-04-01T06:40:58.191439
|
{
"authors": [
"xinzhixiang"
],
"repo": "xinzhixiang/uptime",
"url": "https://github.com/xinzhixiang/uptime/issues/385",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1688454801
|
Module 'imufusion' has no attribute 'CONVENTION_NWU'
Hello, thank you very much for your project which helps me a lot. However I wanted to test your code and I get this error:
AttributeError: module 'imufusion' has no attribute 'CONVENTION_NWU'
I'm sorry if this is a silly question but I'm a beginner. I checked that the latest version of imufusion was installed. I'm working on conda, maybe that's where the problem comes from?
Thanks in advance for your help.
I expect you are not using the latest version of imufusion. I am not familiar with conda so I am not able to suggest a solution. I suggest you search online. There many Python guides and tutorials for beginners.
Ok I solved my first problem. Now I have a second one x)
I tested the code with your short_walk and long_walk data and it worked perfectly. When I test with my IMU I consistently get an increase along the z axis while my data was obtained flat.
Other than a calibration problem, do you have any idea where the problem is coming from?
Other users have asked similar questions. Please read through the closed issues for this repository.
Sorry I didn't pay attention to the closed issues.
Ok it also seems that my problem was also due to the IMU being too loose yet I was already attaching the IMU to the laces.
By the way, where exactly do you place the IMU at the laces (rather close to the toes or the ankle)? Do you have any tips on how to make sure the IMU is tightly attached?
Above the toes or on the laces of a shoe are often convenient locations. I suggest using an elasticated strap or if the show is big enough then tucking the IMU between the tongue and the laces.
|
gharchive/issue
| 2023-04-28T12:17:28 |
2025-04-01T06:40:58.195923
|
{
"authors": [
"Alx2203",
"xioTechnologies"
],
"repo": "xioTechnologies/Gait-Tracking",
"url": "https://github.com/xioTechnologies/Gait-Tracking/issues/14",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1333918640
|
“只有房主才能打开游戏”
您好大哥大,我用PC端,一个人测试5个账号,房主的那个账号点击“开始游戏”,仍旧提示,“只有房主才能开始游戏”,这个是咋回事呢
我遇到了同样的问题,但是我后续在谷歌浏览器上多开了几个用户,再测试的时候能正常开启游戏,你可以试试
|
gharchive/issue
| 2022-08-10T00:31:31 |
2025-04-01T06:40:58.196885
|
{
"authors": [
"Sarakeal",
"lizhihang123"
],
"repo": "xiong35/werewolf",
"url": "https://github.com/xiong35/werewolf/issues/3",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
626695320
|
Deprecate wiki
Change
As briefly talked about in the #daala-weekly yesterday, the wiki is quite outdated and should be deprecated.
The question is: Which of the pages should be kept and moved to the doc/ folder? The others will just be deleted.
Pages
file
purpose
author(s)
action
Frame-Type-Selection.md
Explains frame type selection
shssoichiro
pick
Home.md
Short hello message
mbebenita
drop
Quality-&-Speed-Features.md
Various features compared to compeititors (outdated)
mbebenita, rzumer
Roadmap.md
Feature plan for AV1 Encoder
mbebenita, negge
Procedure
It's obvious that Home.md can be dropped, but for the others I would just like consult the authors (@shssoichiro, @mbebenita, @rzumer, @negge).
Please state if the page should be kept, and if yes, if it needs to be updated :)
Thank you! :smile:
We specifically wanted the frame type selection algorithm documented, so I think it makes sense to move it to the doc folder. I updated the version in the wiki just now to accurately reflect the codebase.
@mbebenita, @rzumer, @negge: Could you please give a short info about your respective pages?
Thank you a lot! :smiley:
@barrbrain
What is the deal with doc/regress_log-bitrate_wrt_log-quantizer.ipynb ? Is it still needed? If yes, what for? If we keep it, I would like to add a brief descrption to it.
|
gharchive/issue
| 2020-05-28T17:45:00 |
2025-04-01T06:40:58.205854
|
{
"authors": [
"Urhengulas",
"shssoichiro"
],
"repo": "xiph/rav1e",
"url": "https://github.com/xiph/rav1e/issues/2346",
"license": "bsd-2-clause",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1322297665
|
test issues
test issues
test
|
gharchive/issue
| 2022-07-29T14:06:50 |
2025-04-01T06:40:58.236723
|
{
"authors": [
"xkrivzooh"
],
"repo": "xkrivzooh/wenchao.ren",
"url": "https://github.com/xkrivzooh/wenchao.ren/issues/1",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
1403282153
|
add aws-sdk-cpp
By default, all SDKS are built, if only AWS S3 is required, then set build_only="s3", with multiple SDKS separated by commas.
默认情况下,构建所有的SDK,如果只需要AWS S3,那么设置build_only=" s3 ",多个SDK用逗号分隔。
error: @programdir/core/main.lua:280: @programdir/modules/private/action/require/impl/package.lua:758: package(curl) not found!
Could not find zlib
maybe you need add zlib dep too.
Could not find zlib
maybe you need add zlib dep too.
Yes, added
maybe it also need openssl
https://github.com/aws/aws-sdk-cpp/blob/main/cmake/Findcrypto.cmake#L42-L68
if (NOT crypto_LIBRARY)
if (BUILD_SHARED_LIBS)
set(crypto_LIBRARY ${crypto_SHARED_LIBRARY})
else()
if (crypto_STATIC_LIBRARY)
set(crypto_LIBRARY ${crypto_STATIC_LIBRARY})
else()
set(crypto_LIBRARY ${crypto_SHARED_LIBRARY})
endif()
endif()
endif()
Later, I will try patch code
ok, you can try
I now have ssl and curl disabled and it should work on linux, archlinux, macos but there are not enough memory resources on the ci and it will be forced to break.
But on fedora, one of its a sub library still looks for crypto and find fails.
The few failed ci tasks were probably just link failures due to insufficient ci memory.
You have to add the missing system framework.
if is_plat("macosx") then
add_frameworks("SystemConfiguration")
end
You have to add the missing system framework.
if is_plat("macosx") then
add_frameworks("SystemConfiguration")
end
it happen in cmake/link. we should pass frameworks flags to cmakelists.
try
https://github.com/xmake-io/xmake-repo/blob/2dcf09d97482223cf5a24deef0467475c8c33124/packages/p/proj/xmake.lua#L51-L53
I have merged it, thanks!
|
gharchive/pull-request
| 2022-10-10T14:36:18 |
2025-04-01T06:40:58.251691
|
{
"authors": [
"SirLynix",
"igavintang",
"waruqi"
],
"repo": "xmake-io/xmake-repo",
"url": "https://github.com/xmake-io/xmake-repo/pull/1519",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
2587364159
|
io.open 不支持 r+
Xmake 版本
xmake v2.9.5+HEAD.d30de52e9
操作系统版本和架构
windows10 22H2
描述问题
io.open 不支持 r+
r+b 不报错,但是不会修改文件
期待的结果
工程配置
file = io.open("r.lua", "r+")
file:seek('set', 0)
file:write(string.char(0x22))
file:close()
print(1)
附加信息和错误日志
error: @programdir\core\main.lua:329: ...mdir\core\sandbox\modules\import\core\sandbox\module.lua:563: cannot import module: r, stack traceback:
[C]: in function 'error'
[@programdir\core\base\os.lua:1015]:
[@programdir\core\sandbox\modules\io.lua:56]: in function 'close'
[.\r.lua:32]: in function 'a'
[.\r.lua:38]: in main chunk
stack traceback:
[C]: in function 'error'
@programdir\core\base\os.lua:1004: in function 'base/os.raiselevel'
(...tail calls...)
@programdir\core\main.lua:329: in upvalue 'cotask'
@programdir\core\base\scheduler.lua:406: in function <@programdir\core\base\scheduler.lua:399>
不支持
会打算支持吗?
不打算的话,那能否暴露 lua 原生 os ?
直接用 w 不行么。
不打算的话,那能否暴露 lua 原生 os ?
不考虑,我全部重写的,原生 io 连 unicode 都不支持
我是要修改二进制文件的,所以无关编码
不行,文件被截断。我尝试过了
function a()
local filePath = "r.lua"
local file = io.open(filePath, "wb")
-- file:seek('set', 2)
file:write(string.char(0x22))
file:close()
end
a()
我是要修改二进制文件的,所以无关编码
我知道,但是我可能为了支持你这一个需求,重新暴露 lua 原生 io ,废弃掉当前的实现,让其他 99% 的读写,都支持不了 unicode
不行,文件被截断。我尝试过了
那目前不支持,只能等后面有空了再看看了。
试下这个 patch https://github.com/xmake-io/xmake/pull/5724
不过二进制写入要加 b,用 r+b
xmake update -s github:xmake-io/xmake#io
我咋试?
github actions 不是可以下载结果的吗?为啥你这个没有下载列表。
这不是有的么 https://github.com/xmake-io/xmake/actions/runs/11366002478?pr=5724
还是不行,存在一个有趣的错误
使用 r+b 模式下,先读后写会导致写无效,无事发生。
|
gharchive/issue
| 2024-10-15T00:46:41 |
2025-04-01T06:40:58.258734
|
{
"authors": [
"q962",
"waruqi"
],
"repo": "xmake-io/xmake",
"url": "https://github.com/xmake-io/xmake/issues/5717",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
269822210
|
Tab Strip Bottom support
Hi, I just added pager tab strip into one of my controllers and the tab strip is placed on the top , below the navigation bar.
Is it possible to put the tab strip at the bottom ?
same, please help....
|
gharchive/issue
| 2017-10-31T03:24:38 |
2025-04-01T06:40:58.260968
|
{
"authors": [
"Eliaschetouani",
"burkaslarry"
],
"repo": "xmartlabs/XLPagerTabStrip",
"url": "https://github.com/xmartlabs/XLPagerTabStrip/issues/479",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
719897358
|
Get full name instead of usename
I would like to be able to insert the full name of the logged in user as a variable instead of just the username. Is that possible?
I'm working on windows 10, and only the username is available. The only option is see is to manually create a custom environment variable with the full name and use #{envVar:}
|
gharchive/issue
| 2020-10-13T06:11:14 |
2025-04-01T06:40:58.290004
|
{
"authors": [
"calvinwashere2",
"xmichelo"
],
"repo": "xmichelo/Beeftext",
"url": "https://github.com/xmichelo/Beeftext/issues/308",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2276146563
|
Group Chat Syncing
I think this deserves an entire section of documentation on since it diverges from what people expect in V2.
Now with Group Chat we have a managed SQL database that stores all of the messages. This means that conversations are not refetched every time only new messages fetched. Something fetched from the network is never refetch from the network giving huge performance improvements.
This means theres a notion of syncing now between local database and the network. When you call methods like listGroups it will just return whats in your local database if you want to get any new groups you will need to call conversations.sync and then listGroups.
If you create a group your self it will get added to your local database and a sync is not required.
This local database gets created on client create unless one exists then it will use the existing one. You can delete the local database by calling client.deleteLocalDatabase()
An encryption key is required to use the local database. This should be stored in the secure enclave and provided anytime a client is created.
iOS entitlements requires a encryption key on Android we can handle the key for you. The require the encryption key on React Native as well.
https://github.com/xmtp-labs/xmtp-inbox-mobile
Okay, based on rereading the above I think my notes from yesterday were for message history, and this is not message history.
This is an update to build topics somewhere.
https://github.com/xmtp/libxmtp/blob/main/xmtp_mls/README.md
@cameronvoell I think that makes sense. I can open an issue in the RN sdk to remove the default syncing?
Addressed in https://github.com/xmtp/xmtp-dot-org/pull/747
|
gharchive/issue
| 2024-05-02T17:54:22 |
2025-04-01T06:40:58.313115
|
{
"authors": [
"nplasterer",
"scotboyd"
],
"repo": "xmtp/xmtp-dot-org",
"url": "https://github.com/xmtp/xmtp-dot-org/issues/731",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
525429683
|
哥,第二步的网址无效了
https://gitee.com/xnng/bash.git 这个网址无效克隆不了,报错找不到仓库
感谢反馈,已修复
|
gharchive/issue
| 2019-11-20T03:53:45 |
2025-04-01T06:40:58.328449
|
{
"authors": [
"merchantli",
"xnng"
],
"repo": "xnng/my-git-bash",
"url": "https://github.com/xnng/my-git-bash/issues/4",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
589751274
|
not support provide for Swift Package Manager
Thanks @FrhaanSaqib.
Will provide support for Swift Package Manager as well in the upcoming release.
any updates?
any updates?
|
gharchive/issue
| 2020-03-29T09:14:28 |
2025-04-01T06:40:58.349983
|
{
"authors": [
"Daniyal073",
"FrhaanSaqib",
"embassem",
"xornorik"
],
"repo": "xornorik/SVPinView",
"url": "https://github.com/xornorik/SVPinView/issues/39",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1845707268
|
🛑 Design Swan is down
In c62bc31, Design Swan (https://www.designswan.com) was down:
HTTP code: 500
Response time: 163 ms
Resolved: Design Swan is back up in da3d4f3.
|
gharchive/issue
| 2023-08-10T18:42:39 |
2025-04-01T06:40:58.360526
|
{
"authors": [
"kamanwu"
],
"repo": "xoryorz/upptime",
"url": "https://github.com/xoryorz/upptime/issues/3114",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1984807426
|
🛑 Design Swan is down
In 95d6f7d, Design Swan (https://www.designswan.com) was down:
HTTP code: 500
Response time: 164 ms
Resolved: Design Swan is back up in 3c3994f after 12 minutes.
|
gharchive/issue
| 2023-11-09T04:39:47 |
2025-04-01T06:40:58.362762
|
{
"authors": [
"kamanwu"
],
"repo": "xoryorz/upptime",
"url": "https://github.com/xoryorz/upptime/issues/3778",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2246843886
|
🛑 Design Swan is down
In f9f0744, Design Swan (https://www.designswan.com) was down:
HTTP code: 500
Response time: 84 ms
Resolved: Design Swan is back up in 0c13197 after 12 minutes.
|
gharchive/issue
| 2024-04-16T20:36:26 |
2025-04-01T06:40:58.365247
|
{
"authors": [
"kamanwu"
],
"repo": "xoryorz/upptime",
"url": "https://github.com/xoryorz/upptime/issues/5823",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2493039953
|
🛑 Design Swan is down
In aefdd17, Design Swan (https://www.designswan.com) was down:
HTTP code: 500
Response time: 99 ms
Resolved: Design Swan is back up in cba410b after 12 minutes.
|
gharchive/issue
| 2024-08-28T21:43:35 |
2025-04-01T06:40:58.367613
|
{
"authors": [
"kamanwu"
],
"repo": "xoryorz/upptime",
"url": "https://github.com/xoryorz/upptime/issues/7822",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2496000295
|
No CLI output in response to any command
Despite trying --version, --help, etc. I am not receiving any output to STDOUT.
e.g. The following command results in no output.
wget -qO- "https://raw.githubusercontent.com/xplshn/dbin/master/stubdl" | sh -s -- --help
Linux: 6.8.5
Glibc: 2.34
The system has a read-only root, but the home directory is mutable.
I have just commited a fix. Would you mind trying again?
It now works after installation, though the "non-install" usage command still shows no output.
It now works after installation, though the "non-install" usage command still shows no output.
That might be an issue with your shell. Would you mind showing me the output of these commands:
readlink /bin/sh
sh --help
Note that in order to use without installing, the dbin binary is downloaded to /tmp, therefore, it must be writable.
I'm closing this for now. I tested with ksh93, mksh, oksh, ash, dash, and bash, and all of them worked.
I deleted /tmp/._bdlstub_dbin.bin and it worked. The installer didn't overwrite the older version.
|
gharchive/issue
| 2024-08-30T02:27:13 |
2025-04-01T06:40:58.381424
|
{
"authors": [
"imbev",
"xplshn"
],
"repo": "xplshn/dbin",
"url": "https://github.com/xplshn/dbin/issues/3",
"license": "ISC",
"license_type": "permissive",
"license_source": "github-api"
}
|
2010990786
|
可以付费请作者二开吗
如题,我想加个用户登录以及订阅功能
暂时没那个精力额,要加这些功能需要后端呢
|
gharchive/issue
| 2023-11-26T10:46:50 |
2025-04-01T06:40:58.382265
|
{
"authors": [
"terobox",
"xqdoo00o"
],
"repo": "xqdoo00o/chatgpt-web",
"url": "https://github.com/xqdoo00o/chatgpt-web/issues/129",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2630148952
|
🛑 iOS Diagnose Setup is down
In 37335ca, iOS Diagnose Setup ($IOS_DIAG) was down:
HTTP code: 521
Response time: 246 ms
Resolved: iOS Diagnose Setup is back up in f32a958 after 26 minutes.
|
gharchive/issue
| 2024-11-02T03:01:37 |
2025-04-01T06:40:58.384538
|
{
"authors": [
"xric25"
],
"repo": "xric25/rc-monitor",
"url": "https://github.com/xric25/rc-monitor/issues/85",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2653986852
|
🛑 iOS Diagnose Setup is down
In 1a4ca1c, iOS Diagnose Setup ($IOS_DIAG) was down:
HTTP code: 521
Response time: 233 ms
Resolved: iOS Diagnose Setup is back up in 39f2562 after 26 minutes.
|
gharchive/issue
| 2024-11-13T03:01:35 |
2025-04-01T06:40:58.386819
|
{
"authors": [
"xric25"
],
"repo": "xric25/rc-monitor",
"url": "https://github.com/xric25/rc-monitor/issues/89",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
126144086
|
[Help Wanted] Rewrite the plugin API to match node-serialport API
Hello,
I think it is time to rewrite the API of this plugin to match node-serialport API.
Unfortunately, I think I won't have time until few months, so if someone is willing to tackle this issue, I'll be glad to help and provide insights.
After a quick look at potential changes needed, it seem, it can be all done from the js side of this plugin (e.g. only modifying the following file https://github.com/xseignard/cordovarduino/blob/master/www/serial.js).
With some extra help of an event emitter lib, it should be fairly simple.
It is not an extensive analysis I did, so I might miss some points, but AFAIK it seems a nice start for someone wanting to contribute to this project!
Come on board!
Regards
Have you made any progress with the rewrite? I am in need for a serial API that works for both windows and android and as I understand, using serialport api would make that possible. I have already tried to make it work in my own cordova app, but with no success. I had issues with require() function. Maybe I did something dumb myself.
Yes you did :)
You cannot use serialport in a cordova app. My idea is to provide the same API (i.e. function names and behavior) as serialport.
Doing it would be nice since it would give a seamless experience writing code in node.js and in cordova.
For now I don't have time and motivation to do it.
|
gharchive/issue
| 2016-01-12T10:15:13 |
2025-04-01T06:40:58.393837
|
{
"authors": [
"111poiss111",
"xseignard"
],
"repo": "xseignard/cordovarduino",
"url": "https://github.com/xseignard/cordovarduino/issues/46",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
327327739
|
Compile for OpenBSD
Possible to add a compile option for OpenBSD?
just wondering how many users
I will use it. I have a server running OpenBSD as VPN server.
|
gharchive/issue
| 2018-05-29T13:45:12 |
2025-04-01T06:40:58.402922
|
{
"authors": [
"fredricktoy",
"testcaoy7",
"xtaci"
],
"repo": "xtaci/kcptun",
"url": "https://github.com/xtaci/kcptun/issues/596",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
691896756
|
Various minor improvements
This PR adds a number of small improvements to build with pedantic build settings using clang-cl on MSVC. The changes are:
cmake should try not to override the CMAKE_BUILD_TYPE or the -march, if any of those are given by the user. This is so that users can easily compile for a specific build type or target architecture (i.e. distributors may set -march to an older target).
Removed the EXCLUDE_FROM_ALL from building tests, benchmarks and examples. There are cmake options like -DBUILD_TESTS=ON/OFF to enable or disable these targets, so they may as well be built by default?
A few cases of shadowed parameters have been fixed by renaming the parameter with a prefix 'a'
Fixed two cases where parameters were not valid for clang or generally not valid on MSVC
I finally had the time to review it, thanks very much this is very neat!
|
gharchive/pull-request
| 2020-09-03T11:42:16 |
2025-04-01T06:40:58.415246
|
{
"authors": [
"JohanMabille",
"emmenlau"
],
"repo": "xtensor-stack/xsimd",
"url": "https://github.com/xtensor-stack/xsimd/pull/380",
"license": "bsd-3-clause",
"license_type": "permissive",
"license_source": "bigquery"
}
|
233283200
|
urllib3 problem
Hello. When I try to activate my Google Credentials, this is what I get.
raise RuntimeError('Requests dependency 'urllib3' must be version >= 1.21.1, < 1.22!')
RuntimeError: Requests dependency 'urllib3' must be version >= 1.21.1, < 1.22!
I tried to upgrade it to 1.21.1, but failed.
Thank you for your help.
same issue... though part of error also says following :
"/usr/lib/python3.4/importlib/util.py"
but my python is 2.7.9 not sure if pip installs are version dependent
try runing the following @mcosti
sudo /opt/AlexaPi/env/bin/python -m pip install -I urllib3==1.21.1
fixed it for me.. went into the install script and saw that it created an env so have to install into that env
This worked. Thank you.
Oh. Actually, it worked on the Authentication. But on this:
sudo bash /opt/AlexaPi/src/scripts/install_assistant.sh
Same error.
yea that reruns all the installation packages so you need to rerun the command I said, and you only need to run the authentication one (it comes out when you run the command you said). instead of the whole installation
Sorry, I've been out of town for some days - Glad you found the solution, I'll include this into the installer script!
|
gharchive/issue
| 2017-06-02T19:56:40 |
2025-04-01T06:40:58.428604
|
{
"authors": [
"bote795",
"mcosti",
"xtools-at"
],
"repo": "xtools-at/AssistantPi",
"url": "https://github.com/xtools-at/AssistantPi/issues/14",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
462163873
|
Leverage SUBTITLE NamedStyleType to render different markdown
SUBTITLE style types in our google docs weren't rendering onto our gatsby site. So our team customized the code to leverage the SUBTITLE NamedStyleType to map to blockquote since that type wasn't being used in this plugin.
SUBTITLEs should have a mapping so the text doesn't disappear, but we would like to see what you think it should map to. Any thoughts?
This is what we did
function getParagraphTag(p) {
const tags = {
NORMAL_TEXT: "p",
SUBTITLE: "blockquote",
HEADING_1: "h1",
HEADING_2: "h2",
HEADING_3: "h3",
HEADING_4: "h4",
HEADING_5: "h5",
}
return tags[p.paragraphStyle.namedStyleType]
}
Thank you. Fixed in v1.11.0
|
gharchive/issue
| 2019-06-28T18:47:58 |
2025-04-01T06:40:58.455256
|
{
"authors": [
"justinsunho",
"xuopled"
],
"repo": "xuopled/gatsby-source-google-docs",
"url": "https://github.com/xuopled/gatsby-source-google-docs/issues/26",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1178611124
|
NGINX Merging
NGINX integration work ticket. Work required to integrate with #124 changes.
Discussed as a team in code review. Tested and merged.
|
gharchive/issue
| 2022-03-23T20:12:40 |
2025-04-01T06:40:58.493467
|
{
"authors": [
"xx00a"
],
"repo": "xx00a/Group6",
"url": "https://github.com/xx00a/Group6/issues/128",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
}
|
418676505
|
correlation 1d
Hi, Guo,
I just want to test the stereo model to produce the disparity. But it occurs error for the "correlation 1d". The error is "Segmentation fault" and no other information. Can you figure out the reason, or can you share you stereo disparity results to me?
Thanks!
Could you provide more details? Have you modified the code?
Yes, I have modified the code. I just want to produce the disparity on KITTI 2015 training dataset (200 iamges pairs) using your pre-trained stereo model. In this case , I remove all other unrelated losses. I have checked that it occurs error in the following step:
"corr = F.leaky_relu(self.corr(conv2a, conv2b), 0.1)" in stereo_model.py. Therefore, I can make sure that the error locates at function correlation 1d.
How about the input size? Have you changed the parameters of Correlation1d(...)
The original images are recommended to be a multiple of 64. It is better not to change the parameters of Correlation1d(...), since the GPU code may have some unexpected bugs.
If you can not solve the bug, maybe you can replace the correlation with some Pytorch operations:
# left_feature [B, C, H, W] # right_feature [B, C, H, W]
B, C, H, W = left_feature.shape
maxdisp = 40
corr = left_feature.new_zeros([B, maxdisp + 1, H, W])
for i in range(maxdisp + 1):
if i > 0 :
corr[:, i, :, i:] = (left_feature[:, :, :, i:]*right_feature[:, :, :, :-i]).mean(dim=1)
else:
corr[:, i, :, :] = (left_feature*right_feature).mean(dim=1)
corr = corr.contiguous()
Hi, Guo,
Thanks for your code for correlation 1d. Now I can run the model. However, the procuced disparity seems not correct. If I use the correlation with Pytorch operations, can your pre-trained model still be used as usual?
I forgot the disparity order. I think maybe you can try the inverse order?
# left_feature [B, C, H, W] # right_feature [B, C, H, W]
B, C, H, W = left_feature.shape
maxdisp = 40
corr = left_feature.new_zeros([B, maxdisp + 1, H, W])
for i in range(maxdisp + 1):
if i > 0 :
corr[:, maxdisp - i, :, i:] = (left_feature[:, :, :, i:]*right_feature[:, :, :, :-i]).mean(dim=1)
else:
corr[:, maxdisp, :, :] = (left_feature*right_feature).mean(dim=1)
corr = corr.contiguous()
I can produce correct disparity now. Thank you very much!
|
gharchive/issue
| 2019-03-08T08:04:32 |
2025-04-01T06:40:58.499260
|
{
"authors": [
"DeepDeep123",
"xy-guo"
],
"repo": "xy-guo/Learning-Monocular-Depth-by-Stereo",
"url": "https://github.com/xy-guo/Learning-Monocular-Depth-by-Stereo/issues/12",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
210307492
|
Add network layer
Suggestion: Implement with https://tokio.rs/
Fixed, Tokio selected
|
gharchive/issue
| 2017-02-26T10:40:08 |
2025-04-01T06:40:58.506361
|
{
"authors": [
"tripokey"
],
"repo": "xyrosource/blacklung",
"url": "https://github.com/xyrosource/blacklung/issues/7",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2008205900
|
Is there any way for the time not to start at 0?
Hey! Awesome library, thank you for your work.
Did anyone figure out a way for the timeline to start at negative values?
My use case is syncing an audio offset which would great improve my UX if it would be possible for the timeline to start at negative values. Right now what I did is I pushed both actions more to the right so there is a virtual offset, but it requires quite a lot of effort in synchronizing it with a videoplayer.
Thanks
Kind of answered my question, at least for my use case:
Adding minStart on the action as a negative value works
Nice! Here's how I did it in my use case by using the getScaleRender prop:
// ...
function getScaleRender(scale: number) {
return <>{scale + 1}</>;
}
// ...
function TimelineComponent() {
// ...
return (
<Timeline
// ...
getScaleRender={getScaleRender}
/>
);
}
|
gharchive/issue
| 2023-11-23T13:09:35 |
2025-04-01T06:40:58.508610
|
{
"authors": [
"mcosti",
"zane-programs"
],
"repo": "xzdarcy/react-timeline-editor",
"url": "https://github.com/xzdarcy/react-timeline-editor/issues/36",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
1720023666
|
Unnecessary variable declaration
https://github.com/yahya-abdul-majeed/CodeRefactoring2023/blob/13fd912b300904b6ff8bfb51da2be73ad1126bca/CLabManager-API/Controllers/IssuesController.cs#L28-L29
Why is this code bad? What principles does it violate? What can the existence of such code lead to? 0,1
|
gharchive/issue
| 2023-05-22T16:24:16 |
2025-04-01T06:40:58.538923
|
{
"authors": [
"LidiaIvanova",
"yahya-abdul-majeed"
],
"repo": "yahya-abdul-majeed/CodeRefactoring2023",
"url": "https://github.com/yahya-abdul-majeed/CodeRefactoring2023/issues/13",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
238951730
|
UTF-8 problem in CSV Export
Summary of problem or feature request
I've tried to export utf-8 encoded data to csv.
And I get data exactly when I open it in notepad. (UTF-8 encoded in notepad)
The point is I can't get data exactly with excel as shown image.
As you can see all data is broken in excel.
What can I do to fix this issue?
Here is my code .
PS. When I convert exported file to unicode format in notepad manually it works perfect in excel.
Operating System
PHP Version
Laravel Version
Laravel-Datatables Version
https://github.com/Maatwebsite/Laravel-Excel is the package we are using to export to csv, excel. I think this question would be answered better on that repo. Thanks!
|
gharchive/issue
| 2017-06-27T19:07:30 |
2025-04-01T06:40:58.542360
|
{
"authors": [
"maple9991",
"yajra"
],
"repo": "yajra/laravel-datatables",
"url": "https://github.com/yajra/laravel-datatables/issues/1230",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
259420148
|
Foundation renderer
I'm using laravel-datatables in a project and want to use Zurb's Foundation for the styling.
I thought this could be done by setting the renderer property in the config to 'foundation' but my pagination for example isn't styled.
Am I missing something?
Mac OSX Sierra
PHP 7.1.8
Laravel 5.3.31
Laravel-Datatables 6.21.1
Foundation 5.5.0 (through bower)
The project has been canned, so this issue is no longer relevant :)
Wow... I just realized what went wrong... n00b mistake.
I had forgotten to include the datatables.foundation.css file in my blade template >_<
|
gharchive/issue
| 2017-09-21T08:45:18 |
2025-04-01T06:40:58.545174
|
{
"authors": [
"ArtbyArjan"
],
"repo": "yajra/laravel-datatables",
"url": "https://github.com/yajra/laravel-datatables/issues/1401",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2380468612
|
Complex Relationships or Collections
Hi,
I'm trying to do some stats rollups in a datatable, and make the columns of the rollup orderable. I'm having troubles.
To start, I am using a Datatable class from php artisan datatables:make
The basic structure is:
Player
PlayerStats
A player hasMany PlayerStats.
I want to list each player in a table, then get the SUM of stat1, stat2, stat3 etc next to them, and even an average of each stat, so columns would be like:
Name, Stat1 Total, Stat1 AVG, Stat2 Total, Stat2 AVG ...
I would like to be able to sort by these columns so I can see the leader of Stat1 etc.
Obviously the ordering stuff does not work as it can't apply the correct where / order to the related model. I also tried creatiing a manual array/struct and creating a collection, which gets me the datatable but im strugling to get the CollectionDataTable to a Html ->render() function and not sure where I am going wrong.
Any tips on how to tackle this issue on laravel side? My next step would be just returning the JSON and doing the datatable stuff in the view a bit more manually, but I'd like to avoid that if at all possible.
Thanks.
You can use withCount or withAvg in your query and then include it in the columns. Or use sub select query.
columns: [
{data: 'stat1_total`, searchable: false}
]
|
gharchive/issue
| 2024-06-28T13:41:08 |
2025-04-01T06:40:58.548428
|
{
"authors": [
"joegoldman",
"yajra"
],
"repo": "yajra/laravel-datatables",
"url": "https://github.com/yajra/laravel-datatables/issues/3153",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
129335379
|
Can't change language with htmlbuilder
Hi,
I have trouble with language translate with datatable htmlbuilder.
<script> $(document).ready(function() { $.extend(true, $.fn.dataTable.defaults, { "stateSave": true, "language": { "url": "//cdn.datatables.net/plug-ins/1.10.10/i18n/Chinese-traditional.json" } }); }); {{ $dataTable->scripts() }} </script>
I am using this code in my blade file and the table still representing in English.
Did anyone have any idea.
Also, is there possible to add custom script in htmlbuilder?
Try this
<script type="text/javascript"> $.extend(true, $.fn.dataTable.defaults, { language: { url : '//cdn.datatables.net/plug-ins/1.10.10/i18n/Polish.json' } }); </script> {!! $dataTable->scripts() !!}
@EricKwan2014, there is an issue on arrangements of how you call the scripts. Using @Jastkast suggestion should fix your issue. {!! $dataTable->scripts() !!} should not be inside the <script> tag.
|
gharchive/issue
| 2016-01-28T04:42:42 |
2025-04-01T06:40:58.551455
|
{
"authors": [
"EricKwan2014",
"Jastkast",
"yajra"
],
"repo": "yajra/laravel-datatables",
"url": "https://github.com/yajra/laravel-datatables/issues/361",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
43171300
|
Community Addon erhöht die Ladezeit von Bildern des ImageManagers stark
Testseite: http://test.kaltenbach.de/de/powerful-solutions/
Benutzername und Passwort sind jeweils "test". Hier mit aktiviertem Community Addon. Ladezeit min. 20 Sekunden wegen der Bilder.
Deaktiviere ich das Community Addon liegt die Ladezeit der Seite bei 3-5 Sekunden.
https://github.com/yakamara/redaxo_ycom/wiki
|
gharchive/issue
| 2014-09-18T19:49:53 |
2025-04-01T06:40:58.553277
|
{
"authors": [
"TobiasKrais",
"dergel"
],
"repo": "yakamara/redaxo_ycom",
"url": "https://github.com/yakamara/redaxo_ycom/issues/57",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1674552298
|
Whoops bei Löschen von E-Mail Templates
Beim Löschen von E-Mail Templates knallt es:
plugins/email/pages/index.php L:42
PR ist erstellt:
https://github.com/yakamara/redaxo_yform/pull/1416
Danke - ist gemergt
|
gharchive/issue
| 2023-04-19T09:42:58 |
2025-04-01T06:40:58.554699
|
{
"authors": [
"dergel",
"godsdog"
],
"repo": "yakamara/redaxo_yform",
"url": "https://github.com/yakamara/redaxo_yform/issues/1417",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
195615612
|
adds debug logging capabilities to interface and hangups library
Allows to have a more verbose debug when running with "--debug flag"
hangupjs debugging appears on the terminal. This alone can reveal some hidden problems (see first screenshot for a current master branch run)
allows to have some hidden messages easily available, such as:
"attachment" that was appearing in the console
redraw() call -- 44 times just for initial boot-up (see screenshot 2)
Screenshot 1
Screenshot 2
I have an open question, should the debugging capabilities be included in the binaries?
The only upside I see is in main.coffee to debug hangupsjs (it would be a lot easier to understand when people say that I can't login in yakyak)
In the main window, I'm kinda neutral on having or not, it could be useful if we anticipated all the necessary information on all the problems.. and that's not going to happen LoL, at least I don't have that power in me.
With trifl we have a virtualdom in place which diffs against the real dom and only applies relevant changes to it. Because of this 44 redraws should not be a problem. Sure there is some room for improvements but i don't think that causes anything noticeable to the user, expecially considering it's just at boot.
Regarding logs I don't like too much the idea of dispatching logs from one process to the other. In another PR you have already brought some of the renderer logs to the background process. That was useful for a specific reason being: if a window crashes or is hidden i can't debug it with the inspector.
Now you're trying to do the same in the opposite direction. creating inter-process communication for every log can be itself cause of poor performances or strange issues (i.e. you may have a bug triggering endless logs in the background process which would cause the renderer process to hang. How do you know which one to debug?). Even if we want to do this i would avoid enabling it in production.
Redraws
it could be improved as you said, but since your last commit detecting the animation as the main source of cpu usage i guess this is really low impact
Part of my motivation bring this up was that at some times my yakyak was blocked for a couple of seconds.. especially after using it for long periods. I had suspicions that a weird timing of a redraw (or excessive) could be a cause.
Inter-process logging
You make an excellent case! In case we want to follow through with logging other libraries, I believe they should be really strong exceptions and not the norm.
hangupsjs is the obvious core library, which in debug mode captures all the communications and does it regardless of our implementation of yakyak. It just does not appear in the terminal.
Considering the number of "I can't log in yakyak" / "permanent sign in loop" issues we have open, it could help to understand those as they are hard to replicate.
Still the extra burden on ALL users is difficult to justify and could create unnecessary problems that I can't anticipate.
I guess we can keep the module only in development, and only load bog module if installed (much as devtron is implemented).. this would be flexible enough to be used in dev or for users to customize their installation (it has no dependencies, so it's easy to just plug-in)
ps. Finding out that it was able to log hangupsjs was a suprise, lol.. I was testing diferent logger modules and when activated this one on the main process 'puff' that stuff appeared.
|
gharchive/pull-request
| 2016-12-14T18:58:34 |
2025-04-01T06:40:58.569365
|
{
"authors": [
"averissimo",
"davibe"
],
"repo": "yakyak/yakyak",
"url": "https://github.com/yakyak/yakyak/pull/513",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
2254933666
|
Enhance a11y for MultiDatePicker
path: stories/components/forms/multi-date-picker.stories.tsx
Description
7 accessibility violations were found in the MultiDatePicker.
Target stories
withColorScheme
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(1) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(2) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(3) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(4) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(5) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(6) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(7) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(8) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(9) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(10) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(11) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(12) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(13) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(14) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(15) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(16) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(17) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(18) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(19) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(20) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(21) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(22) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(23) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(24) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(2) > .ui-multi-date-picker.css-1gcnetv:nth-child(25) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(1) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(2) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(3) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(4) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(5) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(6) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(7) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(8) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(9) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(10) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(11) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(12) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(13) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(14) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(15) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(16) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(17) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(18) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(19) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(20) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(21) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(22) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(23) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(24) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Expected the HTML found at $('.css-1wkiwnk:nth-child(4) > .ui-multi-date-picker.css-1gcnetv:nth-child(25) > .ui-multi-date-picker__inner.css-79elbk > .ui-multi-date-picker__field.css-1pd3bkx > input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
withDefaultValue
Expected the HTML found at $('input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
withSeparator
Expected the HTML found at $('input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
withMaxSelectValues
Expected the HTML found at $('input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
withPattern
Expected the HTML found at $('input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
withLocale
Expected the HTML found at $('input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
customControlValue
Expected the HTML found at $('input') to have no violations:
Received:
Form elements must have labels (label)
Fix any of the following:
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit <label>
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
Element has no placeholder attribute
Element's default semantics were not overridden with role="none" or role="presentation"
You can find more information on this issue here:
https://dequeuniversity.com/rules/axe/4.9/label?application=axeAPI
Problem Statement/Justification
A11y is essential to ensure quality when operating a package.
Additional Information
While it's ideal to cover all jobs, if there are too many jobs to work on, please create a PR within your capacity.
Any deficiencies not covered by the PR will be automatically created as issues.
I would like to solve this issue
@aojunhao123
Hi, thanks for the comment!
Yes, pls!
@hirotomoyamada Are a11y issues merged into the main branch or the v2.0 branch? And on which branch should I mention PR?
|
gharchive/issue
| 2024-04-21T06:56:30 |
2025-04-01T06:40:58.640526
|
{
"authors": [
"aojunhao123",
"hirotomoyamada"
],
"repo": "yamada-ui/yamada-ui",
"url": "https://github.com/yamada-ui/yamada-ui/issues/1252",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
2340639211
|
Make the file-input component headless
Closes #1865
Description
Make the file-input component headless
Current behavior (updates)
New behavior
Is this a breaking change (Yes/No):
No.
Additional Information
@108yen
Fixed it
Thanks!
|
gharchive/pull-request
| 2024-06-07T14:48:01 |
2025-04-01T06:40:58.644118
|
{
"authors": [
"Norennn",
"hirotomoyamada"
],
"repo": "yamada-ui/yamada-ui",
"url": "https://github.com/yamada-ui/yamada-ui/pull/2008",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
236431097
|
Add a list now on display
만들다가 이렇게 하는게 최선인가 싶어서 중간 PR을 날려봐요.
리뷰 부탁드립니다.
이 부분 작품 6개부터 슬라이드 되도록 하는 부분 제외하고는 다 했습니다.
작품이 6개 이상 있는 전시가 없어서 만들어야 할 거 같은데 지원하기를 해도 장소 소유자에게 작품 지원됬다고 가지를 않아요. 저만 그러는건가요?ㅠ_ㅠ
그리고 서버에 exhibitions_now추가했는데 괜찮은지,
다른 방법은 없는지 확인해주시면 감사하겠습니다
브랜치 365 가 아니고 356 인듯 하네요.
https://github.com/yamujine/artmatch/issues/356
일단 merge 할게요~ 이상한게 보이면 추가로 이슈 만들어서 작업 하시죠~
|
gharchive/pull-request
| 2017-06-16T09:35:09 |
2025-04-01T06:40:58.647594
|
{
"authors": [
"Nablyy",
"junho85"
],
"repo": "yamujine/artmatch",
"url": "https://github.com/yamujine/artmatch/pull/370",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
}
|
1792021918
|
🛑 Docker Hub Mirror is down
In fbab882, Docker Hub Mirror (https://docker.icloudnative.io) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Docker Hub Mirror is back up in 16ff9d1.
|
gharchive/issue
| 2023-07-06T18:17:46 |
2025-04-01T06:40:58.651919
|
{
"authors": [
"yangchuansheng"
],
"repo": "yangchuansheng/upptime",
"url": "https://github.com/yangchuansheng/upptime/issues/3407",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.