Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 394 for rprotocol (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

    import org.lastaflute.web.login.credential.LoginCredential;
    
    /**
     * SPNEGO authentication credential implementation.
     *
     * This class represents login credentials obtained through SPNEGO (Security Provider
     * Negotiation Protocol) authentication. It contains the username extracted from the
     * SPNEGO authentication process, typically from a Kerberos ticket.
     */
    public class SpnegoCredential implements LoginCredential, FessCredential {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/BaseTestHandler.kt

        streamId: Int,
        associatedStreamId: Int,
        headerBlock: List<Header>,
      ) {
        fail("")
      }
    
      override fun alternateService(
        streamId: Int,
        origin: String,
        protocol: ByteString,
        host: String,
        port: Int,
        maxAge: Long,
      ) {
        fail("")
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

    ## 2. Protocol Specification Reference
    
    - **MS-SMBD**: SMB2 Remote Direct Memory Access (RDMA) Transport Protocol
    - **MS-SMB2 Section 2.2.3.1.1**: SMB2 Negotiate Protocol Request with RDMA
    - **MS-SMB2 Section 3.1.5.2**: RDMA Transport Connection
    - **RFC 5040**: A Remote Direct Memory Access Protocol Specification
    - **RFC 5041**: Direct Data Placement over Reliable Transports
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java

                    URL.setURLStreamHandlerFactory(new URLStreamHandlerFactory() {
                        @Override
                        public URLStreamHandler createURLStreamHandler(String protocol) {
                            if ("smb".equals(protocol)) {
                                return new Handler();
                            }
                            return null;
                        }
                    });
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/ServerData.java

    /**
     * Container for SMB server negotiation data.
     * This class holds the server capabilities, configuration, and security
     * parameters received during SMB protocol negotiation.
     *
     * Stores server-specific data obtained during SMB1 protocol negotiation.
     */
    public class ServerData {
    
        /**
         * Default constructor for ServerData.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/test/net/protocol/xxx5/TestHandler.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.test.net.protocol.xxx5;
    
    public class TestHandler {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 702 bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

    import jcifs.internal.smb2.info.Smb2QueryDirectoryResponse;
    
    /**
     * SMB2/SMB3 implementation of directory entry enumeration iterator.
     * Provides efficient directory listing capabilities for SMB2/SMB3 protocol versions.
     *
     * @author mbechler
     *
     */
    public class DirFileEntryEnumIterator2 extends DirFileEntryEnumIteratorBase {
    
        private static final Logger log = LoggerFactory.getLogger(DirFileEntryEnumIterator2.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/DcerpcException.java

     */
    
    package jcifs.dcerpc;
    
    import jcifs.CIFSException;
    import jcifs.smb.WinError;
    import jcifs.util.Hexdump;
    
    /**
     * Exception class for DCE/RPC related errors.
     * This exception is thrown when DCE/RPC protocol errors occur.
     */
    public class DcerpcException extends CIFSException implements DcerpcError, WinError {
    
        /**
         *
         */
        private static final long serialVersionUID = -6113895861333916945L;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    import jcifs.util.Strings;
    import jcifs.util.transport.Response;
    
    /**
     * SMB1 Negotiate Protocol Response message.
     *
     * This response contains information about the server's capabilities,
     * security mode, and supported protocol version.
     */
    public class SmbComNegotiateResponse extends ServerMessageBlock implements SmbNegotiationResponse {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/PublicInternalApiTest.kt

        val request = Request.Builder().url("http://example.com").build()
        val response =
          Response
            .Builder()
            .code(200)
            .message("OK")
            .request(request)
            .protocol(Protocol.HTTP_2)
            .build()
        assertTrue(hasBody(response))
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top