Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 113 for osinit (0.24 sec)

  1. docs/tr/docs/async.md

    Ama hamburgerler 🍔 hazır olmamasına rağmen Kasiyer 💁 ile işiniz "duraklıyor" ⏸, çünkü hamburgerlerin hazır olmasını bekliyoruz 🕙.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/bigger-applications.md

    * 跳转到其父包(`app/` 目录)...
    * 然后跳转到该包的父包(该父包并不存在,`app` 已经是最顶层的包 😱)...
    * 在该父包中,找到 `dependencies` 模块(位于 `app/` 更上一级目录中的 `dependencies.py` 文件)...
    * 然后从中导入函数 `get_token_header`。
    
    这将引用 `app/` 的往上一级,带有其自己的 `__init __.py` 等文件的某个包。但是我们并没有这个包。因此,这将在我们的示例中引发错误。🚨
    
    但是现在你知道了它的工作原理,因此无论它们多么复杂,你都可以在自己的应用程序中使用相对导入。🤓
    
    ### 添加一些自定义的 `tags`、`responses` 和 `dependencies`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    	MOV	0(X2), g
    	CALL	runtime·save_g(SB)
    	MOV	(g_stack+stack_hi)(g), X5
    	MOV	8(X2), X6
    	SUB	X6, X5, X6
    	MOV	X6, X2
    
    	MOVW	X10, ret+16(FP)
    	RET
    
    // func asminit()
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    // reflectcall: call a function with the given argument list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		defer fgcch.Close()
    		_, err = io.Copy(fexp, fgcch)
    		if err != nil {
    			fatalf("%s", err)
    		}
    		if err = fexp.Close(); err != nil {
    			fatalf("%s", err)
    		}
    	}
    
    	init := gccgoInit.String()
    	if init != "" {
    		// The init function does nothing but simple
    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc.go

    	// Initialize p.inUse.
    	p.inUse.init(sysStat)
    
    	// System-dependent initialization.
    	p.sysInit(test)
    
    	// Start with the searchAddr in a state indicating there's no free memory.
    	p.searchAddr = maxSearchAddr()
    
    	// Set the mheapLock.
    	p.mheapLock = mheapLock
    
    	// Initialize the scavenge index.
    	p.summaryMappedReady += p.scav.index.init(test, sysStat)
    
    	// Set if we're in a test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    	}
    
    	if pe64 != 0 {
    		binary.Write(ctxt.Out, binary.LittleEndian, &oh64)
    	} else {
    		binary.Write(ctxt.Out, binary.LittleEndian, &oh)
    	}
    }
    
    var pefile peFile
    
    func Peinit(ctxt *Link) {
    	var l int
    
    	if ctxt.Arch.PtrSize == 8 {
    		// 64-bit architectures
    		pe64 = 1
    		PEBASE = 1 << 32
    		if ctxt.Arch.Family == sys.AMD64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/mgc.go

    // this to true to break all the programs using assume-no-moving-gc.
    //
    //go:linkname heapObjectsCanMove
    func heapObjectsCanMove() bool {
    	return false
    }
    
    func gcinit() {
    	if unsafe.Sizeof(workbuf{}) != _WorkbufSize {
    		throw("size of Workbuf is suboptimal")
    	}
    	// No sweep on the first cycle.
    	sweep.active.state.Store(sweepDrainedMask)
    
    	// Initialize GC pacer state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	coCreateGuid(pguid *GUID) (ret error) = ole32.CoCreateGuid
    //sys	CoTaskMemFree(address unsafe.Pointer) = ole32.CoTaskMemFree
    //sys	CoInitializeEx(reserved uintptr, coInit uint32) (ret error) = ole32.CoInitializeEx
    //sys	CoUninitialize() = ole32.CoUninitialize
    //sys	CoGetObject(name *uint16, bindOpts *BIND_OPTS3, guid *GUID, functionTable **uintptr) (ret error) = ole32.CoGetObject
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. 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)
Back to top