Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mkstruct (0.27 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirDestructuringDeclarationSymbol.kt

        override val analysisSession: KaFirSession,
    ) : KaDestructuringDeclarationSymbol(), KaFirSymbol<FirVariableSymbol<*>> {
    
        init {
            require(firSymbol.name == SpecialNames.DESTRUCT)
        }
    
        override val psi: KtDestructuringDeclaration
            get() = withValidityAssertion {
                when (val psi = firSymbol.fir.psi) {
                    is KtDestructuringDeclaration -> psi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-multiple-params.md

    If you declare it as is, because it is a singular value, **FastAPI** will assume that it is a query parameter.
    
    But you can instruct **FastAPI** to treat it as another body key using `Body`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="23"
        {!> ../../../docs_src/body_multiple_params/tutorial003_an_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pilot/test/xds/fake.go

    		}))
    	}
    	adscConn, err := adsc.New(f.Listener.Addr().String(), &adsc.ADSConfig{
    		Config: adsc.Config{
    			IP:        p.IPAddresses[0],
    			NodeType:  p.Type,
    			Meta:      p.Metadata.ToStruct(),
    			Locality:  p.Locality,
    			Namespace: p.ConfigNamespace,
    			GrpcOpts:  opts,
    		},
    		InitialDiscoveryRequests: initialWatch,
    	})
    	if err != nil {
    		f.t.Fatalf("Error connecting: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    // instrumentFields instruments a read/write operation on addr.
    // If it is instrumenting for MSAN or ASAN and t is a struct type, it instruments
    // operation for each field, instead of for the whole struct.
    func (s *state) instrumentFields(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	if !(base.Flag.MSan || base.Flag.ASan) || !t.IsStruct() {
    		s.instrument(t, addr, kind)
    		return
    	}
    	for _, f := range t.Fields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    // Cacher implements storage.Interface (although most of the calls are just
    // delegated to the underlying storage).
    type Cacher struct {
    	// HighWaterMarks for performance debugging.
    	// Important: Since HighWaterMark is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platforms
    	// See: https://golang.org/pkg/sync/atomic/ for more information
    	incomingHWM storage.HighWaterMark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	w.Header().Set("Result", string(s))
    }
    
    var handlers = []struct {
    	pattern string
    	msg     string
    }{
    	{"/", "Default"},
    	{"/someDir/", "someDir"},
    	{"/#/", "hash"},
    	{"someHost.com/someDir/", "someHost.com/someDir"},
    }
    
    var vtests = []struct {
    	url      string
    	expected string
    }{
    	{"http://localhost/someDir/apage", "someDir"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top