Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 217 for elem5 (0.3 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    	for _, arg := range fields[1:] {
    		for _, elem := range strings.Split(arg, ",") {
    			if strings.HasPrefix(elem, "!!") {
    				check.pass.Reportf(pos, "invalid double negative in build constraint: %s", arg)
    				check.crossCheck = false
    				continue
    			}
    			elem = strings.TrimPrefix(elem, "!")
    			for _, c := range elem {
    				if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/go/types/typestring_test.go

    	// structs
    	dup("struct{}"),
    	dup("struct{x int}"),
    	{`struct {
    		x, y int
    		z float32 "foo"
    	}`, `struct{x int; y int; z float32 "foo"}`},
    	{`struct {
    		string
    		elems []complex128
    	}`, `struct{string; elems []complex128}`},
    
    	// pointers
    	dup("*int"),
    	dup("***struct{}"),
    	dup("*struct{a int; b float32}"),
    
    	// functions
    	dup("func()"),
    	dup("func(x int)"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/reflect/deepequal.go

    		if v1.Type().Elem().Kind() == Uint8 {
    			return bytealg.Equal(v1.Bytes(), v2.Bytes())
    		}
    		for i := 0; i < v1.Len(); i++ {
    			if !deepValueEqual(v1.Index(i), v2.Index(i), visited) {
    				return false
    			}
    		}
    		return true
    	case Interface:
    		if v1.IsNil() || v2.IsNil() {
    			return v1.IsNil() == v2.IsNil()
    		}
    		return deepValueEqual(v1.Elem(), v2.Elem(), visited)
    	case Pointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/conversions.go

    					*cause = "conversion of slice to array requires go1.20 or later"
    				}
    				return false
    			}
    		case *Pointer:
    			if a, _ := under(a.Elem()).(*Array); a != nil {
    				if Identical(s.Elem(), a.Elem()) {
    					if check == nil || check.allowVersion(x, go1_17) {
    						return true
    					}
    					// check != nil
    					if cause != nil {
    						*cause = "conversion of slice to array pointer requires go1.17 or later"
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typestring_test.go

    	// structs
    	dup("struct{}"),
    	dup("struct{x int}"),
    	{`struct {
    		x, y int
    		z float32 "foo"
    	}`, `struct{x int; y int; z float32 "foo"}`},
    	{`struct {
    		string
    		elems []complex128
    	}`, `struct{string; elems []complex128}`},
    
    	// pointers
    	dup("*int"),
    	dup("***struct{}"),
    	dup("*struct{a int; b float32}"),
    
    	// functions
    	dup("func()"),
    	dup("func(x int)"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/time/tzdata_test.go

    		}
    
    		// Compare the name and zone fields of ref and sample.
    		// The tx field changes faster as tzdata is updated.
    		// The cache fields are expected to differ.
    		v1 := reflect.ValueOf(ref).Elem()
    		v2 := reflect.ValueOf(sample).Elem()
    		typ := v1.Type()
    		nf := typ.NumField()
    		found := 0
    		for i := 0; i < nf; i++ {
    			ft := typ.Field(i)
    			if ft.Name != "name" && ft.Name != "zone" {
    				continue
    			}
    			found++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    //
    // All elements are of size 4. Tags may be up to 4 bytes long. Excess bytes can
    // be used to store additional information about the tag.
    type Index string
    
    // Elem returns the element data at the given index.
    func (s Index) Elem(x int) string {
    	return string(s[x*4 : x*4+4])
    }
    
    // Index reports the index of the given key or -1 if it could not be found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/testing/fstest/mapfs.go

    	var list []mapFileInfo
    	var elem string
    	var need = make(map[string]bool)
    	if name == "." {
    		elem = "."
    		for fname, f := range fsys {
    			i := strings.Index(fname, "/")
    			if i < 0 {
    				if fname != "." {
    					list = append(list, mapFileInfo{fname, f})
    				}
    			} else {
    				need[fname[:i]] = true
    			}
    		}
    	} else {
    		elem = name[strings.LastIndex(name, "/")+1:]
    		prefix := name + "/"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/method/main.go

    	"plugin"
    	"reflect"
    )
    
    func main() {
    	p, err := plugin.Open("plugin.so")
    	if err != nil {
    		panic(err)
    	}
    
    	x, err := p.Lookup("X")
    	if err != nil {
    		panic(err)
    	}
    
    	reflect.ValueOf(x).Elem().MethodByName("M").Call(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 478 bytes
    - Viewed (0)
  10. src/encoding/xml/typeinfo.go

    	for i, x := range finfo.idx {
    		if i > 0 {
    			t := v.Type()
    			if t.Kind() == reflect.Pointer && t.Elem().Kind() == reflect.Struct {
    				if v.IsNil() {
    					if !shouldInitNilPointers {
    						return reflect.Value{}
    					}
    					v.Set(reflect.New(v.Type().Elem()))
    				}
    				v = v.Elem()
    			}
    		}
    		v = v.Field(x)
    	}
    	return v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top