- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 140 for machineId (1.38 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) -
CHANGELOG/CHANGELOG-1.11.md
- [Urgent Upgrade Notes](#urgent-upgrade-notes) - [(No, really, you MUST do this before you upgrade)](#no-really-you-must-do-this-before-you-upgrade) - [Major Themes](#major-themes) - [SIG API Machinery](#sig-api-machinery) - [SIG Auth](#sig-auth) - [SIG CLI](#sig-cli) - [SIG Cluster Lifecycle](#sig-cluster-lifecycle) - [SIG Instrumentation](#sig-instrumentation) - [SIG Network](#sig-network)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 328.4K bytes - Viewed (0) -
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) -
CHANGELOG/CHANGELOG-1.18.md
- Regenerate protobuf code to fix CVE-2021-3121 ([#100514](https://github.com/kubernetes/kubernetes/pull/100514), [@joelsmith](https://github.com/joelsmith)) [SIG API Machinery, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation and Node] ### Feature
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 16 17:18:28 UTC 2021 - 373.2K bytes - Viewed (0)