Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for typInfo (0.25 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	tcpinfo.Options = 0 // dummy
    	tcpinfo.Rto = tcpStats.retransTimeouts
    	tcpinfo.Ato = tcpStats.outDelayAcks
    	tcpinfo.Snd_mss = conn.sendMSS
    	tcpinfo.Rcv_mss = conn.sendMSS // dummy
    	tcpinfo.Unacked = 0            // dummy
    	tcpinfo.Sacked = 0             // dummy
    	tcpinfo.Lost = 0               // dummy
    	tcpinfo.Retrans = conn.reXmtCount
    	tcpinfo.Fackets = 0 // dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if len(allErrs.SchemaErrors) == 0 && celContext != nil {
    			typeInfo, err := celContext.TypeInfo()
    			if err != nil {
    				allErrs.CELErrors = append(allErrs.CELErrors, field.InternalError(fldPath.Child("x-kubernetes-validations"), fmt.Errorf("internal error: failed to construct type information for x-kubernetes-validations rules: %s", err)))
    			} else if typeInfo == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_HAS_RTTI 1
    
    # endif  // _MSC_VER
    
    #endif  // GTEST_HAS_RTTI
    
    // It's this header's responsibility to #include <typeinfo> when RTTI
    // is enabled.
    #if GTEST_HAS_RTTI
    # include <typeinfo>
    #endif
    
    // Determines whether Google Test can use the pthreads library.
    #ifndef GTEST_HAS_PTHREAD
    // The user didn't tell us explicitly, so we assume pthreads support is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_HAS_RTTI 1
    
    # endif  // _MSC_VER
    
    #endif  // GTEST_HAS_RTTI
    
    // It's this header's responsibility to #include <typeinfo> when RTTI
    // is enabled.
    #if GTEST_HAS_RTTI
    # include <typeinfo>
    #endif
    
    // Determines whether Google Test can use the pthreads library.
    #ifndef GTEST_HAS_PTHREAD
    // The user didn't tell us explicitly, so we assume pthreads support is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			t := st.demangleType(false)
    			return &Special{Prefix: "VTT for ", Val: t}
    		case 'I':
    			t := st.demangleType(false)
    			return &Special{Prefix: "typeinfo for ", Val: t}
    		case 'S':
    			t := st.demangleType(false)
    			return &Special{Prefix: "typeinfo name for ", Val: t}
    		case 'A':
    			t := st.templateArg(nil)
    			return &Special{Prefix: "template parameter object for ", Val: t}
    		case 'h':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	var value Ucred
    	vallen := _Socklen(SizeofUcred)
    	err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
    	return &value, err
    }
    
    func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) {
    	var value TCPInfo
    	vallen := _Socklen(SizeofTCPInfo)
    	err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
    	return &value, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	if lsym.Extra == nil {
    		return false
    	}
    	if _, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize && size == 4 {
    			return true // type hash field
    		}
    	}
    	return false
    }
    func fixed32(c *Config, sym Sym, off int64) int32 {
    	lsym := sym.(*obj.LSym)
    	if ti, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize {
    			return int32(types.TypeHash(ti.Type.(*types.Type)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top