Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for notsan (0.14 sec)

  1. docs/fr/docs/tutorial/query-params-str-validations.md

    * `$` : se termine directement ensuite, n'a pas d'autres caractères après `fixedquery`.
    
    Si vous vous sentez perdu avec le concept d'**expression régulière**, pas d'inquiétudes. Il s'agit d'une notion difficile pour beaucoup, et l'on peut déjà réussir à faire beaucoup sans jamais avoir à les manipuler.
    
    Mais si vous décidez d'apprendre à les utiliser, sachez qu'ensuite vous pouvez les utiliser directement dans **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/runtime/mksizeclasses.go

    	// 		such that d ≤ (2^(N+L) mod d) + 2^L.
    	// 	end if
    	//
    	// [1] "Faster Remainder by Direct Computation: Applications to
    	// Compilers and Software Libraries" Daniel Lemire, Owen Kaser,
    	// Nathan Kurz arXiv:1902.01961
    	//
    	// To minimize the risk of introducing errors, we implement the
    	// algorithm exactly as stated, rather than trying to adapt it to
    	// fit typical Go idioms.
    	N := bits.Len(uint(max))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_wasip1.go

    		return errno
    	}
    	tv.setTimestamp(time)
    	return nil
    }
    
    func Kill(pid int, signum Signal) error {
    	// WASI does not have the notion of processes nor signal handlers.
    	//
    	// Any signal that the application raises to the process itself will
    	// be interpreted as being cause for termination.
    	if pid > 0 && pid != Getpid() {
    		return ESRCH
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    //
    //go:nosplit
    func (span *mspan) heapBits() []uintptr {
    	const doubleCheck = false
    
    	if doubleCheck && !span.isUserArenaChunk {
    		if span.spanclass.noscan() {
    			throw("heapBits called for noscan")
    		}
    		if span.elemsize > minSizeForMallocHeader {
    			throw("heapBits called for span class that should have a malloc header")
    		}
    	}
    	// Find the bitmap at the end of the span.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. RELEASE.md

    Mahmoud Abuzaina, ManHyuk, Marek ŠUppa, MathSquared, Mats Linander, Matt Wytock,
    Matthew Daley, Maximilian Bachl, mdymczyk, melvyniandrag, Michael Case, Mike
    Traynor, miqlas, Namrata-Ibm, Nathan Luehr, Nathan Van Doorn, Noa Ezra, Nolan
    Liu, Oleg Zabluda, opensourcemattress, Ouwen Huang, Paul Van Eck, peisong, Peng
    Yu, PinkySan, pks, powderluv, Qiao Hai-Jun, Qiao Longfei, Rajendra Arora, Ralph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. pkg/controller/deployment/deployment_controller_test.go

    	rsAdopt.OwnerReferences = nil
    	// RS with matching ControllerRef, but wrong labels. Should be released.
    	rsRelease := newReplicaSet(d, "rsRelease", 1)
    	rsRelease.Labels = map[string]string{"foo": "notbar"}
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rsAdopt, rsRelease)
    	f.objects = append(f.objects, d, rsAdopt, rsRelease)
    
    	// Start the fixture.
    	c, informers, err := f.newController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. docs/en/data/external_links.yml

    building-a-machine-learning-microservice-with-fastapi/ title: Building a Machine Learning Microservice with FastAPI - author: Ravgeet Dhillon - Twilio link: https://www.twilio.com/en-us/blog/booking-appointments-twilio-notion-fastapi title: Booking Appointments with Twilio, Notion, and FastAPI - author: Abhinav Tripathi - Microsoft Blogs link: https://devblogs.microsoft.com/cosmosdb/azure-cosmos-db-python-and-fastapi/ title: Write a Python data layer with Azure Cosmos DB and FastAPI - author: Donny...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/first-steps.md

        Por exemplo, ao usar GraphQL, você normalmente executa todas as ações usando apenas operações `POST`.
    
    ### Passo 4: defina uma **função de rota**
    
    Esta é a nossa "**função de rota**":
    
    * **rota**: é `/`.
    * **operação**: é `get`.
    * **função**: é a função abaixo do "decorador" (abaixo do `@app.get("/")`).
    
    ```Python hl_lines="7"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/security/first-steps.md

    	* O frontend precisa buscar mais dados daquela API.
    		* Mas precisa de autenticação para aquele endpoint em específico.
    		* Então, para autenticar com nossa API, ele manda um header de `Autorização` com o valor `Bearer` mais o token.
    		* Se o token contém `foobar`, o conteúdo do header de `Autorização` será: `Bearer foobar`.
    
    ## **FastAPI**'s `OAuth2PasswordBearer`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/validation.go

    				e.Errorf("inactive range %q on %v ended", r.Name, r.Scope)
    			}
    			v.deleteRange(r.Scope, r.Name)
    		}
    	case trace.EventTaskBegin:
    		// Validate task begin.
    		t := ev.Task()
    		if t.ID == trace.NoTask || t.ID == trace.BackgroundTask {
    			// The background task should never have an event emitted for it.
    			e.Errorf("found invalid task ID for task of type %s", t.Type)
    		}
    		if t.Parent == trace.BackgroundTask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top