file-system
Here are 245 public repositories matching this topic...
-
Updated
Mar 12, 2020 - JavaScript
-
Updated
Jun 9, 2020 - Go
In the code sample below, taken from the Integration page on the wiki,
#define LOG_PAGE_SIZE 256
static u8_t spiffs_work_buf[LOG_PAGE_SIZE*2];
static u8_t spiffs_fds[32*4];
static u8_t spiffs_cache_buf[(LOG_PAGE_SIZE+32)*4];
could the magic numbers be clarified?
For spiffs_work_buf, this is because SPIFFS needs at least 2 pages for doing it's magic, cor
Not sure if it's worth adding to the documentation but I found I had to add the following to the end of the fstab command otherwise the system would not boot cleanly.
,x-systemd.mount-timeout=30,_netdev
The line in fstab now looks like
mfsmount /mnt/mymnt fuse mfssubfolder=mydir,allow_other,x-systemd.mount-timeout=30,_netdev
I think it was trying to mount mooseFS before it had fini
While trying to improve interoperability between casync and desync, I found it useful to have a visualization of the file formats.
Using the .ksy at https://gist.github.com/tomberek/a376495de8f43c65499e85b9d1e388f9 along with the in-browser IDE at https://ide.kaitai.io/# you can explore the file formats for .catar and .caidx (still working on .caibx).
This might make it easier to explain/do
-
Updated
Sep 8, 2017 - C#
it could be very useful to implement coding style guide like PSR-2:
https://www.php-fig.org/psr/psr-2/ (https://akrabat.com/checking-your-code-for-psr-2/)
- refactor docblocks so they are consistent
here is an example: https://github.com/assemblie/Filebase/tree/style-guide
its really lot of changes for now but we can implement it step by step or create specific style guide:
https://gith
-
Updated
May 10, 2019 - Swift
-
Updated
Feb 26, 2020 - Go
-
Updated
Jun 29, 2018 - JavaScript
-
Updated
May 3, 2020 - Python
-
Updated
Feb 23, 2020 - C
The code right now has excessive nesting (at least for scripts) and carries over the old naming scheme.
For example, nvp should be usplit.
Installing dependencies right now requires
cd dependencies; ./kernel_deps.sh; cd ..
I would like to be something like
./kernel_deps.sh
-
Updated
Sep 4, 2019 - JavaScript
For POSIX calls where we differ from standard behavior, we should list those out.
As a first case, our truncate currently does not necessarily first sync a file:
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC); // size = 0
write(fd, 1024)
// ftruncate will sync the given file descriptor before truncating
// so the write will happen and then the file will be truncated
ftruncate(fd, 0); /
-
Updated
Jan 2, 2020 - C
-
Updated
Apr 19, 2020 - C#
-
Updated
Jun 5, 2020 - Haskell
-
Updated
Jan 17, 2020 - JavaScript
-
Updated
Jun 10, 2020 - C#
-
Updated
Apr 3, 2020 - Python
-
Updated
Oct 11, 2019 - C#
-
Updated
Aug 16, 2016 - C
-
Updated
Jun 6, 2020 - C++
A test should be created for the user endpoint.
This test will require the create_object function in file_server/util to create the objects the function needs. There is an example of this function's usage in file_server/web/endpoints/__test__/test_active_clients.py
Tests:
- Verify response has
"error"key and value is"Needs auth" - Verify
nameandrefresh_ratekeys in respon
Improve this page
Add a description, image, and links to the file-system topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the file-system topic, visit your repo's landing page and select "manage topics."


command used
sshfs Dan@192.168.11.108:/ ~/danny -ovolname=Dan -o defer_permissions
shubhams-MacBook-Pro:~ shubham$ uname -a
Darwin shubhams-MacBook-Pro.local 18.2.0 Darwin Kernel Version 18.2.0: Fri Oct 5 19:41:49 PDT 2018;