Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 547 for elem4 (0.04 sec)

  1. src/cmd/compile/internal/typecheck/iimport.go

    // TODO(mdempsky): Store this information directly in the Type's Name.
    var typeSymIdx = make(map[*types.Type][2]int64)
    
    func BaseTypeIndex(t *types.Type) int64 {
    	tbase := t
    	if t.IsPtr() && t.Sym() == nil && t.Elem().Sym() != nil {
    		tbase = t.Elem()
    	}
    	i, ok := typeSymIdx[tbase]
    	if !ok {
    		return -1
    	}
    	if t != tbase {
    		return i[1]
    	}
    	return i[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/net/url/url.go

    func (u *URL) JoinPath(elem ...string) *URL {
    	elem = append([]string{u.EscapedPath()}, elem...)
    	var p string
    	if !strings.HasPrefix(elem[0], "/") {
    		// Return a relative path if u is relative,
    		// but ensure that it contains no ../ elements.
    		elem[0] = "/" + elem[0]
    		p = path.Join(elem...)[1:]
    	} else {
    		p = path.Join(elem...)
    	}
    	// path.Join will remove any trailing slashes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    			}
    		}
    		return true
    	case reflect.Interface:
    		if v1.IsNil() || v2.IsNil() {
    			return v1.IsNil() == v2.IsNil()
    		}
    		return e.deepValueEqual(v1.Elem(), v2.Elem(), visited, equateNilAndEmpty, depth+1)
    	case reflect.Ptr:
    		return e.deepValueEqual(v1.Elem(), v2.Elem(), visited, equateNilAndEmpty, depth+1)
    	case reflect.Struct:
    		for i, n := 0, v1.NumField(); i < n; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    // It also reports whether a Pointer was present.
    func ReceiverNamed(recv *types.Var) (isPtr bool, named *types.Named) {
    	t := recv.Type()
    	if ptr, ok := aliases.Unalias(t).(*types.Pointer); ok {
    		isPtr = true
    		t = ptr.Elem()
    	}
    	named, _ = aliases.Unalias(t).(*types.Named)
    	return
    }
    
    // Unpointer returns T given *T or an alias thereof.
    // For all other types it is the identity function.
    // It does not look at underlying types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/errors.go

    	for len(stack) > 0 && stack[0].m.Version == "" {
    		stack = stack[1:]
    	}
    
    	if len(stack) == 0 {
    		b.WriteString(e.Err.Error())
    	} else {
    		for _, elem := range stack[:len(stack)-1] {
    			fmt.Fprintf(b, "%s %s\n\t", elem.m, elem.nextReason)
    		}
    		// Ensure that the final module path and version are included as part of the
    		// error message.
    		m := stack[len(stack)-1].m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/errorsas/errorsas.go

    	}
    	if pt.Elem() == errorType {
    		return errors.New("second argument to errors.As should not be *error")
    	}
    	_, ok = pt.Elem().Underlying().(*types.Interface)
    	if ok || types.Implements(pt.Elem(), errorType.Underlying().(*types.Interface)) {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    	result := url.Values{}
    	if obj == nil {
    		return result, nil
    	}
    	var sv reflect.Value
    	switch reflect.TypeOf(obj).Kind() {
    	case reflect.Pointer, reflect.Interface:
    		sv = reflect.ValueOf(obj).Elem()
    	default:
    		return nil, fmt.Errorf("expecting a pointer or interface")
    	}
    	st := sv.Type()
    	if !isStructKind(st.Kind()) {
    		return nil, fmt.Errorf("expecting a pointer to a struct")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. src/internal/reflectlite/tostring_test.go

    			return "true"
    		} else {
    			return "false"
    		}
    	case reflect.Pointer:
    		v := val
    		str = typ.String() + "("
    		if v.IsNil() {
    			str += "0"
    		} else {
    			str += "&" + valueToStringImpl(v.Elem())
    		}
    		str += ")"
    		return str
    	case reflect.Array, reflect.Slice:
    		v := val
    		str += typ.String()
    		str += "{"
    		for i := 0; i < v.Len(); i++ {
    			if i > 0 {
    				str += ", "
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue63462.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func f() {
    	for b := "" < join([]string{}, "") && true; ; {
    		_ = b
    	}
    }
    
    //go:noinline
    func join(elems []string, sep string) string {
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:23:06 UTC 2023
    - 331 bytes
    - Viewed (0)
  10. pkg/config/schema/codegen/templates/collections.go.tmpl

    			{{- if ne .Resource.StatusProto "" }}StatusProto: "{{ .Resource.StatusProto }}",{{end}}
    			ReflectType: reflect.TypeOf(&{{.ClientImport}}.{{.SpecType}}{}).Elem(),
    			{{- if ne .StatusType "" }}StatusType: reflect.TypeOf(&{{.StatusImport}}.{{.StatusType}}{}).Elem(), {{end}}
    			ProtoPackage: "{{ .Resource.ProtoPackage }}",
    			{{- if ne "" .Resource.StatusProtoPackage}}StatusPackage: "{{ .Resource.StatusProtoPackage }}", {{end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top