Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 158 for senden (0.12 sec)

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

            final SmbComTransaction req = new NetShareEnum(th.getConfig());
            final SmbComTransactionResponse resp = new NetShareEnumResponse(th.getConfig());
            th.send(req, resp);
            if (resp.getStatus() != WinError.ERROR_SUCCESS) {
                throw new SmbException(resp.getStatus(), true);
            }
    
            return resp.getResults();
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

     * multiplexing requests. It encapsulates a stream and some protocol
     * knowledge (provided by a concrete subclass) so that connecting,
     * disconnecting, sending, and receiving can be syncronized
     * properly. Apparatus is provided to send and receive requests
     * concurrently.
     */
    
    /**
     * Abstract base class for network transport implementations in JCIFS.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  3. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    salud.bo
    salvador.br
    samegawa.fukushima.jp
    samnanger.no
    sampa.br
    samsclub
    samsung
    samukawa.kanagawa.jp
    sanagochi.tokushima.jp
    sanda.hyogo.jp
    sandcats.io
    sande.more-og-romsdal.no
    sande.møre-og-romsdal.no
    sande.vestfold.no
    sandefjord.no
    sandnes.no
    sandnessjoen.no
    sandnessjøen.no
    sandoy.no
    sandvik
    sandvikcoromant
    sandøy.no
    sango.nara.jp
    sanjo.niigata.jp
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  4. src/main/resources/fess_message.properties

    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    errors.failed_to_send_testmail=Failed to send a test mail.
    errors.invalid_query_unknown = The specified query has an unknown condition.
    errors.invalid_query_parse_error = The given query is invalid.
    errors.invalid_query_sort_value = The specified sort {0} is invalid.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_en.properties

    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    errors.failed_to_send_testmail=Failed to send a test mail.
    errors.invalid_query_unknown = The specified query has an unknown condition.
    errors.invalid_query_parse_error = The given query is invalid.
    errors.invalid_query_sort_value = The specified sort {0} is invalid.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SpnegoContext.java

                    }
                    this.completed = true;
                } else if (this.mechContext.isMICAvailable() && (!this.disableMic || this.requireMic)) {
                    // we need to send our final data
                    mechMIC = calculateMechListMIC();
                } else if (targ.getResult() == NegTokenTarg.REJECTED) {
                    throw new SmbException("SPNEGO mechanism was rejected");
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. CHANGELOG.md

    _alpha_ in the version name, the only unstable thing in it is some non-final APIs tagged
    `@ExperimentalOkHttpApi`. You can safely use this release in production.
    
     *  Fix: Attempt to read the response even if sending the request failed. This makes it possible
        to handle response statuses like `HTTP/1.1 431 "Request Header Fields Too Large`.
    
     *  Fix: Handle multiple 1xx responses.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  8. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            int bufferCacheSize = delegatingConfig.getBufferCacheSize();
            int notifyBufferSize = delegatingConfig.getNotifyBufferSize();
    
            // Then
            assertEquals(8192, sendBufferSize, "Should delegate send buffer size");
            assertEquals(8192, receiveBufferSize, "Should delegate receive buffer size");
            assertEquals(65536, maximumBufferSize, "Should delegate maximum buffer size");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.notification_search_top=Search Top Page
    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.send_testmail=Send Test Mail
    labels.backup_configuration=Backup
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk File
    labels.backup_button_upload=Upload
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/LongMath.java

          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          long delta = a - b; // can't overflow, since a and b are nonnegative
    
          long minDeltaOrZero = delta & (delta >> (Long.SIZE - 1));
          // equivalent to Math.min(delta, 0)
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
Back to top