- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for LOCAL (0.03 sec)
-
docs/en/docs/environment-variables.md
For example, the `PATH` environment variable could look like this: //// tab | Linux, macOS ```plaintext /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin ``` This means that the system should look for programs in the directories: * `/usr/local/bin` * `/usr/bin` * `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_INVALID_COMPUTER_NAME = 0xC0000122; /** The pipe operation has failed because the other end of the pipe has been closed */ int NT_STATUS_PIPE_BROKEN = 0xC000014b; /** The specified local group does not exist */ int NT_STATUS_NO_SUCH_ALIAS = 0xC0000151; /** The user has not been granted the requested logon type at this computer */ int NT_STATUS_LOGON_TYPE_NOT_GRANTED = 0xC000015b;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property {@code jcifs.smb.client.lport} (int) * * @return local port to use for outgoing connections */ int getLocalPort(); /** * * Property {@code jcifs.smb.client.laddr} (string) * * @return local address to use for outgoing connections */ InetAddress getLocalAddr(); /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
static { DEFAULT_BATCH_LIMITS.put("TreeConnectAndX.QueryInformation", 0); } private final Map<String, Integer> batchLimits = new HashMap<>(); /** Local process ID for SMB messages */ protected int localPid = -1; /** Local timezone for time calculations */ protected TimeZone localTimeZone; /** Secure random generator for cryptographic operations */ protected SecureRandom random;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
assertEquals(new TypeToken<List<String>>() {}, t); } public void testNonStaticLocalClass() { class Local<T> {} TypeToken<Local<String>> type = new TypeToken<Local<String>>() {}; assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType()); assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType()); } public void testStaticLocalClass() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
int NT_STATUS_INVALID_COMPUTER_NAME = 0xC0000122; /** The pipe operation has failed because the other end of the pipe has been closed */ int NT_STATUS_PIPE_BROKEN = 0xC000014b; /** The specified local group does not exist */ int NT_STATUS_NO_SUCH_ALIAS = 0xC0000151; /** The user has not been granted the requested logon type at this computer */ int NT_STATUS_LOGON_TYPE_NOT_GRANTED = 0xC000015b;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
assertEquals(new TypeToken<List<String>>() {}, t); } public void testNonStaticLocalClass() { class Local<T> {} TypeToken<Local<String>> type = new TypeToken<Local<String>>() {}; assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType()); assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType()); } public void testStaticLocalClass() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
} public long getLastHealthCheck() { return lastHealthCheck; } @Override public String toString() { return String.format("ChannelInfo{id=%s, local=%s, remote=%s, active=%d, healthy=%s}", channelId, localAddress, remoteAddress, activeConnections.get(), isHealthy); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/en/docs/how-to/custom-docs-ui-assets.md
Self-hosting the JavaScript and CSS could be useful if, for example, you need your app to keep working even while offline, without open Internet access, or in a local network. Here you'll see how to serve those files yourself, in the same FastAPI app, and configure the docs to use them. ### Project file structure { #project-file-structure }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
String decKeyId = sessionId + "-dec"; keyManager.storeSessionKey(encKeyId, encryptionKey, "AES"); keyManager.storeSessionKey(decKeyId, decryptionKey, "AES"); // Clear local key copies for security this.encryptionKey = null; this.decryptionKey = null; log.debug("Keys stored in SecureKeyManager for session: {}", sessionId); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0)