Search Options

Results per page
Sort
Preferred Languages
Advance

Results 461 - 470 of 1,423 for mail (0.02 sec)

  1. docs/em/docs/tutorial/security/simple-oauth2.md

    #### ๐Ÿ”ƒ `**user_dict`
    
    `UserInDB(**user_dict)` โ›“:
    
    *๐Ÿšถโ€โ™€๏ธ ๐Ÿ”‘ & ๐Ÿ’ฒ `user_dict` ๐Ÿ”— ๐Ÿ”‘-๐Ÿ’ฒ โŒ, ๐ŸŒ“:*
    
    ```Python
    UserInDB(
        username = user_dict["username"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
        disabled = user_dict["disabled"],
        hashed_password = user_dict["hashed_password"],
    )
    ```
    
    /// info
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. docs/sts/dex.md

    ```
    
    ### Run the `web-identity.go`
    
    ```
    ~ go run web-identity.go -cid example-app -csec ZXhhbXBsZS1hcHAtc2VjcmV0 \
         -config-ep http://127.0.0.1:5556/dex/.well-known/openid-configuration \
         -cscopes groups,openid,email,profile
    ```
    
    ```
    ~ mc admin policy create admin allaccess.json
    ```
    
    Contents of `allaccess.json`
    
    ```json
    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Effect": "Allow",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

        /* Creates a new file or supersedes the existing one
         */
    
        static final int FILE_SUPERSEDE = 0x0;
    
        /* Open the file or fail if it does not exist
         * aka OPEN_EXISTING
         */
    
        static final int FILE_OPEN = 0x1;
    
        /* Create the file or fail if it does not exist
         * aka CREATE_NEW
         */
    
        static final int FILE_CREATE = 0x2;
    
        /* Open the file or create it if it does not exist
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/response-status-code.md

    Resumidamente:
    
    
    * `100` e acima sรฃo para "Informaรงรตes". Vocรช raramente os usa diretamente. As respostas com esses cรณdigos de status nรฃo podem ter um corpo.
    * **`200`** e acima sรฃo para respostas "Bem-sucedidas". Estes sรฃo os que vocรช mais usaria.
        * `200` รฉ o cรณdigo de status padrรฃo, o que significa que tudo estava "OK".
        * Outro exemplo seria `201`, "Criado". ร‰ comumente usado apรณs a criaรงรฃo de um novo registro no banco de dados.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. doc/initial/1-intro.md

    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES โ€” Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Dec 27 16:54:04 UTC 2024
    - 246 bytes
    - Viewed (0)
  6. docs/ko/docs/deployment/server-workers.md

    ```
    
    </div>
    
    ๊ฐ ์˜ต์…˜์ด ๋ฌด์—‡์„ ์˜๋ฏธํ•˜๋Š”์ง€ ์‚ดํŽด๋ด…์‹œ๋‹ค:
    
    * ์ด๊ฒƒ์€ ์œ ๋น„์ฝ˜๊ณผ ๋˜‘๊ฐ™์€ ๋ฌธ๋ฒ•์ž…๋‹ˆ๋‹ค. `main`์€ ํŒŒ์ด์ฌ ๋ชจ๋“ˆ ๋„ค์ž„ "`main`"์„ ์˜๋ฏธํ•˜๋ฏ€๋กœ `main.py`ํŒŒ์ผ์„ ๋œปํ•ฉ๋‹ˆ๋‹ค. ๊ทธ๋ฆฌ๊ณ  `app`์€ **FastAPI** ์–ดํ”Œ๋ฆฌ์ผ€์ด์…˜์ด ๋“ค์–ด ์žˆ๋Š” ๋ณ€์ˆ˜์˜ ์ด๋ฆ„์ž…๋‹ˆ๋‹ค.
        * `main:app`์ด ํŒŒ์ด์ฌ์˜ `import` ๋ฌธ๋ฒ•๊ณผ ํก์‚ฌํ•œ ๋ฉด์ด ์žˆ๋‹ค๋Š” ๊ฑธ ์•Œ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
            ```Python
            from main import app
            ```
    
        * ๊ณง, `main:app`์•ˆ์— ์žˆ๋Š” ์ฝœ๋ก ์˜ ์˜๋ฏธ๋Š” ํŒŒ์ด์ฌ์—์„œ `from main import app`์—์„œ์˜ `import`์™€ ๊ฐ™์Šต๋‹ˆ๋‹ค.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            try {
                ComponentUtil.getJobExecutor("testJobExecutor");
                fail("Should throw exception");
            } catch (Exception e) {
                // Expected
            }
        }
    
        public void test_getJobExecutor_withoutSuffix() {
            try {
                ComponentUtil.getJobExecutor("test");
                fail("Should throw exception");
            } catch (Exception e) {
                // Expected
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

        }
    
        public void test_provide_nullClassificationName() {
            // Test with null classification name
            try {
                provider.provide(null);
                fail("Should throw exception for null classification name");
            } catch (ProvidedClassificationNotFoundException e) {
                // expected
                assertTrue(e.getMessage().contains("Not found the classification: null"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/test/resources/plugin/repo3/index.html

    	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    	<style>
    body {
    	background: #fff;
    }
    	</style>
    </head>
    
    <body>
    	<header>
    		<h1>org/codelibs/fess</h1>
    	</header>
    	<hr/>
    	<main>
    		<pre id="contents">
    <a href="../">../</a>
    <a href="fess/" title="fess/">fess/</a>                                                            -         -      
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/api/boring_test.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func init() {
    	fmt.Printf("SKIP with boringcrypto enabled\n")
    	os.Exit(0)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 16 16:02:26 UTC 2023
    - 300 bytes
    - Viewed (0)
Back to top