Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for 6000051 (0.03 sec)

  1. docs/SMB3_IMPLEMENTATION_PLAN.md

    jcifs.smb.client.useMultiChannel=true
    jcifs.smb.client.maxChannels=4
    jcifs.smb.client.channelBindingPolicy=required
    
    # Directory leasing
    jcifs.smb.client.useDirectoryLeasing=true
    jcifs.smb.client.dirCacheTimeout=60000
    
    # RDMA
    jcifs.smb.client.useRDMA=auto
    jcifs.smb.client.rdmaProvider=disni
    
    # Witness
    jcifs.smb.client.useWitness=true
    jcifs.smb.client.witnessNotificationTimeout=5000
    ```
    
    ## Risk Assessment
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

            int n;
            String name;
    
            final Properties p = new Properties();
            p.putAll(System.getProperties());
            p.setProperty("jcifs.smb.client.soTimeout", "600000");
            p.setProperty("jcifs.smb.client.attrExpirationPeriod", "300000");
    
            final Enumeration<String> e = getInitParameterNames();
            while (e.hasMoreElements()) {
                name = e.nextElement();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                    return "******@****.***";
                }
    
                @Override
                public Integer getCrawlerSystemMonitorIntervalAsInteger() {
                    return 60000;
                }
            };
            ComponentUtil.register(fessConfig, "fessConfig");
    
            File propFile = File.createTempFile("test", ".properties");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbRandomAccessFileTest.java

                b[off + 2] = 0x00;
                b[off + 3] = 0x00;
                return 4;
            }).when(raf).read(any(byte[].class), anyInt(), eq(4));
            assertEquals(1.0f, raf.readFloat(), 0.00001);
    
            // double 1.0 -> 0x3FF0000000000000
            doAnswer(inv -> {
                byte[] b = inv.getArgument(0);
                int off = inv.getArgument(1);
                b[off] = 0x3F;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // ACK SETTINGS
        val settings2 = Settings()
        settings2[Settings.INITIAL_WINDOW_SIZE] = 40000
        settings2[Settings.MAX_FRAME_SIZE] = 50000
        settings2[Settings.MAX_CONCURRENT_STREAMS] = 60000
        peer.sendFrame().settings(settings2)
        peer.acceptFrame() // ACK SETTINGS
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            final StringBuilder sb = new StringBuilder();
            final byte[] buf = new byte[1024];
            int n, level;
            String name;
    
            Config.setProperty("jcifs.smb1.smb.client.soTimeout", "600000");
            Config.setProperty("jcifs.smb1.smb.client.attrExpirationPeriod", "300000");
    
            final Enumeration e = getInitParameterNames();
            while (e.hasMoreElements()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

        }
    
        @ParameterizedTest
        @DisplayName("Test readDataWireFormat with various server versions")
        @CsvSource({ "3, 51, Windows NT 3.51", "4, 0, Windows NT 4.0", "5, 0, Windows 2000", "5, 1, Windows XP", "5, 2, Windows Server 2003",
                "6, 0, Windows Vista", "6, 1, Windows 7", "6, 2, Windows 8", "6, 3, Windows 8.1", "10, 0, Windows 10" })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

            // Write FileFsFullSizeInformation data (32 bytes)
            SMBUtil.writeInt8(1000000, buffer, 20); // Total allocation units
            SMBUtil.writeInt8(500000, buffer, 28); // Caller available units
            SMBUtil.writeInt8(600000, buffer, 36); // Actual available units
            SMBUtil.writeInt4(512, buffer, 44); // Sectors per unit
            SMBUtil.writeInt4(4096, buffer, 48); // Bytes per sector
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

            public int hunds;
            /**
             * The time zone offset from UTC in minutes.
             */
            public int timezone;
            /**
             * The time interval for each tick of the clock in 0.0001 seconds.
             */
            public int tinterval;
            /**
             * The current day of the month (1-31).
             */
            public int day;
            /**
             * The current month (1-12).
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

     * the address in network byte order.
     *
     * <p>Examples of IP addresses and their byte representations:
     *
     * <dl>
     *   <dt>The IPv4 loopback address, {@code "127.0.0.1"}.
     *   <dd>{@code 7f 00 00 01}
     *   <dt>The IPv6 loopback address, {@code "::1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01}
     *   <dt>From the IPv6 reserved documentation prefix ({@code 2001:db8::/32}), {@code "2001:db8::1"}.
    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