Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for ellipsisOk (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    				Type: p,
    				Names: []*ast.Ident{
    					{
    						Name: t.Params().At(i).Name(),
    					},
    				},
    			})
    		}
    		if t.Variadic() {
    			last := params[len(params)-1]
    			last.Type = &ast.Ellipsis{Elt: last.Type.(*ast.ArrayType).Elt}
    		}
    		var returns []*ast.Field
    		for i := 0; i < t.Results().Len(); i++ {
    			r := TypeExpr(f, pkg, t.Results().At(i).Type())
    			if r == nil {
    				return nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/query-params-str-validations.md

        ```
    
    !!! info
        Falls Sie das `...` bisher noch nicht gesehen haben: Es ist ein spezieller einzelner Wert, <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">Teil von Python und wird โ€žEllipsisโ€œ genannt</a> (Deutsch: Ellipse).
    
        Es wird von Pydantic und FastAPI verwendet, um explizit zu deklarieren, dass ein Wert erforderlich ist.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:59 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/query-params-str-validations.md

    ```Python hl_lines="7"
    {!../../../docs_src/query_params_str_validations/tutorial006b.py!}
    ```
    
    !!! info
        ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšซ ๐Ÿ‘€ ๐Ÿ‘ˆ `...` โญ: โšซ๏ธ ๐ŸŽ ๐Ÿ‘ ๐Ÿ’ฒ, โšซ๏ธ <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">๐Ÿ• ๐Ÿ &amp; ๐Ÿค™ "โ•"</a>.
    
        โšซ๏ธ โš™๏ธ Pydantic &amp; FastAPI ๐ŸŽฏ ๐Ÿ“ฃ ๐Ÿ‘ˆ ๐Ÿ’ฒ โœ”.
    
    ๐Ÿ‘‰ ๐Ÿ”œ โžก๏ธ **FastAPI** ๐Ÿ’ญ ๐Ÿ‘ˆ ๐Ÿ‘‰ ๐Ÿ”ข โœ”.
    
    ### โœ” โฎ๏ธ `None`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/go/types/signature.go

    	if list == nil {
    		return
    	}
    
    	var named, anonymous bool
    	for i, field := range list.List {
    		ftype := field.Type
    		if t, _ := ftype.(*ast.Ellipsis); t != nil {
    			ftype = t.Elt
    			if variadicOk && i == len(list.List)-1 && len(field.Names) <= 1 {
    				variadic = true
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	infoCopy.Name = escapeForDot(ShortenFunctionName(infoCopy.Name))
    	infoCopy.Name = strings.Replace(infoCopy.Name, "::", `\n`, -1)
    	// Go type parameters are reported as "[...]" by Go pprof profiles.
    	// Keep this ellipsis rather than replacing with newlines below.
    	infoCopy.Name = strings.Replace(infoCopy.Name, "[...]", "[โ€ฆ]", -1)
    	infoCopy.Name = strings.Replace(infoCopy.Name, ".", `\n`, -1)
    	if infoCopy.File != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/query-params-str-validations.md

    ```Python hl_lines="7"
    {!../../../docs_src/query_params_str_validations/tutorial006b.py!}
    ```
    
    !!! info
        ๅฆ‚ๆžœไฝ ไน‹ๅ‰ๆฒก่ง่ฟ‡ `...` ่ฟ™็ง็”จๆณ•๏ผšๅฎƒๆ˜ฏไธ€ไธช็‰นๆฎŠ็š„ๅ•็‹ฌๅ€ผ๏ผŒๅฎƒๆ˜ฏ <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">Python ็š„ไธ€้ƒจๅˆ†ๅนถไธ”่ขซ็งฐไธบใ€Œ็œ็•ฅๅทใ€</a>ใ€‚
        Pydantic ๅ’Œ FastAPI ไฝฟ็”จๅฎƒๆฅๆ˜พๅผ็š„ๅฃฐๆ˜Ž้œ€่ฆไธ€ไธชๅ€ผใ€‚
    
    ่ฟ™ๅฐ†ไฝฟ **FastAPI** ็Ÿฅ้“ๆญคๆŸฅ่ฏขๅ‚ๆ•ฐๆ˜ฏๅฟ…้œ€็š„ใ€‚
    
    ### ไฝฟ็”จ`None`ๅฃฐๆ˜Žๅฟ…้œ€ๅ‚ๆ•ฐ
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.input

    // test case for issue #19544
    func _() {}
    func _longer_name_() { // this comment must not force the {} from above to alignment
    	// multiple lines
    }
    
    // ellipsis parameters
    func _(...int)
    func _(...*int)
    func _(...[]int)
    func _(...struct{})
    func _(bool, ...interface{})
    func _(bool, ...func())
    func _(bool, ...func(...int))
    func _(bool, ...map[string]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  8. src/go/types/call.go

    	if sig.variadic {
    		if ddd {
    			// variadic_func(a, b, c...)
    			if len(call.Args) == 1 && nargs > 1 {
    				// f()... is not permitted if f() is multi-valued
    				check.errorf(inNode(call, call.Ellipsis), InvalidDotDotDot, "cannot use ... with %d-valued %s", nargs, call.Args[0])
    				return
    			}
    		} else {
    			// variadic_func(a, b, c)
    			if nargs >= npars-1 {
    				// Create custom parameters for arguments: keep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    GTEST_API_ size_t GetThreadCount();
    
    // Passing non-POD classes through ellipsis (...) crashes the ARM
    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    GTEST_API_ size_t GetThreadCount();
    
    // Passing non-POD classes through ellipsis (...) crashes the ARM
    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top