Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 363 for sends (0.89 sec)

  1. src/main/java/jcifs/smb/SmbTreeConnection.java

                    }
                    return t.send(request, response, params);
                } catch (final DfsReferral dre) {
                    if (dre.getData().unwrap(DfsReferralDataInternal.class).isResolveHashes()) {
                        throw dre;
                    }
                    request.reset();
                    log.trace("send0", dre);
                }
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    footsteps in the distance, and she looked up eagerly, half hoping
    that the Mouse had changed his mind, and was coming back to
    finish his story.
    
    
    
                               CHAPTER IV
    
                    The Rabbit Sends in a Little Bill
    
    
      It was the White Rabbit, trotting slowly back again, and
    looking anxiously about as it went, as if it had lost something;
    and she heard it muttering to itself `The Duchess!  The Duchess!
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java

            // Arrange: program send() to simulate first, next, next(NO_MORE_FILES)
            List<String[]> batches = new ArrayList<>();
            batches.add(new String[] { ".", "..", "a", "b" }); // first batch, dot entries filtered
            batches.add(new String[] { "c" }); // second batch
            batches.add(new String[] {}); // last -> NO_MORE_FILES
    
            // send() answer that mutates the provided response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            }
    
            do {
                try {
                    send(request, response, config.getNetbiosRetryTimeout());
                } catch (final InterruptedIOException ioe) {
                    // second query thread to finish gets interrupted so this is expected
                    if (log.isTraceEnabled()) {
                        log.trace("Failed to send nameservice request for " + name.name, ioe);
                    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                                 */
                request.addr = addr; /* if addr ends with 255 flag it bcast */
                request.isBroadcast = addr.getAddress()[3] == (byte) 0xFF;
    
                n = RETRY_COUNT;
                do {
                    try {
                        send(request, response, RETRY_TIMEOUT);
                    } catch (final IOException ioe) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/background-tasks.md

    This includes, for example:
    
    * Email notifications sent after performing an action:
        * As connecting to an email server and sending an email tends to be "slow" (several seconds), you can return the response right away and send the email notification in the background.
    * Processing data:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

                request.flags2 &= ~SmbConstants.FLAGS2_RESOLVE_PATHS_IN_DFS;
            }
        }
    
        void send(final ServerMessageBlock request, final ServerMessageBlock response) throws SmbException {
            for (;;) {
                resolveDfs(request);
                try {
                    tree.send(request, response);
                    break;
                } catch (final DfsReferral dre) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbTreeInternalTest.java

        }
    
        @Test
        @DisplayName("send with multiple params returns the stubbed response")
        void send_withParams_returnsResponse() throws Exception {
            // Arrange
            when(tree.send(eq(request), eq(RequestParam.NO_TIMEOUT), eq(RequestParam.NO_RETRY))).thenReturn(response);
    
            // Act
            CommonServerMessageBlockResponse out = tree.send(request, RequestParam.NO_TIMEOUT, RequestParam.NO_RETRY);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/SmbTreeTest.java

            ServerMessageBlock response = new SmbComOpenAndXResponse();
    
            // Execute send
            tree.send(request, response);
    
            // Verify session.send was called and tid was set
            verify(session).send(request, response);
            assertEquals(123, request.tid);
        }
    
        @Test
        void testSendWithDfs() throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: enabled the --experimental-watch-progress-notify-interval flag for etcd and set it to 5s. The flag specifies an interval at which etcd sends watch data to the kube-apiserver. ([#111383](https://github.com/kubernetes/kubernetes/pull/111383), [@p0lyn0mial](https://github.com/p0lyn0mial))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top