Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 288 for Romadin (0.29 sec)

  1. dbflute_fess/dfprop/lastafluteMap.dfprop

    #         }
    #     }
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        # your service name, camel case, initial uncapitalised
        ; serviceName = fess
    
        # package for your domain name, e.g. com.example
        ; domainPackage = org.codelibs.fess
    
        # keywords for environment properties, same as directory name
        ; environmentList = list:{}
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/middleware.md

    {* ../../docs_src/advanced_middleware/tutorial002.py hl[2,6:8] *}
    
    Se soportan los siguientes argumentos:
    
    * `allowed_hosts` - Una list de nombres de dominio que deberían ser permitidos como nombres de host. Se soportan dominios comodín como `*.example.com` para hacer coincidir subdominios. Para permitir cualquier nombre de host, usa `allowed_hosts=["*"]` u omite el middleware.
    
    Si una request entrante no se valida correctamente, se enviará un response `400`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/SessionRequestPacketTest.java

            when(mockCalledName.getNameType()).thenReturn(0x20);
            when(mockCalledName.getScope()).thenReturn("DOMAIN.COM");
    
            when(mockCallingName.getName()).thenReturn("CLIENT");
            when(mockCallingName.getNameType()).thenReturn(0x00);
            when(mockCallingName.getScope()).thenReturn("DOMAIN.COM");
    
            SessionRequestPacket packet = new SessionRequestPacket(mockConfig, mockCalledName, mockCallingName);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportInternal.java

         * Gets DFS referrals for the specified path.
         *
         * @param ctx the CIFS context
         * @param name the DFS path to resolve
         * @param targetHost the target host name
         * @param targetDomain the target domain
         * @param rn the referral number
         * @return dfs referral
         * @throws SmbException if an SMB error occurs
         * @throws CIFSException if a CIFS error occurs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        int NTLMSSP_NEGOTIATE_NETWARE = 0x00000100;
    
        /**
        * Indicates support for NTLM authentication.
        */
        int NTLMSSP_NEGOTIATE_NTLM = 0x00000200;
    
        /**
        * Indicates whether the OEM-formatted domain name in which the
        * client workstation has membership is supplied in the Type-1 message.
        * This is used in the negotation of local authentication.
        */
        int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenAlias.java

     * (local group) using the SAMR RPC interface.
     */
    public class MsrpcSamrOpenAlias extends samr.SamrOpenAlias {
    
        /**
         * Creates a new request to open an alias handle.
         *
         * @param handle the domain handle
         * @param access the desired access rights
         * @param rid the relative identifier of the alias
         * @param aliasHandle the alias handle to be populated
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

        val value: String = cookie.value()
        val persistent: Boolean = cookie.persistent()
        val expiresAt: Long = cookie.expiresAt()
        val hostOnly: Boolean = cookie.hostOnly()
        val domain: String = cookie.domain()
        val path: String = cookie.path()
        val httpOnly: Boolean = cookie.httpOnly()
        val secure: Boolean = cookie.secure()
      }
    
      @Test @Disabled
      fun formBody() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NetworkExplorer.java

                        index = user.indexOf('/');
                    }
                    final String domain = index != -1 ? user.substring(0, index) : this.defaultDomain;
                    user = index != -1 ? user.substring(index + 1) : user;
                    ntlm = new NtlmPasswordAuthentication(getTransportContext(), domain, user, password);
                }
    
                req.getSession().setAttribute("npa-" + server, ntlm);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmChallenge.java

     */
    public final class NtlmChallenge implements Serializable {
    
        /**
         * The NTLM challenge bytes received from the server.
         */
        public byte[] challenge;
        /**
         * The domain controller address that issued the challenge.
         */
        public UniAddress dc;
    
        NtlmChallenge(final byte[] challenge, final UniAddress dc) {
            this.challenge = challenge;
            this.dc = dc;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/msrpc/MsrpcEnumerateAliasesInDomainTest.java

            // Then
            assertNotNull(request, "The request object should not be null.");
            assertEquals(mockDomainHandle, request.domain_handle, "The domain handle should be set correctly.");
            assertEquals(acctFlags, request.acct_flags, "The account flags should be set correctly.");
            assertEquals(mockSamArray, request.sam, "The sam array should be set correctly.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top