"git@developer.sourcefind.cn:zhaoyu6/sglang.git" did not exist on "3c93187cafd675ad8c05dcf4095513ce4ec0bae3"
- 18 Apr, 2022 2 commits
- 16 Apr, 2022 1 commit
-
-
longpanda authored
-
- 12 Apr, 2022 1 commit
-
-
Ida Bagus authored
-
- 11 Apr, 2022 1 commit
-
-
ShalokShalom authored
-
- 09 Apr, 2022 1 commit
-
-
longpanda authored
-
- 08 Apr, 2022 2 commits
- 07 Apr, 2022 3 commits
-
-
VenusGirl❤ authored
Korean Update
-
MELERIX authored
-
VenusGirl❤ authored
Korean Update
-
- 06 Apr, 2022 10 commits
-
-
VenusGirl❤ authored
Korean Update
-
longpanda authored
-
A1ive authored
* fix bug stopping iteration when --no-floppy is used * fix gfxmenu theme config handling bug
-
Tayfun Akkoyun authored
@ventoy I translated new adding lines(528,529) on Turkish Language
-
longpanda authored
-
-
longpanda authored
-
reggie authored
* Add slovak translations * Add missing czech translations * Fix two typos * Fix previous typo fix (im dumb, ok?) Co-authored-by:longpanda <59477474+ventoy@users.noreply.github.com>
-
VlatkoS authored
Updated and fixed typos in the Macedonian language
-
A1ive authored
-
- 05 Apr, 2022 3 commits
- 02 Apr, 2022 1 commit
-
-
longpanda authored
-
- 01 Apr, 2022 1 commit
-
-
longpanda authored
-
- 30 Mar, 2022 2 commits
- 29 Mar, 2022 2 commits
- 26 Mar, 2022 9 commits
-
-
longpanda authored
-
longpanda authored
-
Kerollos Magdy authored
* add GitHub actions state to README * Update README.md * remove link in README Co-authored-by:Dylan M. Taylor <dylan@dylanmtaylor.com>
-
geeseven authored
-
Celine Lee authored
Dear Ventoy community – Our team is working with your code and we noticed this if logical expression: if (len - 1 - (int)(long)(pos - pwdstr) != 32) We studied the surrounding code. We believe we understand the intention of the type casts in the above if statement. It seems they were meant to ensure an underflow doesn’t occur by the subtraction between to char pointers, which is a great catch (!). However, we believe the way the type casts are structured, the code is not actually protecting against such underflow because pwdstr isn’t cast into a signed long until after the subtraction occurs. To properly protect this code against underflow, we believe it should be changed to something like the following: if (len - 1 - ((long)pos – (long)pwdstr) != 32) Or, to enhance readability for junior engineers who may not know that the “long” type cast is implicitly of a signed integer type, we could include the `signed` keyword for added verbosity: if (len - 1 - ((signed long)pos – (signed long)pwdstr) != 32) Thank you! -
longpanda authored
-
adrian5 authored
Co-authored-by:longpanda <59477474+ventoy@users.noreply.github.com>
-
George authored
Changes detail to details and replug to reinsert. Which makes words flow with the sentance better.
-
Chrystian Rafael Rubio de Melo authored
-
- 24 Mar, 2022 1 commit
-
-