Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for machine (0.08 sec)

  1. android/guava/src/com/google/common/base/StandardSystemProperty.java

      JAVA_HOME("java.home"),
    
      /** Java Virtual Machine specification version. */
      JAVA_VM_SPECIFICATION_VERSION("java.vm.specification.version"),
    
      /** Java Virtual Machine specification vendor. */
      JAVA_VM_SPECIFICATION_VENDOR("java.vm.specification.vendor"),
    
      /** Java Virtual Machine specification name. */
      JAVA_VM_SPECIFICATION_NAME("java.vm.specification.name"),
    
      /** Java Virtual Machine implementation version. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 06 10:03:30 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/av/AvSingleHost.java

         *
         * @param cfg the configuration containing machine ID
         */
        public AvSingleHost(final Configuration cfg) {
            this(new byte[8], cfg.getMachineId());
        }
    
        /**
         * Constructs an AvSingleHost with custom data and machine ID
         *
         * @param customData custom data for the single host (8 bytes)
         * @param machineId the machine identifier (32 bytes)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java

         * Should correctly encode custom data and machine ID.
         */
        @Test
        void testAvSingleHostCustomDataMachineIdConstructor() {
            byte[] customData = new byte[8];
            customData[0] = 0x01;
            customData[7] = 0x08;
    
            byte[] machineId = new byte[32];
            machineId[0] = 0x10;
            machineId[31] = 0x20;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertNotNull(defaultConfig.getRandom(), "Random should not be null");
            assertNotNull(defaultConfig.getLocalTimezone(), "Local timezone should not be null");
            assertNotNull(defaultConfig.getMachineId(), "Machine ID should not be null");
        }
    
        @Test
        @DisplayName("Test network configuration getters")
        void testNetworkConfigurationGetters() {
            assertEquals(0, config.getLocalPort());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NbtAddress.java

     * Windows command prompt you can see
     * what names a host registers with the nbtstat command.
     *
     *  * <blockquote>
     *
     * <pre>
     * C:\&gt;nbtstat -a 192.168.1.15
     *
     *        NetBIOS Remote Machine Name Table
     *
     *    Name               Type         Status
     * ---------------------------------------------
     * JMORRIS2        &lt;00&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;00&gt;  GROUP       Registered
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/NetbiosAddress.java

     * Windows command prompt you can see
     * what names a host registers with the nbtstat command.
     *
     *  * <blockquote>
     *
     * <pre>
     * C:\&gt;nbtstat -a 192.168.1.15
     *
     *        NetBIOS Remote Machine Name Table
     *
     *    Name               Type         Status
     * ---------------------------------------------
     * JMORRIS2        &lt;00&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;00&gt;  GROUP       Registered
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

       * want to accept ASCII digits only, you can use something like {@code
       * CharMatcher.ascii().matchesAllOf(ipString)}.
       *
       * <p>The scope ID is validated against the interfaces on the machine, which requires permissions
       * under Android.
       *
       * <p><b>Android users on API >= 29:</b> Prefer {@code InetAddresses.parseNumericAddress}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         * authentication.
         */
        int NTLMSSP_NEGOTIATE_OEM_WORKSTATION_SUPPLIED = 0x00002000;
    
        /**
         * Sent by the server to indicate that the server and client are
         * on the same machine. This implies that the server will include
         * a local security context handle in the Type 2 message, for
         * use in local authentication.
         */
        int NTLMSSP_NEGOTIATE_LOCAL_CALL = 0x00004000;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/net/InetAddresses.java

       * want to accept ASCII digits only, you can use something like {@code
       * CharMatcher.ascii().matchesAllOf(ipString)}.
       *
       * <p>The scope ID is validated against the interfaces on the machine, which requires permissions
       * under Android.
       *
       * <p><b>Android users on API >= 29:</b> Prefer {@code InetAddresses.parseNumericAddress}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
Back to top