Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 365 for bigptr (0.11 sec)

  1. src/crypto/cipher/cipher.go

    	// cipher's key stream. Dst and src must overlap entirely or not at all.
    	//
    	// If len(dst) < len(src), XORKeyStream should panic. It is acceptable
    	// to pass a dst bigger than src, and in that case, XORKeyStream will
    	// only update dst[:len(src)] and will not touch the rest of dst.
    	//
    	// Multiple calls to XORKeyStream behave as if the concatenation of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/defs_linux.go

    	SIGTTOU   = C.SIGTTOU
    	SIGURG    = C.SIGURG
    	SIGXCPU   = C.SIGXCPU
    	SIGXFSZ   = C.SIGXFSZ
    	SIGVTALRM = C.SIGVTALRM
    	SIGPROF   = C.SIGPROF
    	SIGWINCH  = C.SIGWINCH
    	SIGIO     = C.SIGIO
    	SIGPWR    = C.SIGPWR
    	SIGSYS    = C.SIGSYS
    
    	SIGRTMIN = C.SIGRTMIN
    
    	FPE_INTDIV = C.FPE_INTDIV
    	FPE_INTOVF = C.FPE_INTOVF
    	FPE_FLTDIV = C.FPE_FLTDIV
    	FPE_FLTOVF = C.FPE_FLTOVF
    	FPE_FLTUND = C.FPE_FLTUND
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. src/runtime/defs_arm_linux.go

    	SIGTTOU   = C.SIGTTOU
    	SIGURG    = C.SIGURG
    	SIGXCPU   = C.SIGXCPU
    	SIGXFSZ   = C.SIGXFSZ
    	SIGVTALRM = C.SIGVTALRM
    	SIGPROF   = C.SIGPROF
    	SIGWINCH  = C.SIGWINCH
    	SIGIO     = C.SIGIO
    	SIGPWR    = C.SIGPWR
    	SIGSYS    = C.SIGSYS
    
    	FPE_INTDIV = C.FPE_INTDIV & 0xFFFF
    	FPE_INTOVF = C.FPE_INTOVF & 0xFFFF
    	FPE_FLTDIV = C.FPE_FLTDIV & 0xFFFF
    	FPE_FLTOVF = C.FPE_FLTOVF & 0xFFFF
    	FPE_FLTUND = C.FPE_FLTUND & 0xFFFF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. src/net/sock_stub.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || js || solaris || wasip1
    
    package net
    
    import "syscall"
    
    func maxListenerBacklog() int {
    	// TODO: Implement this
    	// NOTE: Never return a number bigger than 1<<16 - 1. See issue 5030.
    	return syscall.SOMAXCONN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 390 bytes
    - Viewed (0)
  5. docs_src/bigger_applications/app/main.py

        prefix="/admin",
        tags=["admin"],
        dependencies=[Depends(get_token_header)],
        responses={418: {"description": "I'm a teapot"}},
    )
    
    
    @app.get("/")
    async def root():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 29 17:32:18 UTC 2020
    - 552 bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

         *
         * This method keeps the invariant that the version of a child is bigger than the version of the parent.
         * This is because modifying the parent implies that all of its children have been modified, so they need to have at least the same version.
         *
         * @param newVersion The new version. Must be bigger than the current maximum version in this hierarchy.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/wasm/asm.go

    	"runtime.gcWriteBarrier5": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier6": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier7": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier8": {Results: []byte{I64}},                                     // -> bufptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. docs_src/bigger_applications/app_an/main.py

        prefix="/admin",
        tags=["admin"],
        dependencies=[Depends(get_token_header)],
        responses={418: {"description": "I'm a teapot"}},
    )
    
    
    @app.get("/")
    async def root():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 552 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/builtin.go

    		nif.Cond = ir.NewLogicalExpr(base.Pos, ir.OOROR, overflow, memCond)
    		nifPtr := ir.NewIfStmt(base.Pos, nil, nil, nil)
    		nifPtr.Cond = ir.NewBinaryExpr(base.Pos, ir.OEQ, unsafePtr, typecheck.NodNil())
    		nifPtr.Body.Append(mkcall("panicunsafeslicenilptr", nil, &nifPtr.Body))
    		nif.Body.Append(nifPtr, mkcall("panicunsafeslicelen", nil, &nif.Body))
    		appendWalkStmt(init, nif)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

        {!> ../../../docs_src/dependencies/tutorial006.py!}
        ```
    
    ## Dependencies для группы *операций путей*
    
    Позже, читая о том как структурировать большие приложения ([Bigger Applications - Multiple Files](../../tutorial/bigger-applications.md){.internal-link target=_blank}), возможно, многофайловые, вы узнаете как объявить единый параметр `dependencies` для всей группы *операций путей*.
    
    ## Глобальный Dependencies
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 06 15:43:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top