Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 491 - 500 of 711 for skips (0.05 seconds)

  1. docs/en/docs/tutorial/query-params-str-validations.md

    ///
    
    ### Understand that Code { #understand-that-code }
    
    The important point is just using **`AfterValidator` with a function inside `Annotated`**. Feel free to skip this part. ๐Ÿคธ
    
    ---
    
    But if you're curious about this specific code example and you're still entertained, here are some extra details.
    
    #### String with `value.startswith()` { #string-with-value-startswith }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 16.3K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/response-model.md

    In this case, you can disable the response model generation by setting `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    This will make FastAPI skip the response model generation and that way you can have any return type annotations you need without it affecting your FastAPI application. ๐Ÿค“
    
    ## Response Model encoding parameters { #response-model-encoding-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 15.5K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    /// warning
    
    This is, more or less, an "advanced" idea.
    
    If you are just starting with **FastAPI** you might want to skip it for now.
    
    ///
    
    In Python, you can create Context Managers by [creating a class with two methods: `__enter__()` and `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  4. cmd/peer-s3-client.go

    				continue
    			}
    			if !slices.Contains(sys.peerClients[idx].GetPools(), poolIdx) {
    				continue
    			}
    			for _, bi := range buckets {
    				_, ok := resultMap[bi.Name]
    				if ok {
    					// Skip it, this bucket is found in another pool
    					continue
    				}
    				bucketsMap[bi.Name]++
    				if bucketsMap[bi.Name] >= quorum {
    					resultMap[bi.Name] = bi
    				}
    			}
    		}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/security/oauth2-scopes.md

    In this section you will see how to manage authentication and authorization with the same OAuth2 with scopes in your **FastAPI** application.
    
    /// warning
    
    This is a more or less advanced section. If you are just starting, you can skip it.
    
    You don't necessarily need OAuth2 scopes, and you can handle authentication and authorization however you want.
    
    But OAuth2 with scopes can be nicely integrated into your API (with OpenAPI) and your API docs.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  6. docs/ko/docs/tutorial/dependencies/index.md

    ์—ฌ๋Ÿฌ๋ถ„์€ ์ด๋ฅผ "๋ฐ์ฝ”๋ ˆ์ดํ„ฐ"๊ฐ€ ์—†๋Š” (`@app.get("/some-path")`๊ฐ€ ์—†๋Š”) *๊ฒฝ๋กœ ์ฒ˜๋ฆฌ ํ•จ์ˆ˜*๋ผ๊ณ  ์ƒ๊ฐํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ๊ทธ๋ฆฌ๊ณ  ์—ฌ๋Ÿฌ๋ถ„์ด ์›ํ•˜๋Š” ๋ฌด์—‡์ด๋“  ๋ฐ˜ํ™˜ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ์ด ๊ฒฝ์šฐ, ์ด ์˜์กด์„ฑ์€ ๋‹ค์Œ๊ณผ ๊ฐ™์€ ๊ฒฝ์šฐ๋ฅผ ๊ธฐ๋Œ€ํ•ฉ๋‹ˆ๋‹ค:
    
    * ์„ ํƒ์ ์ธ ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `q`, `str`์„ ์ž๋ฃŒํ˜•์œผ๋กœ ๊ฐ€์ง‘๋‹ˆ๋‹ค.
    * ์„ ํƒ์ ์ธ ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `skip`, `int`๋ฅผ ์ž๋ฃŒํ˜•์œผ๋กœ ๊ฐ€์ง€๋ฉฐ ๊ธฐ๋ณธ ๊ฐ’์€ `0`์ž…๋‹ˆ๋‹ค.
    * ์„ ํƒ์ ์ธ ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `limit`, `int`๋ฅผ ์ž๋ฃŒํ˜•์œผ๋กœ ๊ฐ€์ง€๋ฉฐ ๊ธฐ๋ณธ ๊ฐ’์€ `100`์ž…๋‹ˆ๋‹ค.
    
    ๊ทธ ํ›„ ์œ„์˜ ๊ฐ’์„ ํฌํ•จํ•œ `dict` ์ž๋ฃŒํ˜•์œผ๋กœ ๋ฐ˜ํ™˜ํ•  ๋ฟ์ž…๋‹ˆ๋‹ค.
    
    /// info | ์ •๋ณด
    
    FastAPI๋Š” 0.95.0 ๋ฒ„์ „๋ถ€ํ„ฐ `Annotated`์— ๋Œ€ํ•œ ์ง€์›์„ (๊ทธ๋ฆฌ๊ณ  ์ด๋ฅผ ์‚ฌ์šฉํ•˜๊ธฐ ๊ถŒ์žฅํ•ฉ๋‹ˆ๋‹ค) ์ถ”๊ฐ€ํ–ˆ์Šต๋‹ˆ๋‹ค.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  7. chainable_api.go

    func (db *DB) Limit(limit int) (tx *DB) {
    	tx = db.getInstance()
    	tx.Statement.AddClause(clause.Limit{Limit: &limit})
    	return
    }
    
    // Offset specify the number of records to skip before starting to return the records
    //
    // Offset conditions can be cancelled by using `Offset(-1)`.
    //
    //	// select the third user
    //	db.Offset(2).First(&user)
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Fri Sep 19 01:49:06 GMT 2025
    - 14.8K bytes
    - Click Count (0)
  8. cmd/object-api-options.go

    			Bucket: bucket,
    			Object: object,
    			Err:    err,
    		}
    	}
    
    	opts.VersionID = vid
    	opts.Versioned = versioned
    	opts.VersionSuspended = versionSuspended
    
    	// For directory objects skip creating new versions.
    	if isDirObject(object) && vid == "" {
    		opts.VersionID = nullVersionID
    	}
    
    	return opts, nil
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

        }
    
        // Test destroyContainer private static method via reflection
        @Test
        public void test_destroyContainer() throws Exception {
            // Test destroyContainer method - skip this test as it conflicts with container management
            // The test framework manages the container lifecycle
            assertTrue(true);
        }
    
        // Test process method with different options
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                            continue;
                        }
    
                        if (forceSigning && !conn.isSigningEnforced()) {
                            // if signing is enforced and was not on the connection, skip
                            if (log.isTraceEnabled()) {
                                log.debug("Cannot reuse, signing enforced but connection does not have it enabled " + conn);
                            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 33.4K bytes
    - Click Count (0)
Back to Top