Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for badtype (0.5 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    	return obj, err
    }
    
    type SimpleTypedStorage struct {
    	errors   map[string]error
    	item     runtime.Object
    	baseType runtime.Object
    
    	actualNamespace  string
    	namespacePresent bool
    }
    
    func (storage *SimpleTypedStorage) New() runtime.Object {
    	return storage.baseType
    }
    
    func (storage *SimpleTypedStorage) Destroy() {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/webapp/js/admin/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top