Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for allg (0.08 sec)

  1. src/runtime/lockrank.go

    	lockRankHchan:           "hchan",
    	lockRankAllocmR:         "allocmR",
    	lockRankExecR:           "execR",
    	lockRankSched:           "sched",
    	lockRankAllg:            "allg",
    	lockRankAllp:            "allp",
    	lockRankNotifyList:      "notifyList",
    	lockRankSudog:           "sudog",
    	lockRankTimers:          "timers",
    	lockRankTimer:           "timer",
    	lockRankNetpollInit:     "netpollInit",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	waitReasonFlushProcCaches:       true,
    }
    
    var (
    	allm       *m
    	gomaxprocs int32
    	ncpu       int32
    	forcegc    forcegcstate
    	sched      schedt
    	newprocs   int32
    )
    
    var (
    	// allpLock protects P-less reads and size changes of allp, idlepMask,
    	// and timerpMask, and all writes to allp.
    	allpLock mutex
    
    	// len(allp) == gomaxprocs; may change at safe points, otherwise
    	// immutable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    	//
    	// Preventing preemption is sufficient to access allp safely. allp is only
    	// mutated by GOMAXPROCS calls, which require a STW.
    	//
    	// TODO(mknyszek): Consider explicitly emitting ProcCreate and ProcDestroy
    	// events to indicate whether a P exists, rather than just making its
    	// existence implicit.
    	mp = acquirem()
    	for _, pp := range allp[len(allp):cap(allp)] {
    		pp.trace.readyNextGen(traceNextGen(gen))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

    footer .tag {
        padding: 0;
        font-style: italic;
        margin: 0;
        line-height: 1.6em;
        font-size: 0.8em
    }
    
    @media screen {
        .row-offcanvas .sidebar-offcanvas {
            transition: all .4s ease;
            z-index: 42;
            left: -1500px;
            width: auto;
            max-width: 80%;
            top: 3.7rem;
            position: absolute
        }
    
        .row-offcanvas.active .sidebar-offcanvas {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. src/runtime/alg.go

    // Copyright 2014 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.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/cpu"
    	"internal/goarch"
    	"unsafe"
    )
    
    const (
    	c0 = uintptr((8-goarch.PtrSize)/4*2860486313 + (goarch.PtrSize-4)/4*33054211828000289)
    	c1 = uintptr((8-goarch.PtrSize)/4*3267000013 + (goarch.PtrSize-4)/4*23344194077549503)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. 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:
        * JSON Objekte (`dict`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/dependencies/index.md

    ## Integriert in OpenAPI
    
    Alle Requestdeklarationen, -validierungen und -anforderungen Ihrer Abhängigkeiten (und Unterabhängigkeiten) werden in dasselbe OpenAPI-Schema integriert.
    
    Die interaktive Dokumentation enthält also auch alle Informationen aus diesen Abhängigkeiten:
    
    <img src="/img/tutorial/dependencies/image01.png">
    
    ## Einfache Verwendung
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pkg/serviceaccount/jwt.go

    	}
    
    	return signer, nil
    }
    
    func signerFromECDSAPrivateKey(keyPair *ecdsa.PrivateKey) (jose.Signer, error) {
    	var alg jose.SignatureAlgorithm
    	switch keyPair.Curve {
    	case elliptic.P256():
    		alg = jose.ES256
    	case elliptic.P384():
    		alg = jose.ES384
    	case elliptic.P521():
    		alg = jose.ES512
    	default:
    		return nil, fmt.Errorf("unknown private key curve, must be 256, 384, or 521")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. internal/hash/checksum.go

    func NewChecksumWithType(alg ChecksumType, value string) *Checksum {
    	if !alg.IsSet() {
    		return nil
    	}
    	wantParts := 0
    	if strings.ContainsRune(value, '-') {
    		valSplit := strings.Split(value, "-")
    		if len(valSplit) != 2 {
    			return nil
    		}
    		value = valSplit[0]
    		nParts, err := strconv.Atoi(valSplit[1])
    		if err != nil {
    			return nil
    		}
    		alg |= ChecksumMultipart
    		wantParts = nParts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/bigger-applications.md

    ```Python hl_lines="6  11  16" title="app/routers/users.py"
    {!../../../docs_src/bigger_applications/app/routers/users.py!}
    ```
    
    Sie können sich `APIRouter` als eine „Mini-`FastAPI`“-Klasse vorstellen.
    
    Alle die gleichen Optionen werden unterstützt.
    
    Alle die gleichen `parameters`, `responses`, `dependencies`, `tags`, usw.
    
    !!! tip "Tipp"
        In diesem Beispiel heißt die Variable `router`, aber Sie können ihr einen beliebigen Namen geben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top