Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 370 for PASSWORD (0.04 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'search_engine.password'. <br>
         * The value is, e.g.  <br>
         * comment: Password for authenticating to the search engine.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEnginePassword();
    
        /**
         * Get the value for the key 'search_engine.password' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  2. docs/ja/docs/tutorial/security/index.md

            * `implicit`
            * `clientCredentials`
            * `authorizationCode`
        * しかし、同じアプリケーション内で認証を直接処理するために完全に機能する特定の「フロー」があります。
            * `password`: 次のいくつかの章では、その例を紹介します。
    * `openIdConnect`: OAuth2認証データを自動的に発見する方法を定義できます。
        * この自動検出メカニズムは、OpenID Connectの仕様で定義されているものです。
    
    
    /// tip | 豆知識
    
    Google、Facebook、X (Twitter)、GitHubなど、他の認証/認可プロバイダを統合することも可能で、比較的簡単です。
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            assertNotNull(info502);
            // Initial state of ShareInfo502 fields
            assertNull(info502.netname);
            assertNull(info502.remark);
            assertNull(info502.path);
            assertNull(info502.password);
            assertNull(info502.security_descriptor);
            assertEquals(0, info502.type);
            assertEquals(0, info502.permissions);
            assertEquals(0, info502.max_uses);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. cmd/admin-bucket-handlers.go

    	}
    
    	cred, _, s3Err := validateAdminSignature(ctx, r, "")
    	if s3Err != ErrNone {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL)
    		return
    	}
    	password := cred.SecretKey
    
    	reqBytes, err := madmin.DecryptData(password, io.LimitReader(r.Body, r.ContentLength))
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL)
    		return
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 33.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            @Override
            public String getIndexFieldFiletype() {
                return "filetype";
            }
    
            @Override
            public String getPasswordInvalidAdminPasswords() {
                return "admin,password,123456";
            }
    
            @Override
            public String getPluginVersionFilter() {
                return "";
            }
    
            @Override
            public String getPluginRepositories() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/response-model.md

    ### Anotações de tipo e ferramentas
    
    Primeiro, vamos ver como editores, mypy e outras ferramentas veriam isso.
    
    `BaseUser` tem os campos base. Então `UserIn` herda de `BaseUser` e adiciona o campo `password`, então, ele incluirá todos os campos de ambos os modelos.
    
    Anotamos o tipo de retorno da função como `BaseUser`, mas na verdade estamos retornando uma instância `UserIn`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Nov 26 22:51:05 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        /** Search engine username configuration key. */
        public static final String FESEN_USERNAME = "fesen.username";
    
        /** Search engine password configuration key. */
        public static final String FESEN_PASSWORD = "fesen.password";
    
        // ============================================================
        // Execution Type Constants
        // ============================================================
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

         *
         * @param transport
         *            The SMB transport containing server encryption key
         * @param auth
         *            The NTLM password authenticator containing user credentials
         * @throws SmbException
         *             If there is an error setting up the signing digest
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

            // Mock CIFSContext behavior
            NtlmPasswordAuthentication creds = new NtlmPasswordAuthentication(
                    new BaseContext(new PropertyConfiguration(System.getProperties())), "domain", "user", "password");
            when(mockCifsContext.getCredentials()).thenReturn(creds);
            when(mockCifsContext.getConfig()).thenReturn(new PropertyConfiguration(System.getProperties()));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    		case "mac-algos":
    			allowMACs = filterAlgos(arg, strings.Split(tokens[1], ","), supportedMACs)
    		case "trusted-user-ca-key":
    			userCaKeyFile = tokens[1]
    		case "disable-password-auth":
    			disablePassAuth, _ = strconv.ParseBool(tokens[1])
    		}
    	}
    
    	if port == 0 {
    		port = 8022 // Default SFTP port, since no port was given.
    	}
    
    	if sshPrivateKey == "" {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.5K bytes
    - Viewed (0)
Back to top