Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for notsan (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/cover/cover_test.go

    	run(cmd, t)
    
    	cmd = testenv.Command(t, testcover(t), "-mode=set", "-var=Not_an-identifier", "-o", coverOutput, coverInput)
    	err = cmd.Run()
    	if err == nil {
    		t.Error("Expected cover to fail with an error")
    	}
    
    	// Copy testmain to tmpdir, so that it is in the same directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // those objects of P's dependencies that are reachable from the API of
    // package P; the downstream analysis of Q need only load one fact set
    // per direct import of Q.
    //
    // The notion of "exportedness" that matters here is that of the
    // compiler. According to the language spec, a method pkg.T.f is
    // unexported simply because its name starts with lowercase. But the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top