Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 114 for drivers (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

            if (error.getMessage() != null) {
                String message = error.getMessage().toLowerCase();
                if (message.contains("hardware") || message.contains("device not found") || message.contains("driver")
                        || message.contains("not supported") || message.contains("capability")) {
                    return true;
                }
            }
    
            // If we've had many errors, consider fallback
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. CODE_OF_CONDUCT.md

    nationality, personal appearance, race, religion, or sexual identity
    and orientation.
    
    We pledge to act and interact in ways that contribute to an open, welcoming,
    diverse, inclusive, and healthy community.
    
    ## Our Standards
    
    Examples of behavior that contributes to a positive environment for our
    community includes:
    
    * Demonstrating empathy and kindness toward other people
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Oct 17 06:18:13 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtStatus.java

                "The referenced account is currently locked out and may not be logged on to.", "Connection refused",
                "The remote system is not reachable by the transport.",
                "The layered file system driver for this I/O tag did not handle it when needed.",
                "No more files were found that match the file specification.", };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

            auth.setLifeTime(-2);
            assertEquals(-2, auth.getLifeTime());
        }
    
        @Nested
        class UserDomainTests {
            @Test
            @DisplayName("getUserDomain: derives from KerberosPrincipal in Subject")
            void getUserDomain_fromSubjectPrincipal() {
                Subject subject = new Subject();
                Principal kp = new KerberosPrincipal("******@****.***");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/PacMac.java

                System.arraycopy(m.doFinal(input), 0, output, 0, 12);
                return output;
            } finally {
                Arrays.fill(dk, 0, dk.length, (byte) 0);
            }
        }
    
        /**
         * Derives an AES key using the Kerberos key derivation function.
         * This method implements the simplified key derivation for AES encryption types.
         *
         * @param key the base Kerberos key
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/PacLogonInfo.java

         * @return the home directory path
         */
        public String getHomeDirectory() {
            return this.homeDirectory;
        }
    
        /**
         * Returns the user's home drive letter.
         * @return the home drive
         */
        public String getHomeDrive() {
            return this.homeDrive;
        }
    
        /**
         * Returns the name of the server that authenticated the user.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt

      private val messageFrameBuffer = Buffer()
    
      /** Lazily initialized on first use. */
      private var messageInflater: MessageInflater? = null
    
      // Masks are only a concern for server writers.
      private val maskKey: ByteArray? = if (isClient) null else ByteArray(4)
      private val maskCursor: Buffer.UnsafeCursor? = if (isClient) null else Buffer.UnsafeCursor()
    
      interface FrameCallback {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 22:04:11 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. docs/fr/docs/async.md

    * de la donnée soit envoyée par le client à travers le réseau
    * de la donnée envoyée depuis votre programme soit reçue par le client à travers le réseau
    * le contenu d'un fichier sur le disque soit lu par le système et passé à votre programme
    * le contenu que votre programme a passé au système soit écrit sur le disque
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

        result = CharStreams.asWriter(secretlyAWriter);
        assertSame(secretlyAWriter, result);
      }
    
      // CharStreams.copy has type specific optimizations for Readers,StringBuilders and Writers
    
      public void testCopy() throws IOException {
        StringBuilder builder = new StringBuilder();
        long copied =
            CharStreams.copy(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/CharStreamsTest.java

        result = CharStreams.asWriter(secretlyAWriter);
        assertSame(secretlyAWriter, result);
      }
    
      // CharStreams.copy has type specific optimizations for Readers,StringBuilders and Writers
    
      public void testCopy() throws IOException {
        StringBuilder builder = new StringBuilder();
        long copied =
            CharStreams.copy(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top