Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for allgs (0.24 sec)

  1. src/runtime/runtime_test.go

    	// Count goroutines with a large allgs list
    	b.Run("large-nil", run(func() bool {
    		GoroutineProfile(nil)
    		return true
    	}))
    
    	n = NumGoroutine()
    	p = make([]StackRecord, 2*n+2*GOMAXPROCS(0))
    	b.Run("large", run(func() bool {
    		_, ok := GoroutineProfile(p)
    		return ok
    	}))
    
    	close(ch)
    	done.Wait()
    
    	// Count goroutines with a large (but unused) allgs list
    	b.Run("sparse-nil", run(func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb.py

    	def invoke(self, _arg, _from_tty):
    		# args = gdb.string_to_argv(arg)
    		vp = gdb.lookup_type('void').pointer()
    		for ptr in SliceValue(gdb.parse_and_eval("'runtime.allgs'")):
    			if ptr['atomicstatus']['value'] == G_DEAD:
    				continue
    			s = ' '
    			if ptr['m']:
    				s = '*'
    			pc = ptr['sched']['pc'].cast(vp)
    			pc = pc_to_int(pc)
    			blk = gdb.block_for_pc(pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    // so that it does not require write barriers at all.
    //
    // Goroutine structs are published in the allg list and never freed.
    // That will keep the goroutine structs from being collected.
    // There is never a time that Gobuf.g's contain the only references
    // to a goroutine: the publishing of the goroutine in allg comes first.
    // Goroutine pointers are also kept in non-GC-visible places like TLS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. docs/de/docs/features.md

    ### Kompakt
    
    Es gibt für alles sensible **Defaultwerte**, mit optionaler Konfiguration überall. Alle Parameter können feinjustiert werden, damit sie tun, was Sie benötigen, und die API definieren, die Sie brauchen.
    
    Aber standardmäßig **„funktioniert einfach alles“**.
    
    ### Validierung
    
    * Validierung für die meisten (oder alle?) Python-**Datentypen**, hierzu gehören:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/bigger-applications.md

    # Größere Anwendungen – mehrere Dateien
    
    Wenn Sie eine Anwendung oder eine Web-API erstellen, ist es selten der Fall, dass Sie alles in einer einzigen Datei unterbringen können.
    
    **FastAPI** bietet ein praktisches Werkzeug zur Strukturierung Ihrer Anwendung bei gleichzeitiger Wahrung der Flexibilität.
    
    !!! info
         Wenn Sie von Flask kommen, wäre dies das Äquivalent zu Flasks Blueprints.
    
    ## Eine Beispiel-Dateistruktur
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. docs/de/docs/contributing.md

    ## Dokumentation
    
    Stellen Sie zunächst sicher, dass Sie Ihre Umgebung wie oben beschrieben einrichten, was alles Benötigte installiert.
    
    ### Dokumentation live
    
    Während der lokalen Entwicklung gibt es ein Skript, das die Site erstellt, auf Änderungen prüft und direkt neu lädt (Live Reload):
    
    <div class="termy">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/authentication_test.go

    			},
    			expectErr: "authentication-config file and oidc-* flags are mutually exclusive",
    		},
    		{
    			name: "authentication-config file, --oidc-signature-algs is set",
    			args: []string{
    				"--authentication-config=configfile",
    				"--oidc-signing-algs=RS512",
    			},
    			expectErr: "authentication-config file and oidc-* flags are mutually exclusive",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/https.md

    Sie würden dies wahrscheinlich nur einmal tun, beim ersten Mal, wenn Sie alles einrichten.
    
    !!! tip "Tipp"
        Dieser Domainnamen-Aspekt liegt weit vor HTTPS, aber da alles von der Domain und der IP-Adresse abhängt, lohnt es sich, das hier zu erwähnen.
    
    ### DNS
    
    Konzentrieren wir uns nun auf alle tatsächlichen HTTPS-Aspekte.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. 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)
  10. docs/de/docs/tutorial/dependencies/index.md

    Und sie hat die gleiche Form und Struktur wie alle Ihre *Pfadoperation-Funktionen*.
    
    Sie können sie sich als *Pfadoperation-Funktion* ohne den „Dekorator“ (ohne `@app.get("/some-path")`) vorstellen.
    
    Und sie kann alles zurückgeben, was Sie möchten.
    
    In diesem Fall erwartet diese Abhängigkeit:
    
    * Einen optionalen Query-Parameter `q`, der ein `str` ist.
    * Einen optionalen Query-Parameter `skip`, der ein `int` ist und standardmäßig `0` ist.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top