Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 201 for Map (0.12 sec)

  1. src/net/rpc/jsonrpc/server.go

    	// We assign uint64 sequence numbers to incoming requests
    	// but save the original request ID in the pending map.
    	// When rpc responds, we use the sequence number in
    	// the response to find the original request ID.
    	mutex   sync.Mutex // protects seq, pending
    	seq     uint64
    	pending map[uint64]*json.RawMessage
    }
    
    // NewServerCodec returns a new [rpc.ServerCodec] using JSON-RPC on conn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/internal/trace/internal/testgen/go122/trace.go

    // creating complex traces that are mostly or completely correct.
    func (t *Trace) Generation(gen uint64) *Generation {
    	g := &Generation{
    		trace:   t,
    		gen:     gen,
    		strings: make(map[string]uint64),
    		stacks:  make(map[stack]uint64),
    	}
    	t.gens = append(t.gens, g)
    	return g
    }
    
    // Generate creates a test file for the trace.
    func (t *Trace) Generate() []byte {
    	// Trace file contents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/trace/threadgen.go

    	logEventGenerator[trace.ThreadID]
    
    	gStates map[trace.GoID]*gState[trace.ThreadID]
    	threads map[trace.ThreadID]struct{}
    }
    
    func newThreadGenerator() *threadGenerator {
    	tg := new(threadGenerator)
    	rg := func(ev *trace.Event) trace.ThreadID {
    		return ev.Thread()
    	}
    	tg.stackSampleGenerator.getResource = rg
    	tg.logEventGenerator.getResource = rg
    	tg.gStates = make(map[trace.GoID]*gState[trace.ThreadID])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/reflect/export_test.go

    func MapBucketOf(x, y Type) Type {
    	return toType(bucketOf(x.common(), y.common()))
    }
    
    func CachedBucketOf(m Type) Type {
    	t := m.(*rtype)
    	if Kind(t.t.Kind_&abi.KindMask) != Map {
    		panic("not map")
    	}
    	tt := (*mapType)(unsafe.Pointer(t))
    	return toType(tt.Bucket)
    }
    
    type EmbedWithUnexpMeth struct{}
    
    func (EmbedWithUnexpMeth) f() {}
    
    type pinUnexpMeth interface {
    	f()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/runtime/covermeta.go

    	id := rtcov.AddMeta(p, dlen, hash, pkgpath, pkgid, cmode, cgran)
    	if id == 0 {
    		throw("runtime.addCovMeta: coverage package map collision")
    	}
    	return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 603 bytes
    - Viewed (0)
  6. src/net/http/servemux121.go

    		use121 = true
    		httpmuxgo121.IncNonDefault()
    	}
    }
    
    // serveMux121 holds the state of a ServeMux needed for Go 1.21 behavior.
    type serveMux121 struct {
    	mu    sync.RWMutex
    	m     map[string]muxEntry
    	es    []muxEntry // slice of entries sorted from longest to shortest.
    	hosts bool       // whether any patterns contain hostnames
    }
    
    type muxEntry struct {
    	h       Handler
    	pattern string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/testing/fstest/mapfs.go

    //
    // File system operations read directly from the map,
    // so that the file system can be changed by editing the map as needed.
    // An implication is that file system operations must not run concurrently
    // with changes to the map, which would be a race.
    // Another implication is that opening or reading a directory requires
    // iterating over the entire map, so a MapFS should typically be used with not more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue66096.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type Message struct {
    	Header map[string][]string
    }
    
    func f() {
    	m := Message{Header: map[string][]string{}}
    	m.Header[""] = append([]string(m.Header[""]), "")
    	_ = m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 352 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/match.go

    func NewInheritanceMatcher(t []language.Tag) *InheritanceMatcher {
    	tags := &InheritanceMatcher{make(map[language.Tag]int)}
    	for i, tag := range t {
    		ct, err := language.All.Canonicalize(tag)
    		if err != nil {
    			ct = tag
    		}
    		tags.index[ct] = i
    	}
    	return tags
    }
    
    type InheritanceMatcher struct {
    	index map[language.Tag]int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    var kvFuncs = map[string]map[string]int{
    	"": map[string]int{
    		"Debug":        1,
    		"Info":         1,
    		"Warn":         1,
    		"Error":        1,
    		"DebugContext": 2,
    		"InfoContext":  2,
    		"WarnContext":  2,
    		"ErrorContext": 2,
    		"Log":          3,
    		"Group":        1,
    	},
    	"Logger": map[string]int{
    		"Debug":        1,
    		"Info":         1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top