Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 223 for windowed (0.05 sec)

  1. src/main/java/jcifs/smb1/smb1/NtStatus.java

    package jcifs.smb1.smb1;
    
    /**
     * Interface defining NT status codes used in SMB1 protocol operations.
     * These status codes are returned by SMB servers to indicate the result
     * of requested operations. The codes follow the Windows NT status code format.
     */
    public interface NtStatus {
    
        /* Don't bother to edit this. Everthing within the interface
         * block is automatically generated from the ntstatus package.
         */
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

      }
    
      private static boolean isAndroid() {
        return System.getProperty("java.runtime.name", "").contains("Android");
      }
    
      private static boolean isWindows() {
        return OS_NAME.value().startsWith("Windows");
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/mime.map

    video/mpeg                     mpeg mpg mpe     # MPEG Movie File
    video/quicktime                qt mov           # Quicktime Movie File
    video/x-ms-asf                 asf asx          # Windows Media  File
    video/x-msvideo                avi              # AVI Movie File
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.dtyp;
    
    import jcifs.Decodable;
    
    /**
     * Interface for Windows Data Type (DTYP) security information structures.
     * Defines constants and functionality for security information types used in
     * SMB security descriptor operations and access control management.
     *
     * @author mbechler
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

            // Clear the entire field first
            for (int i = 0; i < 128; i++) {
                buffer[offset + i] = 0;
            }
    
            if (ipv6) {
                // IPv6 sockaddr_in6 structure (Windows AF_INET6 = 23)
                SMBUtil.writeInt2(23, buffer, offset); // sa_family: AF_INET6
                SMBUtil.writeInt2(445, buffer, offset + 2); // sin6_port
                SMBUtil.writeInt4(0, buffer, offset + 4); // sin6_flowinfo
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/bug-report.yaml

          value: |
            <details>
    
            ```console
            # On Linux:
            $ cat /etc/os-release
            # paste output here
            $ uname -a
            # paste output here
    
            # On Windows:
            C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
            # paste output here
            ```
    
            </details>
    
      - type: textarea
        id: installer
        attributes:
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon Feb 28 09:34:43 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/av/AvTimestamp.java

        public AvTimestamp(final byte[] raw) {
            super(AvPair.MsvAvTimestamp, raw);
        }
    
        /**
         * Constructs an AvTimestamp with the specified timestamp value
         *
         * @param ts the timestamp value in Windows FILETIME format
         */
        public AvTimestamp(final long ts) {
            this(encode(ts));
        }
    
        /**
         * @param ts
         * @return
         */
        private static byte[] encode(final long ts) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/NetbiosAddress.java

     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
     * and hosts usually registers several names on the network. From a
     * 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/WinErrorTest.java

                            .of(WinError.ERROR_NO_BROWSER_SERVERS_FOUND, "The list of servers for this workgroup is not currently available."));
        }
    
        @Test
        @DisplayName("Constants: values match Windows error codes")
        void constants_have_expected_values() {
            // Ensure each public constant has its documented numeric value (happy path)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SID.java

    import jcifs.util.Hexdump;
    
    /**
     * Internal representation of SIDs
     *
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * {@code S-1-5-21-1496946806-2192648263-3843101252-1029} but they may
     * also be resolved to yield the name of the associated Windows account
     * such as {@code Administrators} or {@code MYDOM\alice}.
     * <p>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top