Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 711 for sergey (0.06 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/ServerTruncatesRequestTest.kt

        val callB = client.newCall(Request(server.url("/")))
        callB.execute().use { response ->
          assertThat(response.body.string()).isEqualTo("abc")
        }
      }
    
      private fun makeSimpleCall() {
        server.enqueue(MockResponse(body = "healthy"))
        val callB = client.newCall(Request(server.url("/")))
        callB.execute().use { response ->
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

            }
        }
    
        /**
         * Server information level 100 structure containing basic server information.
         */
        public static class ServerInfo100 extends NdrObject {
    
            /**
             * Default constructor for ServerInfo100.
             */
            public ServerInfo100() {
            }
    
            /**
             * The platform ID of the server.
             */
            public int platform_id;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionListenerTest.kt

      fun secondCallEventSequence() {
        enableTls()
        server!!.protocols = listOf(Protocol.HTTP_2, Protocol.HTTP_1_1)
        server!!.enqueue(MockResponse())
        server!!.enqueue(MockResponse())
    
        client
          .newCall(Request(server!!.url("/")))
          .execute()
          .close()
    
        client
          .newCall(Request(server!!.url("/")))
          .execute()
          .close()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/msrpc/SamrPolicyHandleTest.java

        void testConstructor_NullServer() throws IOException {
            // Test case: Constructor with null server, should default to "\\\\"
            String server = null;
            int access = 123;
    
            doNothing().when(mockHandle).sendrecv(any(MsrpcSamrConnect4.class));
    
            try (SamrPolicyHandle handle = new SamrPolicyHandle(mockHandle, server, access)) {
                assertNotNull(handle);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbTransportPool.java

     *
     * <p>This interface is intended for internal use.</p>
     */
    public interface SmbTransportPool {
    
        /**
         * Gets an SMB transport connection to the specified server.
         *
         * @param tf the CIFS context to use
         * @param name the server name or address
         * @param port the port number
         * @param exclusive whether to acquire an unshared connection
         * @param forceSigning whether to enforce SMB signing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/HttpUpgradesTest.kt

      }
    
      @Test
      fun upgradesOnReusedConnection() {
        server.enqueue(MockResponse(body = "normal request"))
        client.newCall(Request(server.url("/"))).execute().use { response ->
          assertThat(response.body.string()).isEqualTo("normal request")
        }
    
        upgrade()
    
        assertThat(server.takeRequest().connectionIndex).isEqualTo(0)
        assertThat(server.takeRequest().connectionIndex).isEqualTo(0)
      }
    
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

                assertEquals("smb://server/IPC$/test", result);
            }
    
            @Test
            @DisplayName("Should generate correct pipe URL with server option")
            void testMakePipeUrl_WithServerOption() throws Exception {
                when(mockDcerpcBinding.getOption("server")).thenReturn("customServer");
                DcerpcPipeHandle handle = createMockedDcerpcPipeHandle();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/SamrPolicyHandle.java

     * This class represents an open handle to a SAM server and provides
     * high-level access to SAM database operations.
     */
    public class SamrPolicyHandle extends rpc.policy_handle {
    
        DcerpcHandle handle;
    
        /**
         * Creates a new SAM policy handle.
         *
         * @param handle the DCE/RPC handle for communication
         * @param server the server name (null defaults to local server)
         * @param access the desired access rights
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/RequestWithPath.java

         */
        void setPath(String path);
    
        /**
         * Sets the full UNC path components.
         *
         * @param domain the domain name
         * @param server the server name
         * @param fullPath the full UNC path
         */
        void setFullUNCPath(String domain, String server, String fullPath);
    
        /**
         * Sets whether to resolve this request path in DFS.
         *
         * @param resolve true to enable DFS resolution
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * This references only a server. The behavior of some methods is different
     * in this context(e.g. you cannot <code>delete</code> a server) however
     * as you might expect the <code>list</code> method will list the available
     * shares on this server.
     * </td>
     * </tr>
     *
     * <tr>
     * <td ><code>smb://angus.foo.net/d/jcifs/pipes.doc</code></td>
     * <td>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top