Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for badtype (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func createWellKnownSid(sidType WELL_KNOWN_SID_TYPE, domainSid *SID, sid *SID, sizeSid *uint32) (err error) {
    	r1, _, e1 := syscall.Syscall6(procCreateWellKnownSid.Addr(), 4, uintptr(sidType), uintptr(unsafe.Pointer(domainSid)), uintptr(unsafe.Pointer(sid)), uintptr(unsafe.Pointer(sizeSid)), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	tests := [...]test{
    		{
    			shouldPanic: false, // 2^64-1, ok
    			fields: []StructField{
    				{Name: "F1", Type: bigType},
    				{Name: "F2", Type: ArrayOf(2, t1)},
    			},
    		},
    		{
    			shouldPanic: true, // overflow in total size
    			fields: []StructField{
    				{Name: "F1", Type: bigType},
    				{Name: "F2", Type: ArrayOf(3, t1)},
    			},
    		},
    		{
    			shouldPanic: true, // overflow while aligning F2
    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. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val expectedType: KaType
            val actualType: KaType
            val isMismatchDueToNullability: Boolean
        }
    
        interface ResultTypeMismatch : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = ResultTypeMismatch::class
            val expectedType: KaType
            val actualType: KaType
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    		// requested then the function alignment must also be promoted.
    		// The function alignment is not promoted on AIX at this time.
    		// TODO: Investigate AIX function alignment.
    		if ctxt.Headtype != objabi.Haix && cursym.Func().Align < int32(a) {
    			cursym.Func().Align = int32(a)
    		}
    		if pc&(a-1) != 0 {
    			return int(a - (pc & (a - 1)))
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        override val leftType: KaType,
        override val rightType: KaType,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtElement>(firDiagnostic, token), KaFirDiagnostic.IncompatibleEnumComparisonError
    
    internal class IncompatibleEnumComparisonImpl(
        override val leftType: KaType,
        override val rightType: KaType,
        firDiagnostic: KtPsiDiagnostic,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    type, called the <i>base type</i> of the pointer.
    The value of an uninitialized pointer is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    PointerType = "*" BaseType .
    BaseType    = Type .
    </pre>
    
    <pre>
    *Point
    *[4]int
    </pre>
    
    <h3 id="Function_types">Function types</h3>
    
    <p>
    A function type denotes the set of all functions with the same parameter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top