Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for 8194 (0.02 sec)

  1. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java

            Smb2SessionSetupRequest req =
                    new Smb2SessionSetupRequest(mockContext, TEST_SECURITY_MODE, TEST_CAPABILITIES, TEST_PREVIOUS_SESSION_ID, largeToken);
            byte[] buffer = new byte[8192];
    
            // When
            req.encode(buffer, 0);
    
            // Then
            int bodyOffset = Smb2Constants.SMB2_HEADER_LENGTH;
            assertEquals(largeToken.length, SMBUtil.readInt2(buffer, bodyOffset + 14));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EV_EOF ideal-int
    pkg syscall (freebsd-arm64), const EV_ERROR = 16384
    pkg syscall (freebsd-arm64), const EV_ERROR ideal-int
    pkg syscall (freebsd-arm64), const EV_FLAG1 = 8192
    pkg syscall (freebsd-arm64), const EV_FLAG1 ideal-int
    pkg syscall (freebsd-arm64), const EV_ONESHOT = 16
    pkg syscall (freebsd-arm64), const EV_ONESHOT ideal-int
    pkg syscall (freebsd-arm64), const EV_RECEIPT = 64
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  3. docs/en/data/topic_repos.yml

      stars: 2196
      owner_login: codingforentrepreneurs
      owner_html_url: https://github.com/codingforentrepreneurs
    - name: supabase-py
      html_url: https://github.com/supabase/supabase-py
      stars: 2194
      owner_login: supabase
      owner_html_url: https://github.com/supabase
    - name: langserve
      html_url: https://github.com/langchain-ai/langserve
      stars: 2157
      owner_login: langchain-ai
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:57:41 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPSHRDD $81, Z6, Z26, K3, Z6                       // 62f32d4373f651
    	VPSHRDD $81, 99(R15)(R15*2), Z26, K3, Z6           // 62932d4373b47f6300000051
    	VPSHRDD $81, -7(DI), Z26, K3, Z6                   // 62f32d4373b7f9ffffff51
    	VPSHRDD $81, Z28, Z14, K3, Z6                      // 62930d4b73f451
    	VPSHRDD $81, Z6, Z14, K3, Z6                       // 62f30d4b73f651
    	VPSHRDD $81, 99(R15)(R15*2), Z14, K3, Z6           // 62930d4b73b47f6300000051
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 97.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NetworkExplorer.java

         * @throws IOException if an I/O error occurs
         */
        protected void doFile(final HttpServletRequest req, final HttpServletResponse resp, final SmbFile file) throws IOException {
            final byte[] buf = new byte[8192];
    
            @SuppressWarnings("resource")
            final ServletOutputStream out = resp.getOutputStream();
            String url;
            int n;
            try (SmbFileInputStream in = new SmbFileInputStream(file)) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                offset += CHUNK_SIZE;
                assertEquals(4096L, SMBUtil.readInt8(buffer, offset));
                assertEquals(5120L, SMBUtil.readInt8(buffer, offset + 8));
                assertEquals(8192, SMBUtil.readInt4(buffer, offset + 16));
    
                offset += CHUNK_SIZE;
                assertEquals(12288L, SMBUtil.readInt8(buffer, offset));
                assertEquals(13312L, SMBUtil.readInt8(buffer, offset + 8));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int ACB_SMARTCARD_REQUIRED = 4096;
        /** Account control bit flag: Account is trusted for delegation */
        public static final int ACB_TRUSTED_FOR_DELEGATION = 8192;
        /** Account control bit flag: Account is not delegated */
        public static final int ACB_NOT_DELEGATED = 16384;
        /** Account control bit flag: Use DES encryption keys only */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        public static final int ACB_SMARTCARD_REQUIRED = 4096;
        /** Account control bit flag: Account is trusted for delegation */
        public static final int ACB_TRUSTED_FOR_DELEGATION = 8192;
        /** Account control bit flag: Account is not delegated */
        public static final int ACB_NOT_DELEGATED = 16384;
        /** Account control bit flag: Use DES encryption keys only */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/CharSource.java

          }
          return super.asCharSource(charset);
        }
    
        @Override
        public InputStream openStream() throws IOException {
          return new ReaderInputStream(CharSource.this.openStream(), charset, 8192);
        }
    
        @Override
        public String toString() {
          return CharSource.this.toString() + ".asByteSource(" + charset + ")";
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/CharSource.java

          }
          return super.asCharSource(charset);
        }
    
        @Override
        public InputStream openStream() throws IOException {
          return new ReaderInputStream(CharSource.this.openStream(), charset, 8192);
        }
    
        @Override
        public String toString() {
          return CharSource.this.toString() + ".asByteSource(" + charset + ")";
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 25.3K bytes
    - Viewed (0)
Back to top