Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 667 for allee (0.09 sec)

  1. test/fixedbugs/bug286.go

    		I
    		g()
    	}
    	x.(J).f()
    	if callee != "f" {
    		println("test1 called", callee)
    		error_ = true
    	}
    }
    
    func test2(x I) {
    	type J interface {
    		g()
    		I
    	}
    	x.(J).f()
    	if callee != "f" {
    		println("test2 called", callee)
    		error_ = true
    	}
    }
    
    type J interface {
    	g()
    	I
    }
    
    func test3(x I) {
    	x.(J).f()
    	if callee != "f" {
    		println("test3 called", callee)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/body-nested-models.md

    In Python 3.9 wäre das:
    
    ```Python
    my_list: list[str]
    ```
    
    Und in Python-Versionen vor 3.9:
    
    ```Python
    from typing import List
    
    my_list: List[str]
    ```
    
    Das ist alles Standard-Python-Syntax für Typdeklarationen.
    
    Verwenden Sie dieselbe Standardsyntax für Modellattribute mit inneren Typen.
    
    In unserem Beispiel können wir also bewirken, dass `tags` spezifisch eine „Liste von Strings“ ist:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/nowb.go

    			continue
    		}
    
    		// Enqueue fn's calls.
    		for _, callee := range c.extraCalls[fn] {
    			enqueue(fn, callee.target, callee.lineno)
    		}
    		if fn.NWBRCalls == nil {
    			continue
    		}
    		for _, callee := range *fn.NWBRCalls {
    			target := symToFunc[callee.Sym]
    			if target != nil {
    				enqueue(fn, target, callee.Pos)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/events.md

        Sie können diesen Teil wahrscheinlich überspringen.
    
    Es gibt eine alternative Möglichkeit, diese Logik zu definieren, sodass sie beim *Hochfahren* und beim *Herunterfahren* ausgeführt wird.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/schema-extra-example.md

    Aber jetzt, da FastAPI 0.99.0 und höher, OpenAPI 3.1.0 verwendet, das JSON Schema 2020-12 verwendet, und Swagger UI 5.0.0 und höher, ist alles konsistenter und die Beispiele sind in JSON Schema enthalten.
    
    ### Swagger-Benutzeroberfläche und OpenAPI-spezifische `examples`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:53 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/toplevelFunctionReferenceCall.kt

    fun callee(): Int {
        return 598
    }
    
    fun test() {
        <expr>(::callee)()</expr> + 45
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/toplevelFunctionReferenceCallReceiver.kt

    fun callee(): Int {
        return 598
    }
    
    fun test() {
        <expr>(::callee)</expr>() + 45
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 87 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    	callee := cs.Callee
    	csflags := cs.Flags
    	call := cs.Call
    
    	// Start with the size-based score for the callee.
    	score := int(callee.Inl.Cost)
    	var tmask scoreAdjustTyp
    
    	if debugTrace&debugTraceScoring != 0 {
    		fmt.Fprintf(os.Stderr, "=-= scoring call to %s at %s , initial=%d\n",
    			callee.Sym().Name, fmtFullPos(call.Pos()), score)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/toplevelFunctionCall.kt

    fun callee(): Int {
        return 598
    }
    
    fun test() {
        <expr>callee()</expr> + 45
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 83 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/toplevelFunctionCallReference.kt

    fun callee(): Int {
        return 598
    }
    
    fun test() {
        <expr>callee</expr>() + 45
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 83 bytes
    - Viewed (0)
Back to top