- When an NFS client mounts a FUSE-backed export, the NFS server tells the client whether the filesystem supports user xattrs.
- The server does this by calling
xattr_supports_user_prefix()in xattr.c, which loops over the superblock's xattr handlers looking for one whose prefix starts with"user.". - FUSE registers a single catch-all handler with
.prefix = ""(empty string) in xattr.c. This handler delegates everything to userspace — it handles all namespaces, includinguser.*. - But
strncmp("", "user.", 5)doesn't match, soxattr_supports_user_prefix()returns-EOPNOTSUPP. - The NFS server encodes
Xattr_support = 0innfsd4_encode_fattr4_xattr_support()(nfs4xdr.c), and the NFS client disables all xattr operations.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| session.screen0.iconbar.iconTextPadding: 10 | |
| session.screen0.iconbar.wheelMode: Screen | |
| session.screen0.iconbar.iconWidth: 70 | |
| session.screen0.iconbar.alignment: Right | |
| session.screen0.iconbar.deiconifyMode: Follow | |
| session.screen0.iconbar.mode: {static groups} (workspace) | |
| session.screen0.iconbar.usePixmap: false | |
| session.screen0.window.focus.alpha: 255 | |
| session.screen0.window.unfocus.alpha: 255 | |
| session.screen0.overlay.lineWidth: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "LoRA_type": "LyCORIS/LoKr", | |
| "adaptive_noise_scale": 0, | |
| "additional_parameters": "", | |
| "block_alphas": "", | |
| "block_dims": "", | |
| "block_lr_zero_threshold": "", | |
| "bucket_no_upscale": true, | |
| "bucket_reso_steps": 64, | |
| "cache_latents": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.metaloom.video4j.lucene; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import org.apache.commons.io.FileUtils; | |
| import org.apache.lucene.document.Document; | |
| import org.apache.lucene.document.KnnVectorField; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.metaloom.video4j.lucene; | |
| import static org.apache.lucene.search.DocIdSetIterator.NO_MORE_DOCS; | |
| import static org.junit.Assert.assertEquals; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import java.util.ArrayList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.metaloom.video4j.lucene; | |
| import static org.apache.lucene.search.DocIdSetIterator.NO_MORE_DOCS; | |
| import static org.junit.Assert.assertEquals; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import java.util.ArrayList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <DHT.h> | |
| #include <DHT_U.h> | |
| #include <ArduinoOTA.h> | |
| #include <ESP8266WiFi.h> | |
| #include <ESP8266WebServer.h> | |
| #include <HampelFilter.h> | |
| const char *ssid = "*********"; | |
| const char *password = "********"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <ESP8266WiFi.h> | |
| #include "HX711.h" | |
| #include <ShiftedLCD.h> | |
| #include <SPI.h> | |
| #include <ESP8266mDNS.h> | |
| #include <WiFiUdp.h> | |
| #include <ArduinoOTA.h> | |
| #include <ESP8266HTTPClient.h> | |
| #include <WiFiClientSecureBearSSL.h> | |
| #include <HampelFilter.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <ESP8266WiFi.h> | |
| #include <ESP8266WebServer.h> | |
| const char* ssid = "SSID"; | |
| const char* password = "PW"; | |
| const int BUTTON_PIN = 0; | |
| const int FART_PIN = 14; | |
| byte mac[6]; |
NewerOlder