Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for IsExported (0.58 sec)

  1. src/text/template/exec.go

    	switch receiver.Kind() {
    	case reflect.Struct:
    		tField, ok := receiver.Type().FieldByName(fieldName)
    		if ok {
    			field, err := receiver.FieldByIndexErr(tField.Index)
    			if !tField.IsExported() {
    				s.errorf("%s is an unexported field of struct type %s", fieldName, typ)
    			}
    			if err != nil {
    				s.errorf("%v", err)
    			}
    			// If it's a function, we must call it.
    			if hasArgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    			}
    			if got, want := f.Anonymous, test.embedded; got != want {
    				t.Errorf("%s: Field(%d).Anonymous = %v, want %v", name, test.index, got, want)
    			}
    			if got, want := f.IsExported(), test.exported; got != want {
    				t.Errorf("%s: Field(%d).IsExported = %v, want %v", name, test.index, got, want)
    			}
    		}
    	}
    
    	checkPkgPath("testStruct", []pkgpathTest{
    		{[]int{0}, "", false, true},              // Exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		tt := (*interfaceType)(unsafe.Pointer(v.typ()))
    		if uint(i) >= uint(len(tt.Methods)) {
    			panic("reflect: internal error: invalid method index")
    		}
    		m := &tt.Methods[i]
    		if !tt.nameOff(m.Name).IsExported() {
    			panic("reflect: " + op + " of unexported method")
    		}
    		iface := (*nonEmptyInterface)(v.ptr)
    		if iface.itab == nil {
    			panic("reflect: " + op + " of method on nil interface value")
    		}
    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/encoding/gob/decode.go

    		}
    		ovfl := overflow(wireField.Name)
    		// Find the field of the local type with the same name.
    		localField, present := srt.FieldByName(wireField.Name)
    		// TODO(r): anonymous names
    		if !present || !isExported(wireField.Name) {
    			op := dec.decIgnoreOpFor(wireField.Id, make(map[typeId]*decOp), 0)
    			engine.instr[fieldnum] = decInstr{*op, fieldnum, nil, ovfl}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry.isExported()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractClasspathEntry.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*MapIter).Reset", Method, 18},
    		{"(*MapIter).Value", Method, 12},
    		{"(*ValueError).Error", Method, 0},
    		{"(ChanDir).String", Method, 0},
    		{"(Kind).String", Method, 0},
    		{"(Method).IsExported", Method, 17},
    		{"(StructField).IsExported", Method, 17},
    		{"(StructTag).Get", Method, 0},
    		{"(StructTag).Lookup", Method, 7},
    		{"(Value).Addr", Method, 0},
    		{"(Value).Bool", Method, 0},
    		{"(Value).Bytes", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		ReadBufferSize:  1,
    		WriteBufferSize: 1,
    	}
    	tr2 := tr.Clone()
    	rv := reflect.ValueOf(tr2).Elem()
    	rt := rv.Type()
    	for i := 0; i < rt.NumField(); i++ {
    		sf := rt.Field(i)
    		if !token.IsExported(sf.Name) {
    			continue
    		}
    		if rv.Field(i).IsZero() {
    			t.Errorf("cloned field t2.%s is zero", sf.Name)
    		}
    	}
    
    	if _, ok := tr2.TLSNextProto["foo"]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return cur;}
    function isExported(name){const parts=name.split('.');let cur=global;for(let part;parts.length&&(part=parts.shift());){if(part in cur){cur=cur[part];}else{return false;}}
    return true;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top