Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for outCount (0.36 sec)

  1. src/internal/abi/type.go

    }
    func (t *FuncType) OutSlice() []*Type {
    	outCount := uint16(t.NumOut())
    	if outCount == 0 {
    		return nil
    	}
    	uadd := unsafe.Sizeof(*t)
    	if t.TFlag&TFlagUncommon != 0 {
    		uadd += unsafe.Sizeof(UncommonType{})
    	}
    	return (*[1 << 17]*Type)(addChecked(unsafe.Pointer(t), uadd, "outCount > 0"))[t.InCount : t.InCount+outCount : t.InCount+outCount]
    }
    
    func (t *FuncType) IsVariadic() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. src/runtime/type.go

    		cv := (*chantype)(unsafe.Pointer(v))
    		return ct.Dir == cv.Dir && typesEqual(ct.Elem, cv.Elem, seen)
    	case abi.Func:
    		ft := (*functype)(unsafe.Pointer(t))
    		fv := (*functype)(unsafe.Pointer(v))
    		if ft.OutCount != fv.OutCount || ft.InCount != fv.InCount {
    			return false
    		}
    		tin, vin := ft.InSlice(), fv.InSlice()
    		for i := 0; i < len(tin); i++ {
    			if !typesEqual(tin[i], vin[i], seen) {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/reflectlite/type.go

    		return V.ChanDir() == T.ChanDir() && haveIdenticalType(T.Elem(), V.Elem(), cmpTags)
    
    	case abi.Func:
    		t := (*funcType)(unsafe.Pointer(T))
    		v := (*funcType)(unsafe.Pointer(V))
    		if t.OutCount != v.OutCount || t.InCount != v.InCount {
    			return false
    		}
    		for i := 0; i < t.NumIn(); i++ {
    			if !haveIdenticalType(t.In(i), v.In(i), cmpTags) {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/reflect/type.go

    func canRangeFunc(t *abi.Type) bool {
    	if t.Kind() != abi.Func {
    		return false
    	}
    	f := t.FuncType()
    	if f.InCount != 1 || f.OutCount != 0 {
    		return false
    	}
    	y := f.In(0)
    	if y.Kind() != abi.Func {
    		return false
    	}
    	yield := y.FuncType()
    	return yield.InCount == 1 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
    }
    
    func (t *rtype) CanSeq2() bool {
    	switch t.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/outbound-owner-groups.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/outbound-ports-include.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/testdata/ipv6-outbound-ports.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.txt

    10.244.0.190:9080                                HEALTHY                  outbound|9080||details.default.svc.cluster.local
    10.244.0.185:9200                                HEALTHY                  outbound|9200||elasticsearch.skywalking.svc.cluster.local
    10.244.0.185:9300                                HEALTHY                  outbound|9300||elasticsearch.skywalking.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top