Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 82 for ptrType (0.14 sec)

  1. test/noinit.go

    var copy_pt1 = pt1
    var copy_pt1a = pt1a
    
    var _ interface{} = 1
    
    type T1 int
    
    func (t *T1) M() {}
    
    type Mer interface {
    	M()
    }
    
    var _ Mer = (*T1)(nil)
    
    var Byte byte
    var PtrByte unsafe.Pointer = unsafe.Pointer(&Byte)
    
    var LitSXInit = &S{1, 2, 3}
    var LitSAnyXInit any = &S{4, 5, 6}
    
    func FS(x, y, z int) *S   { return &S{x, y, z} }
    func FSA(x, y, z int) any { return &S{x, y, z} }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	}
    
    	configSize := ResourceSize(res)
    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	info := ""
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    	if len(logdata.AdditionalInfo) > 0 {
    		info = " " + logdata.AdditionalInfo
    	}
    	if len(logFiltered) > 0 {
    		info += logFiltered
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

                if (securityProvider != null)
                    securityProvider.unwrap(buf);
    
                buf.setIndex(0);
    
                msg.decode_header(buf);
    
                off = 24;
                if (msg.ptype == 2 && msg.isFlagSet(DCERPC_LAST_FRAG) == false)
                    off = msg.length;
    
                frag = null;
                fbuf = null;
                while (msg.isFlagSet(DCERPC_LAST_FRAG) == false) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  4. pkg/apis/networking/validation/validation.go

    		return allErrs
    	}
    	for i, pType := range spec.PolicyTypes {
    		policyPath := fldPath.Child("policyTypes").Index(i)
    		if !allowed.Has(string(pType)) {
    			allErrs = append(allErrs, field.NotSupported(policyPath, pType, []string{string(networking.PolicyTypeIngress), string(networking.PolicyTypeEgress)}))
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg debug/dwarf, method (*IntType) Size() int64
    pkg debug/dwarf, method (*IntType) String() string
    pkg debug/dwarf, method (*PtrType) Common() *CommonType
    pkg debug/dwarf, method (*PtrType) Size() int64
    pkg debug/dwarf, method (*PtrType) String() string
    pkg debug/dwarf, method (*QualType) Common() *CommonType
    pkg debug/dwarf, method (*QualType) Size() int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

         * @throws DcerpcException
         * @throws NdrException
         */
        private byte[] receiveMoreFragments ( DcerpcMessage msg, byte[] in ) throws IOException, DcerpcException, NdrException {
            int off = msg.ptype == 2 ? msg.length : 24;
            byte[] fragBytes = new byte[this.max_recv];
            NdrBuffer fragBuf = new NdrBuffer(fragBytes, 0);
            while ( !msg.isFlagSet(DCERPC_LAST_FRAG) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == token.COMMA); pname != nil && (ptype != nil || p.tok != token.RBRACK) {
    				// spec.Name "[" pname ...
    				// spec.Name "[" pname ptype ...
    				// spec.Name "[" pname ptype "," ...
    				p.parseGenericType(spec, lbrack, pname, ptype) // ptype may be nil
    			} else {
    				// spec.Name "[" pname "]" ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    				// type with TypeArgs results in an identical instance.
    				ptype := useMap[inst.Ident].Type()
    				lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
    				if lister == nil || lister.TypeParams().Len() == 0 {
    					t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Ident, ptype)
    				}
    				inst2, err := Instantiate(nil, ptype, targs, true)
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    				// type with TypeArgs results in an identical instance.
    				ptype := useMap[inst.Name].Type()
    				lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
    				if lister == nil || lister.TypeParams().Len() == 0 {
    					t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Name, ptype)
    				}
    				inst2, err := Instantiate(nil, ptype, targs, true)
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			break
    		}
    		if st.str[0] == 'Q' {
    			// This is a requires clause.
    			break
    		}
    		ptype := st.demangleType(false)
    
    		if len(ret) == 0 && explicitObjectParameter {
    			ptype = &ExplicitObjectParameter{Base: ptype}
    		}
    
    		ret = append(ret, ptype)
    	}
    
    	// There should always be at least one type.  A function that
    	// takes no arguments will have a single parameter type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top