Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 361 - 370 of 639 for password2 (0.39 seconds)

  1. docs/uk/docs/tutorial/security/index.md

            * `implicit`
            * `clientCredentials`
            * `authorizationCode`
        * Але є один окремий «потік», який можна ідеально використати для обробки автентифікації напряму в цьому ж застосунку:
            * `password`: у кількох наступних розділах будуть приклади цього.
    * `openIdConnect`: має спосіб визначити, як автоматично виявляти дані автентифікації OAuth2.
        * Саме це автоматичне виявлення визначено у специфікації OpenID Connect.
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:42:01 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  2. fastapi/routing.py

                        (fields) defined in the `response_model`. If you returned an object
                        that contains an attribute `password` but the `response_model` does
                        not include that field, the JSON sent to the client would not have
                        that `password`.
                    * Validation: whatever you return will be serialized with the
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  3. helm-releases/minio-5.0.10.tgz

    makePolicyJob: securityContext: enabled: false runAsUser: 1000 runAsGroup: 1000 resources: requests: memory: 128Mi # Command to run after the main command on exit exitCommand: "" ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.h...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat May 27 00:05:49 GMT 2023
    - 20.3K bytes
    - Click Count (0)
  4. helm-releases/minio-5.0.9.tgz

    makePolicyJob: securityContext: enabled: false runAsUser: 1000 runAsGroup: 1000 resources: requests: memory: 128Mi # Command to run after the main command on exit exitCommand: "" ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.h...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed May 03 06:23:26 GMT 2023
    - 20.2K bytes
    - Click Count (0)
  5. helm-releases/minio-5.0.2.tgz

    securityContext: enabled: false runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 resources: requests: memory: 128Mi # Command to run after the main command on exit exitCommand: "" ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.h...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Dec 18 07:57:10 GMT 2022
    - 20.4K bytes
    - Click Count (0)
  6. helm-releases/minio-5.0.8.tgz

    makePolicyJob: securityContext: enabled: false runAsUser: 1000 runAsGroup: 1000 resources: requests: memory: 128Mi # Command to run after the main command on exit exitCommand: "" ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.h...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Apr 13 21:49:51 GMT 2023
    - 20.3K bytes
    - Click Count (0)
  7. src/main/java/jcifs/http/NetworkExplorer.java

                    int index = auth.indexOf(':');
                    String user = index != -1 ? auth.substring(0, index) : auth;
                    final String password = index != -1 ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if (index == -1) {
                        index = user.indexOf('/');
                    }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 23.4K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb/NtlmAuthenticator.java

            return requestNtlmPasswordAuthentication(auth, url, sae);
        }
    
        /**
         * Requests NTLM password authentication using the specified authenticator.
         * @param a the authenticator to use for retrieving credentials
         * @param url the URL that requires authentication
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/security/get-current-user.md

    ## Özet { #recap }
    
    Artık *path operation function* içinde mevcut kullanıcıyı doğrudan alabilirsiniz.
    
    Yolun yarısına geldik.
    
    Kullanıcının/istemcinin gerçekten `username` ve `password` göndermesini sağlayacak bir *path operation* eklememiz gerekiyor.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  10. src/main/resources/app.xml

    			<arg>
    				<component class="org.codelibs.fess.auth.chain.CommandChain">
    					<property name="updateCommand">[
    					"/usr/sbin/htpasswd",
    					"-b",
    					"/tmp/test.txt",
    					"$USERNAME",
    					"$PASSWORD"
    					]</property>
    					<property name="deleteCommand">[
    					"/usr/sbin/htpasswd",
    					"-D",
    					"/tmp/test.txt",
    					"$USERNAME"
    					]</property>
    					<property name="targetUsers">[
    					"admin"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 4K bytes
    - Click Count (0)
Back to Top