- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 59 for machineId (1.18 sec)
-
src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java
byte[] customData = new byte[8]; customData[0] = 0x01; customData[1] = 0x02; byte[] machineId = new byte[32]; machineId[0] = 0x10; machineId[1] = 0x11; machineId[2] = 0x12; AvSingleHost avSingleHost = new AvSingleHost(customData, machineId); assertNotNull(avSingleHost); byte[] value = avSingleHost.getRaw(); assertNotNull(value);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
this(encode(customData, machineId)); } private static byte[] encode(final byte[] customData, final byte[] machineId) { final int size = 8 + 8 + 32; final byte[] enc = new byte[size]; SMBUtil.writeInt4(size, enc, 0); SMBUtil.writeInt4(0, enc, 4); System.arraycopy(customData, 0, enc, 8, 8); System.arraycopy(machineId, 0, enc, 16, 32);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
NetbiosAddress mockHost = mock(NetbiosAddress.class); SecureRandom mockRandom = mock(SecureRandom.class); // Create a machine ID (32 bytes) byte[] machineId = new byte[32]; mockRandom.nextBytes(machineId); lenient().when(mockConfig.getDefaultDomain()).thenReturn("TESTDOMAIN"); lenient().when(mockConfig.isUseUnicode()).thenReturn(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
this.localTimeZone = TimeZone.getDefault(); this.random = new SecureRandom(); if (this.machineId == null) { final byte[] mid = new byte[32]; this.random.nextBytes(mid); this.machineId = mid; } if (this.nativeOs == null) { this.nativeOs = System.getProperty("os.name"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
// Use reflection to set private field java.lang.reflect.Field machineIdField = BaseConfiguration.class.getDeclaredField("machineId"); machineIdField.setAccessible(true); machineIdField.set(testConfig, customMachineId); testConfig.initDefaults(); assertArrayEquals(customMachineId, testConfig.getMachineId()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
Linux containers run using the same Linux kernel of the host (machine, virtual machine, cloud server, etc). This just means that they are very lightweight (compared to full virtual machines emulating an entire operating system). This way, containers consume **little resources**, an amount comparable to running the processes directly (a virtual machine would consume much more).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1) -
src/main/java/jcifs/netbios/NbtAddress.java
/** * A Hybrid node tries to resolve a name using the nameserver first. If * that fails use the broadcast address. This is the default if a nameserver * is provided. This is the behavior of Microsoft Windows machines. */ public static final int H_NODE = 3; /** * Unknown MAC Address */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/integrations/veeam/README.md
### Create a backup job #### Backup Virtual Machines with Veeam Backup and Replication - Under Home > Jobs > Backup in Navigation Pane, click on Backup Job button in the ribbon and choose Virtual Machine. Follow the on screen wizard. - On the Storage screen, choose the Scale-out Backup Repository that was configured previously.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.5K bytes - Viewed (0) -
docs/en/docs/deployment/concepts.md
### Server Memory { #server-memory } For example, if your code loads a Machine Learning model with **1 GB in size**, when you run one process with your API, it will consume at least 1 GB of RAM. And if you start **4 processes** (4 workers), each will consume 1 GB of RAM. So in total, your API will consume **4 GB of RAM**. And if your remote server or virtual machine only has 3 GB of RAM, trying to load more than 4 GB of RAM will cause problems. 🚨
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 18.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- Added a detailed event for in-place pod vertical scaling completed, improving cluster management and debugging. ([#130387](https://github.com/kubernetes/kubernetes/pull/130387), [@shiya0705](https://github.com/shiya0705)) [SIG API Machinery, Apps, Autoscaling, Node, Scheduling and Testing]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0)