Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Vt (0.03 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	ps.print(vt.Dimension)
    	ps.writeByte(end)
    }
    
    func (vt *VectorType) Traverse(fn func(AST) bool) {
    	if fn(vt) {
    		vt.Dimension.Traverse(fn)
    		vt.Base.Traverse(fn)
    	}
    }
    
    func (vt *VectorType) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(vt) {
    		return nil
    	}
    	dimension := vt.Dimension.Copy(fn, skip)
    	base := vt.Base.Copy(fn, skip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		case StatusOK:
    			s := r.Header.Get("Result")
    			if s != vt.expected {
    				t.Errorf("Get(%q) = %q, want %q", vt.url, s, vt.expected)
    			}
    		case StatusMovedPermanently:
    			s := r.Header.Get("Location")
    			if s != vt.expected {
    				t.Errorf("Get(%q) = %q, want %q", vt.url, s, vt.expected)
    			}
    		default:
    			t.Errorf("Get(%q) unhandled status code %d", vt.url, r.StatusCode)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/reflect/value.go

    func (v Value) CanConvert(t Type) bool {
    	vt := v.Type()
    	if !vt.ConvertibleTo(t) {
    		return false
    	}
    	// Converting from slice to array or to pointer-to-array can panic
    	// depending on the value.
    	switch {
    	case vt.Kind() == Slice && t.Kind() == Array:
    		if t.Len() > v.Len() {
    			return false
    		}
    	case vt.Kind() == Slice && t.Kind() == Pointer && t.Elem().Kind() == Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	t.Run("Append", func(t *testing.T) {
    		var got, want []T
    		v := ValueOf(&got).Elem()
    		appendValue := func(vt T) {
    			v.Grow(1)
    			v.SetLen(v.Len() + 1)
    			v.Index(v.Len() - 1).Set(ValueOf(vt))
    		}
    		for i := 0; i < 10; i++ {
    			vt := T{i, float64(i), strconv.Itoa(i), &i}
    			appendValue(vt)
    			want = append(want, vt)
    		}
    		if !DeepEqual(got, want) {
    			t.Errorf("value mismatch:\ngot  %v\nwant %v", got, want)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    		leaf:          nameConstraintsLeaf,
    		intermediates: []string{nameConstraintsIntermediate1, nameConstraintsIntermediate2},
    		roots:         []string{globalSignRoot},
    		currentTime:   1382387896,
    		dnsName:       "secure.iddl.vt.edu",
    
    		expectedChains: [][]string{
    			{
    				"Technology-enhanced Learning and Online Strategies",
    				"Virginia Tech Global Qualified Server CA",
    				"Trusted Root CA G2",
    				"GlobalSign Root CA",
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    			o1 |= 26 << 23
    		}
    
    		o1 |= (uint32(Q&1) << 30) | (uint32(r&31) << 16) | ((opcode & 7) << 13) | (uint32(S&1) << 12) | (uint32(size&3) << 10) | (uint32(rf&31) << 5) | uint32(rt&31)
    
    	case 97: /* vld1 offset(Rn), vt.<T>[index] */
    		at := int((p.To.Reg >> 5) & 15)
    		rt := int((p.To.Reg) & 31)
    		rf := int((p.From.Reg) & 31)
    		r := int(p.From.Index & 31)
    		index := int(p.To.Index)
    		offset := c.regoff(&p.From)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top