Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeScope (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

                if (scope == null) {
                    writeBoolean(false)
                } else {
                    writeBoolean(true)
                    writeScope(scope.first)
                    writeBoolean(scope.second.local)
                }
            }
        }
    
        private
        fun WriteContext.writeScope(scope: ClassLoaderScopeSpec) {
            val id = scopes.getId(scope)
            if (id != null) {
                writeSmallInt(id)
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    	buf.write8(SEH_REG_BP)           // FP register
    
    	// Notes are written in reverse order of appearance.
    	buf.write8(uint8(movbp.Link.Pc))
    	buf.writecode(UWOP_SET_FPREG, 0)
    
    	buf.write8(uint8(pushbp.Link.Pc))
    	buf.writecode(UWOP_PUSH_NONVOL, SEH_REG_BP)
    
    	// The following 4 bytes reference the RVA of the exception handler.
    	// The value is set to 0 for now, if an exception handler is needed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top