Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for osinit (0.18 sec)

  1. src/runtime/proc.go

    	// and let mstart0 exit the thread.
    	gp.sched.g = guintptr(unsafe.Pointer(gp))
    	gp.sched.pc = getcallerpc()
    	gp.sched.sp = getcallersp()
    
    	asminit()
    	minit()
    
    	// Install signal handlers; after minit so that minit can
    	// prepare the thread to be able to handle the signals.
    	if gp.m == &m0 {
    		mstartm0()
    	}
    
    	if fn := gp.m.mstartfn; fn != nil {
    		fn()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public byte[] decode(byte[]); public static byte[] encodeBase64(byte[], boolean); public static byte[] decodeBase64(byte[]); static byte[] discardWhitespace(byte[]); static byte[] discardNonBase64(byte[]); public byte[] encode(byte[]); static void <clinit>(); } org/codehaus/plexus/util/CachedMap.class package org.codehaus.plexus.util; public final synchronized class CachedMap implements java.util.Map { private final FastMap _backingFastMap; private final java.util.Map _backingMap; private final FastMap...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    			anonymizeAddr(&localOSInfo)
    			healthInfo.Sys.OSInfo = append(healthInfo.Sys.OSInfo, localOSInfo)
    
    			peerOSInfos := globalNotificationSys.GetOSInfo(healthCtx)
    			for _, o := range peerOSInfos {
    				anonymizeAddr(&o)
    				healthInfo.Sys.OSInfo = append(healthInfo.Sys.OSInfo, o)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    	getAndWriteMemInfo := func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }
            }
    
            @Override
            public void addDefaultConstructor() {
                publicMethod("<init>", RETURN_VOID, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // this.super()
                    _ALOAD(0);
                    _INVOKESPECIAL(OBJECT_TYPE, "<init>", RETURN_VOID);
    
                    // this.init_method()
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    func CoInitializeEx(reserved uintptr, coInit uint32) (ret error) {
    	r0, _, _ := syscall.Syscall(procCoInitializeEx.Addr(), 2, uintptr(reserved), uintptr(coInit), 0)
    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    func CoTaskMemFree(address unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		place = fmt.Sprintf("%*sPlace: nil", indent, "")
    	} else {
    		place = n.Place.goString(indent+2, "Place: ")
    	}
    	var ini string
    	if n.Init == nil {
    		ini = fmt.Sprintf("%*sInit: nil", indent, "")
    	} else {
    		ini = n.Init.goString(indent+2, "Init: ")
    	}
    	return fmt.Sprintf("%*s%sNew:\n%s\n%s\n%s\n%s", indent, "", field,
    		n.Op.goString(indent+2, "Op: "), place,
    		n.Type.goString(indent+2, "Type: "), ini)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	{AFCLEX, ynone, Px, opBytes{0xdb, 0xe2}},
    	{AFCOS, ynone, Px, opBytes{0xd9, 0xff}},
    	{AFDECSTP, ynone, Px, opBytes{0xd9, 0xf6}},
    	{AFINCSTP, ynone, Px, opBytes{0xd9, 0xf7}},
    	{AFINIT, ynone, Px, opBytes{0xdb, 0xe3}},
    	{AFLD1, ynone, Px, opBytes{0xd9, 0xe8}},
    	{AFLDL2E, ynone, Px, opBytes{0xd9, 0xea}},
    	{AFLDL2T, ynone, Px, opBytes{0xd9, 0xe9}},
    	{AFLDLG2, ynone, Px, opBytes{0xd9, 0xec}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top