Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 765 for src2 (0.02 sec)

  1. src/main/java/jcifs/smb1/util/Hexdump.java

    1. }
    2. public static String toHexString( byte[] src, int srcIndex, int size ) {
    3. char[] c = new char[size];
    4. size = ( size % 2 == 0 ) ? size / 2 : size / 2 + 1;
    5. for( int i = 0, j = 0; i < size; i++ ) {
    6. c[j++] = HEX_DIGITS[(src[i] >> 4 ) & 0x0F];
    7. if( j == c.length ) {
    8. break;
    9. }
    10. c[j++] = HEX_DIGITS[src[i] & 0x0F];
    11. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

    1. }
    2.  
    3. protected static void copyBeanToBean(final Object src, final Object dest, final Consumer<CopyOptions> option) {
    4. BeanUtil.copyBeanToBean(src, dest, option);
    5. }
    6.  
    7. protected static void copyMapToBean(final Map<String, ? extends Object> src, final Object dest, final Consumer<CopyOptions> option) {
    8. BeanUtil.copyMapToBean(src, dest, option);
    9. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/Encdec.java

    1. * Decode integers
    2. */
    3.  
    4. public static short dec_uint16be ( byte[] src, int si ) {
    5. return (short) ( ( ( src[ si ] & 0xFF ) << 8 ) | ( src[ si + 1 ] & 0xFF ) );
    6. }
    7.  
    8.  
    9. public static int dec_uint32be ( byte[] src, int si ) {
    10. return ( ( src[ si ] & 0xFF ) << 24 ) | ( ( src[ si + 1 ] & 0xFF ) << 16 ) | ( ( src[ si + 2 ] & 0xFF ) << 8 ) | ( src[ si + 3 ] & 0xFF );
    11. }
    12.  
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServicePacket.java

    1. }
    2.  
    3.  
    4. static int readInt2 ( byte[] src, int srcIndex ) {
    5. return ( ( src[ srcIndex ] & 0xFF ) << 8 ) + ( src[ srcIndex + 1 ] & 0xFF );
    6. }
    7.  
    8.  
    9. static int readInt4 ( byte[] src, int srcIndex ) {
    10. return ( ( src[ srcIndex ] & 0xFF ) << 24 ) + ( ( src[ srcIndex + 1 ] & 0xFF ) << 16 ) + ( ( src[ srcIndex + 2 ] & 0xFF ) << 8 )
    11. + ( src[ srcIndex + 3 ] & 0xFF );
    12. }
    13.  
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

    1. }
    2. static int readInt2( byte[] src, int srcIndex ) {
    3. return (( src[srcIndex] & 0xFF ) << 8 ) +
    4. ( src[srcIndex + 1] & 0xFF );
    5. }
    6. static int readInt4( byte[] src, int srcIndex ) {
    7. return (( src[srcIndex] & 0xFF ) << 24 ) +
    8. (( src[srcIndex + 1] & 0xFF ) << 16 ) +
    9. (( src[srcIndex + 2] & 0xFF ) << 8 ) +
    10. ( src[srcIndex + 3] & 0xFF );
    11. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  6. doap_Maven.rdf

    http://archive.apache.org/dist/maven/source/apache-maven-3.0.1-src.zip http://archive.apache.org/dist/maven/source/apache-maven-3.0.1-src.tar.gz Apache Maven 3.0 2010-10-04 3.0 http://archive.apache.org/dist/maven/binaries/apache-maven-3.0-bin.zip http://archive.apache.org/dist/maven/binaries/apache-maven-3.0-bin.tar.gz http://archive.apache.org/dist/maven/source/apache-maven-3.0-src.zip http://archive.apache.org/dist/maven/source/apache-maven-3.0-src.tar.gz https://gitbox.apache.org/repos/asf/maven.git ...
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Oct 22 13:53:03 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. docs/zh/docs/advanced/generate-clients.md

    1. > openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios
    2. ```
    3.  
    4. </div>
    5.  
    6. 此命令将在 `./src/client` 中生成代码,并将在其内部使用 `axios`(前端HTTP库)。
    7.  
    8. ### 尝试客户端代码
    9.  
    10. 现在您可以导入并使用客户端代码,它可能看起来像这样,请注意,您可以为这些方法使用自动补全:
    11.  
    12. <img src="/img/tutorial/generate-clients/image02.png">
    13.  
    14. 您还将自动补全要发送的数据:
    15.  
    16. <img src="/img/tutorial/generate-clients/image03.png">
    17.  
    18. /// tip
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/NtlmMessage.java

    1. }
    2.  
    3.  
    4. static int readULong ( byte[] src, int index ) {
    5. return ( src[ index ] & 0xff ) | ( ( src[ index + 1 ] & 0xff ) << 8 ) | ( ( src[ index + 2 ] & 0xff ) << 16 )
    6. | ( ( src[ index + 3 ] & 0xff ) << 24 );
    7. }
    8.  
    9.  
    10. static int readUShort ( byte[] src, int index ) {
    11. return ( src[ index ] & 0xff ) | ( ( src[ index + 1 ] & 0xff ) << 8 );
    12. }
    13.  
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  9. test-site/public/index.html

    1. <title>fess-suggest-test</title>
    2. <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
    3. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    4. <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
    5. <script src="/javascripts/suggestor.js"></script>
    6. <div class="container">
    7. <div class="row" style="margin-top:100px;">
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  10. internal/hash/reader_test.go

    1. func TestHashReaderVerification(t *testing.T) {
    2. testCases := []struct {
    3. desc string
    4. src io.Reader
    5. size int64
    6. actualSize int64
    7. md5hex, sha256hex string
    8. err error
    9. }{
    10. 0: {
    11. desc: "Success, no checksum verification provided.",
    12. src: bytes.NewReader([]byte("abcd")),
    13. size: 4,
    14. actualSize: 4,
    15. },
    16. {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top