Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for gint (0.04 sec)

  1. src/runtime/export_test.go

    	return (*pallocBits)(b).find(npages, searchIdx)
    }
    func (b *PallocBits) AllocRange(i, n uint)       { (*pallocBits)(b).allocRange(i, n) }
    func (b *PallocBits) Free(i, n uint)             { (*pallocBits)(b).free(i, n) }
    func (b *PallocBits) Summarize() PallocSum       { return PallocSum((*pallocBits)(b).summarize()) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/security/simple-oauth2.md

    Rufen Sie nun die Benutzerdaten aus der (gefakten) Datenbank ab, für diesen `username` aus dem Formularfeld.
    
    Wenn es keinen solchen Benutzer gibt, geben wir die Fehlermeldung „Incorrect username or password“ zurück.
    
    Für den Fehler verwenden wir die Exception `HTTPException`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="3  79-81"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

        Operation *call, iterator_range<Region::iterator> inlinedBlocks) {
      using DeviceNameUtils = tensorflow::DeviceNameUtils;
    
      // Duplicate of the logic in MultiDeviceFunctionBodyPlacer::BodyNodeDevice
      // LINT.IfChange
      auto device_id = StringAttr::get(call->getContext(), "device");
      auto caller_device = call->getAttrOfType<StringAttr>(device_id);
      if (!caller_device) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func goPanicIndex(x int, y int)
    func goPanicIndexU(x uint, y int)
    func goPanicSliceAlen(x int, y int)
    func goPanicSliceAlenU(x uint, y int)
    func goPanicSliceAcap(x int, y int)
    func goPanicSliceAcapU(x uint, y int)
    func goPanicSliceB(x int, y int)
    func goPanicSliceBU(x uint, y int)
    func goPanicSlice3Alen(x int, y int)
    func goPanicSlice3AlenU(x uint, y int)
    func goPanicSlice3Acap(x int, y int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager.go

    	sort.Slice(nodes, func(i, j int) bool {
    		// If one or the other of nodes[i] or nodes[j] is in the 'hint's affinity set
    		if hint.NUMANodeAffinity.IsSet(nodes[i]) && hint.NUMANodeAffinity.IsSet(nodes[j]) {
    			return perNodeDevices[nodes[i]].Len() < perNodeDevices[nodes[j]].Len()
    		}
    		if hint.NUMANodeAffinity.IsSet(nodes[i]) {
    			return true
    		}
    		if hint.NUMANodeAffinity.IsSet(nodes[j]) {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                LegacySupport legacySupport,
                SessionScope sessionScope,
                RepositorySystemSessionFactory repositorySessionFactory,
                @Named(GraphBuilder.HINT) GraphBuilder graphBuilder,
                BuildResumptionAnalyzer buildResumptionAnalyzer,
                BuildResumptionDataRepository buildResumptionDataRepository,
                SuperPomProvider superPomProvider,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/runtime/os_netbsd.go

    func raiseproc(sig uint32)
    
    func lwp_kill(tid int32, sig int)
    
    //go:noescape
    func getcontext(ctxt unsafe.Pointer)
    
    //go:noescape
    func lwp_create(ctxt unsafe.Pointer, flags uintptr, lwpid unsafe.Pointer) int32
    
    //go:noescape
    func lwp_park(clockid, flags int32, ts *timespec, unpark int32, hint, unparkhint unsafe.Pointer) int32
    
    //go:noescape
    func lwp_unpark(lwp int32, hint unsafe.Pointer) int32
    
    func lwp_self() int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/response-model.md

    FastAPI wird diesen Rückgabetyp verwenden, um:
    
    * Die zurückzugebenden Daten zu **validieren**.
        * Wenn die Daten ungültig sind (Sie haben z. B. ein Feld vergessen), bedeutet das, *Ihr* Anwendungscode ist fehlerhaft, er gibt nicht zurück, was er sollte, und daher wird ein <abbr title="Server-Fehler">Server-Error</abbr> ausgegeben, statt falscher Daten. So können Sie und ihre Clients sicher sein, dass diese die erwarteten Daten, in der richtigen Form erhalten.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/security/oauth2-jwt.md

        {!> ../../../docs_src/security/tutorial004.py!}
        ```
    
    ### Technische Details zum JWT-„Subjekt“ `sub`
    
    Die JWT-Spezifikation besagt, dass es einen Schlüssel `sub` mit dem Subjekt des Tokens gibt.
    
    Die Verwendung ist optional, aber dort würden Sie die Identifikation des Benutzers speichern, daher verwenden wir das hier.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "exit hint does not mention enter when not on windows"() {
            when:
            file("a").touch()
            buildScript "task a { inputs.file 'a'; outputs.file 'b'; doLast {} }"
    
            then:
            succeeds "a"
            output.endsWith("(ctrl-d to exit)\n")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "exit hint mentions enter when on windows"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top