Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 351 - 360 of 639 for password2 (0.21 seconds)

  1. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_ALLOW_BASIC = "spnego.allow.basic";
    
        /** Configuration key for pre-authentication password. */
        protected static final String SPNEGO_PREAUTH_PASSWORD = "spnego.preauth.password";
    
        /** Configuration key for pre-authentication username. */
        protected static final String SPNEGO_PREAUTH_USERNAME = "spnego.preauth.username";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  2. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                        description = "The baselines you want to run performance tests against. Empty means default baseline.",
                    )
                    param("env.PERFORMANCE_DB_PASSWORD_TCAGENT", "%performance.db.password.tcagent%")
                    param("performance.db.username", "tcagent")
                    param("env.PERFORMANCE_CHANNEL", performanceTestSpec.channel())
                }
    
                features {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jan 07 10:42:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  3. internal/config/identity/ldap/help.go

    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         LookupBindPassword,
    			Description: `Password for LDAP read-only service account used to perform DN and group lookups` + defaultHelpPostfix(LookupBindPassword),
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    			Secret:      true,
    		},
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 24 23:05:23 GMT 2024
    - 3.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/util/SystemUtil.java

     * methods specific to the Fess application.
     */
    public class SystemUtil extends org.codelibs.core.lang.SystemUtil {
    
        private static final String DEFAULT_SENSITIVE_PATTERN = ".*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.*";
    
        private static volatile Pattern sensitivePattern;
    
        /**
         * Private constructor to prevent instantiation.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:32:50 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/request-form-models.md

    ///
    
    你可以使用 Pydantic 的模型配置来 `forbid` 任何 `extra` 字段:
    
    {* ../../docs_src/request_form_models/tutorial002_an_py310.py hl[12] *}
    
    如果客户端尝试发送一些额外的数据,他们将收到**错误**响应。
    
    例如,客户端尝试发送如下表单字段:
    
    * `username`: `Rick`
    * `password`: `Portal Gun`
    * `extra`: `Mr. Poopybutthole`
    
    他们将收到一条错误响应,表明字段 `extra` 不被允许:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
                "loc": ["body", "extra"],
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb1/smb1/SmbComSessionSetupAndXTest.java

            // Configure authentication - set fields directly since NtlmPasswordAuthentication is final
            mockAuth.username = "testuser";
            mockAuth.domain = "TESTDOMAIN";
            mockAuth.password = "testpass";
    
            when(mockAuth.getAnsiHash(any(byte[].class))).thenReturn(new byte[24]);
            when(mockAuth.getUnicodeHash(any(byte[].class))).thenReturn(new byte[24]);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  7. docs/uk/llm-prompt.md

    - machine learning: машинне навчання
    - dependency injection: впровадження залежностей
    - digest (HTTP): дайджест
    - basic authentication (HTTP): базова автентифікація
    - JSON schema: Схема JSON
    - password flow: потік паролю
    - mobile: мобільний
    - body: тіло
    - form: форма
    - path: шлях
    - query: запит
    - cookie: кукі
    - header: заголовок
    - startup: запуск
    - shutdown: вимкнення
    - lifespan: тривалість життя
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 16:47:51 GMT 2026
    - 4K bytes
    - Click Count (0)
  8. src/main/java/jcifs/http/NtlmSsp.java

    import jcifs.ntlmssp.Type3Message;
    import jcifs.smb.NtlmPasswordAuthentication;
    
    /**
     * This class is used internally by {@code NtlmHttpFilter},
     * {@code NtlmServlet}, and {@code NetworkExplorer} to negotiate password
     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  9. docs/ja/docs/tutorial/request-form-models.md

    {* ../../docs_src/request_form_models/tutorial002_an_py310.py hl[12] *}
    
    クライアントが余分なデータを送信しようとすると、**エラー**のレスポンスを受け取ります。
    
    例えば、クライアントが次のフォームフィールドを送ろうとした場合:
    
    - `username`: `Rick`
    - `password`: `Portal Gun`
    - `extra`: `Mr. Poopybutthole`
    
    フィールド `extra` は許可されていない旨のエラーレスポンスが返されます:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
                "loc": ["body", "extra"],
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/security/get-current-user.md

    Теперь вы можете получать текущего пользователя прямо в своей *функции-обработчике пути*.
    
    Мы уже на полпути.
    
    Нужно лишь добавить *операцию пути*, чтобы пользователь/клиент мог отправить `username` и `password`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 19:57:34 GMT 2026
    - 6.9K bytes
    - Click Count (0)
Back to Top