Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 170 for doSend (0.04 seconds)

  1. src/main/java/jcifs/smb1/util/transport/Transport.java

        /**
         * Sends a request to the remote endpoint.
         *
         * @param request the request to send
         * @throws IOException if an I/O error occurs
         */
        protected abstract void doSend(Request request) throws IOException;
    
        /**
         * Receives a response from the remote endpoint.
         *
         * @param response the response object to populate
         * @throws IOException if an I/O error occurs
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/util/transport/Transport.java

         * @throws IOException if an I/O error occurs
         */
        protected <T extends Response> long doSend(final Request request, final T response, final Set<RequestParam> params, final long timeout)
                throws IOException {
            final long firstKey = prepareRequests(request, response, params, timeout);
            doSend(request);
            return firstKey;
        }
    
        /**
         * @param request
         * @param response
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 27.8K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

         *
         * @param request the request to send
         * @throws IOException if an I/O error occurs
         */
        protected void doSend0(final Request request) throws IOException {
            try {
                doSend(request);
            } catch (final IOException ioe) {
                if (LogStream.level > 2) {
                    ioe.printStackTrace(log);
                }
                try {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 31.8K bytes
    - Click Count (0)
  4. src/test/java/jcifs/util/transport/TransportTest.java

                if (recvException != null) {
                    throw recvException;
                }
                return peekedKey;
            }
    
            @Override
            protected void doSend(Request request) throws IOException {
                if (sendException != null) {
                    throw sendException;
                }
            }
    
            @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  5. docs/smb3-features/05-rdma-smb-direct-design.md

            maxReadWriteSize = Math.min(maxReadWriteSize, response.getMaxReadWriteSize());
            maxReceiveSize = Math.min(maxReceiveSize, response.getMaxReceiveSize());
        }
        
        @Override
        protected void doSend(ServerMessageBlock2 request) throws IOException {
            if (shouldUseRdmaReadWrite(request)) {
                sendWithRdmaReadWrite(request);
            } else {
                sendWithRdmaSendReceive(request);
            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 35.9K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

                    }
                    return true;
                }
            }
            return false;
        }
    
        protected void doSend0(final Request request) throws IOException {
            try {
                doSend(request);
            } catch (final IOException ioe) {
                log.warn("send failed", ioe);
                try {
                    disconnect(true);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 69.8K bytes
    - Click Count (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

        assertThat(dnsStart.call).isSameInstanceAs(call)
        assertThat(dnsStart.domainName).isEqualTo(server.hostName)
        val dnsEnd: DnsEnd = eventRecorder.removeUpToEvent<DnsEnd>()
        assertThat(dnsEnd.call).isSameInstanceAs(call)
        assertThat(dnsEnd.domainName).isEqualTo(server.hostName)
        assertThat(dnsEnd.inetAddressList.size).isEqualTo(1)
      }
    
      @Test
      fun noDnsLookupOnPooledConnection() {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 70.7K bytes
    - Click Count (0)
  8. docs/ru/docs/advanced/settings.md

    /// tip | Совет
    
    Файл, начинающийся с точки (`.`), является скрытым в системах, подобных Unix, таких как Linux и macOS.
    
    Но файл dotenv не обязательно должен иметь именно такое имя.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  9. docs/de/docs/advanced/settings.md

    /// tip | Tipp
    
    Damit das funktioniert, müssen Sie `pip install python-dotenv` ausführen.
    
    ///
    
    ### Die `.env`-Datei { #the-env-file }
    
    Sie könnten eine `.env`-Datei haben, mit:
    
    ```bash
    ADMIN_EMAIL="******@****.***"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    // 1. CompileAll is the seed build for docs:distDocs
    // 2. BuildDistributions is the seed build for other asciidoctor tasks
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
        isInBuild(
            "Check_CompileAllBuild",
            "Check_BuildDistributions",
            "Component_GradlePlugin_Performance_PerformanceLatestMaster",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Apr 11 20:57:49 GMT 2025
    - 4.8K bytes
    - Click Count (0)
Back to Top