Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for veduta (0.17 sec)

  1. src/runtime/cgocall.go

    			if cgoIsGoPointer(pp) && !isPinned(pp) {
    				panic(errorString(msg))
    			}
    		}
    		return
    	}
    
    	for _, datap := range activeModules() {
    		if cgoInRange(p, datap.data, datap.edata) || cgoInRange(p, datap.bss, datap.ebss) {
    			// We have no way to know the size of the object.
    			// We have to assume that it might contain a pointer.
    			panic(errorString(msg))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/runtime/heapdump.go

    	// TODO(mwhudson): dump datamask etc from all objects
    	// data segment
    	dumpint(tagData)
    	dumpint(uint64(firstmoduledata.data))
    	dumpmemrange(unsafe.Pointer(firstmoduledata.data), firstmoduledata.edata-firstmoduledata.data)
    	dumpfields(firstmoduledata.gcdatamask)
    
    	// bss segment
    	dumpint(tagBSS)
    	dumpint(uint64(firstmoduledata.bss))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. docs/it/docs/index.md

    Tornando al precedente esempio, **FastAPI**:
    
    * Validerà che esiste un `item_id` nel percorso delle richieste `GET` e `PUT`.
    * Validerà che `item_id` sia di tipo `int` per le richieste `GET` e `PUT`.
        * Se non lo è, il client vedrà un errore chiaro e utile.
    * Controllerà se ci sia un parametro opzionale chiamato `q` (per esempio `http://127.0.0.1:8000/items/foo?q=somequery`) per le richieste `GET`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    	filetab      []byte
    	pctab        []byte
    	pclntable    []byte
    	ftab         []functab
    	findfunctab  uintptr
    	minpc, maxpc uintptr
    
    	text, etext           uintptr
    	noptrdata, enoptrdata uintptr
    	data, edata           uintptr
    	bss, ebss             uintptr
    	noptrbss, enoptrbss   uintptr
    	covctrs, ecovctrs     uintptr
    	end, gcdata, gcbss    uintptr
    	types, etypes         uintptr
    	rodata                uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    	// due to external linking.
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.noptrdata <= uintptr(p) && uintptr(p) < datap.enoptrdata ||
    			datap.data <= uintptr(p) && uintptr(p) < datap.edata ||
    			datap.bss <= uintptr(p) && uintptr(p) < datap.ebss ||
    			datap.noptrbss <= uintptr(p) && uintptr(p) < datap.enoptrbss {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		return int(divRoundUp(bytes, rootBlockBytes))
    	}
    
    	work.nDataRoots = 0
    	work.nBSSRoots = 0
    
    	// Scan globals.
    	for _, datap := range activeModules() {
    		nDataRoots := nBlocks(datap.edata - datap.data)
    		if nDataRoots > work.nDataRoots {
    			work.nDataRoots = nDataRoots
    		}
    
    		nBSSRoots := nBlocks(datap.ebss - datap.bss)
    		if nBSSRoots > work.nBSSRoots {
    			work.nBSSRoots = nBSSRoots
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    			// Test that only one symbol is exported (#40795).
    			// PIE binaries don´t require .edata section but unfortunately
    			// binutils doesn´t generate a .reloc section unless there is
    			// at least one symbol exported.
    			// See https://sourceware.org/bugzilla/show_bug.cgi?id=19011
    			section := f.Section(".edata")
    			if section == nil {
    				t.Skip(".edata section is not present")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    			if datap.data <= dst && dst < datap.edata {
    				bulkBarrierBitmap(dst, src, size, dst-datap.data, datap.gcdatamask.bytedata)
    				return
    			}
    		}
    		for _, datap := range activeModules() {
    			if datap.bss <= dst && dst < datap.ebss {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    		return "stack"
    	}
    	if base, _, _ := findObject(p2, 0, 0); base != 0 {
    		return "heap"
    	}
    	for _, datap := range activeModules() {
    		if datap.data <= p2 && p2 < datap.edata || datap.noptrdata <= p2 && p2 < datap.enoptrdata {
    			return "data"
    		}
    		if datap.bss <= p2 && p2 < datap.ebss || datap.noptrbss <= p2 && p2 <= datap.enoptrbss {
    			return "bss"
    		}
    	}
    	KeepAlive(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    		`Africa/Bangui`,
    		`Africa/Banjul`,
    		`Africa/Bissau`,
    		`Africa/Blantyre`,
    		`Africa/Brazzaville`,
    		`Africa/Bujumbura`,
    		`Africa/Cairo`,
    		`Africa/Casablanca`,
    		`Africa/Ceuta`,
    		`Africa/Conakry`,
    		`Africa/Dakar`,
    		`Africa/Dar_es_Salaam`,
    		`Africa/Djibouti`,
    		`Africa/Douala`,
    		`Africa/El_Aaiun`,
    		`Africa/Freetown`,
    		`Africa/Gaborone`,
    		`Africa/Harare`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top