Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for veduta (0.12 sec)

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

    		{[]string{"d1", "http://localhost/d2", "d3", "d4"}, fmt.Errorf("mixed style endpoints are not supported")},
    		{[]string{"http://example.org/d1", "https://example.com/d1", "http://example.net/d1", "https://example.edut/d1"}, fmt.Errorf("mixed scheme is not supported")},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    	if linkmode != LinkExternal {
    		return f.dataSect.index, int64(v), nil
    	}
    	if ldr.SymType(s) == sym.SDATA {
    		return f.dataSect.index, int64(v), nil
    	}
    	// Note: although address of runtime.edata (type sym.SDATA) is at the start of .bss section
    	// it still belongs to the .data section, not the .bss section.
    	if v < Segdata.Filelen {
    		return f.dataSect.index, int64(v), nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top