Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 507 for Map (4.34 sec)

  1. src/go/ast/print.go

    // not cycles that are created via slices or maps containing the
    // same slice or map. Code for general data structures probably
    // should catch those as well.
    
    func (p *printer) print(x reflect.Value) {
    	if !NotNilFilter("", x) {
    		p.printf("nil")
    		return
    	}
    
    	switch x.Kind() {
    	case reflect.Interface:
    		p.print(x.Elem())
    
    	case reflect.Map:
    		p.printf("%s (len = %d) {", x.Type(), x.Len())
    		if x.Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/go/ast/commentmap.go

    // Update replaces an old node in the comment map with the new node
    // and returns the new node. Comments that were associated with the
    // old node are associated with the new node.
    func (cmap CommentMap) Update(old, new Node) Node {
    	if list := cmap[old]; len(list) > 0 {
    		delete(cmap, old)
    		cmap[new] = append(cmap[new], list...)
    	}
    	return new
    }
    
    // Filter returns a new comment map consisting of only those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/syscall/mkasm.go

    	}
    	in3, err := os.ReadFile("z" + syscallArchFilename)
    	if err != nil {
    		log.Fatalf("can't open syscall file: %s", err)
    	}
    	in := string(in1) + string(in2) + string(in3)
    
    	trampolines := map[string]bool{}
    
    	var out bytes.Buffer
    
    	fmt.Fprintf(&out, "// go run mkasm.go %s\n", strings.Join(os.Args[1:], " "))
    	fmt.Fprintf(&out, "// Code generated by the command above; DO NOT EDIT.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/mem_darwin.go

    	if err == _ENOMEM {
    		throw("runtime: out of memory")
    	}
    	if p != v || err != 0 {
    		print("runtime: mmap(", v, ", ", n, ") returned ", p, ", ", err, "\n")
    		throw("runtime: cannot map pages in arena address space")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    	i := strings.Index(in, features)
    	if i == -1 {
    		return errors.New("no CPU features found")
    	}
    	in = in[i+len(features):]
    	if i := strings.Index(in, "\n"); i != -1 {
    		in = in[:i]
    	}
    	m := map[string]*bool{}
    
    	initOptions() // need it early here; it's harmless to call twice
    	for _, o := range options {
    		m[o.Name] = o.Feature
    	}
    	// The EVTSTRM field has alias "evstrm" in Go, but Linux calls it "evtstrm".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/identity.go

    func IdenticalStrict(t1, t2 *Type) bool {
    	return identical(t1, t2, identStrict, nil)
    }
    
    type typePair struct {
    	t1 *Type
    	t2 *Type
    }
    
    func identical(t1, t2 *Type, flags int, assumedEqual map[typePair]struct{}) bool {
    	if t1 == t2 {
    		return true
    	}
    	if t1 == nil || t2 == nil || t1.kind != t2.kind {
    		return false
    	}
    	if t1.obj != nil || t2.obj != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/mime/mediatype.go

    	err = checkMediaTypeDisposition(mediatype)
    	if err != nil {
    		return "", nil, err
    	}
    
    	params = make(map[string]string)
    
    	// Map of base parameter name -> parameter name -> value
    	// for parameters containing a '*' character.
    	// Lazily initialized.
    	var continuation map[string]map[string]string
    
    	v = v[len(base):]
    	for len(v) > 0 {
    		v = strings.TrimLeftFunc(v, unicode.IsSpace)
    		if len(v) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/error_test.go

    }
    
    func sortedPositions(m map[position]string) []position {
    	list := make([]position, len(m))
    	i := 0
    	for pos := range m {
    		list[i] = pos
    		i++
    	}
    	sort.Slice(list, func(i, j int) bool {
    		a, b := list[i], list[j]
    		return a.line < b.line || a.line == b.line && a.col < b.col
    	})
    	return list
    }
    
    // declaredErrors returns a map of source positions to error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/internal/coverage/encodecounter/encode.go

    // previously supplied to NewCoverageDataWriter. Returns an error
    // if something went wrong somewhere with the write.
    func (cfw *CoverageDataWriter) Write(metaFileHash [16]byte, args map[string]string, visitor CounterVisitor) error {
    	if err := cfw.writeHeader(metaFileHash); err != nil {
    		return err
    	}
    	return cfw.AppendSegment(args, visitor)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/encoding/gob/decoder.go

    	buf          decBuffer                               // buffer for more efficient i/o from r
    	wireType     map[typeId]*wireType                    // map from remote ID to local description
    	decoderCache map[reflect.Type]map[typeId]**decEngine // cache of compiled engines
    	ignorerCache map[typeId]**decEngine                  // ditto for ignored objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top