Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 317 for 4996 (0.07 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVW	R1, 4095(R2)(R3)       // 50132fff
    	MOVW	R1, 4096(R2)(R3)       // e31320000150
    	MOVWZ	R1, 4095(R2)(R3)       // 50132fff
    	MOVWZ	R1, 4096(R2)(R3)       // e31320000150
    	MOVH	R1, 4095(R2)(R3)       // 40132fff
    	MOVHZ   R1, 4095(R2)(R3)       // 40132fff
    	MOVH	R1, 4096(R2)(R3)       // e31320000170
    	MOVHZ	R1, 4096(R2)(R3)       // e31320000170
    	MOVB	R1, 4095(R2)(R3)       // 42132fff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/test/testcert/generate.sh

    # limitations under the License.
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert.pem -keyout key.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=localhost/SAN=localhost" \
            -addext "subjectAltName = DNS:localhost"
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert2.pem -keyout key2.pem \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 12 05:58:58 UTC 2020
    - 1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/x86/obj.go

    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 4096
    		}
    		if *ld.FlagTextAddr == -1 {
    			*ld.FlagTextAddr = ld.Rnd(4096, *ld.FlagRound) + int64(ld.HEADR)
    		}
    
    	case objabi.Hlinux, /* elf32 executable */
    		objabi.Hfreebsd,
    		objabi.Hnetbsd,
    		objabi.Hopenbsd:
    		ld.Elfinit(ctxt)
    
    		ld.HEADR = ld.ELFRESERVE
    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 4096
    		}
    		if *ld.FlagTextAddr == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/mem_windows.go

    	// in the worst case, but that's fast enough.
    	for n > 0 {
    		small := n
    		for small >= 4096 && stdcall3(_VirtualFree, uintptr(v), small, _MEM_DECOMMIT) == 0 {
    			small /= 2
    			small &^= 4096 - 1
    		}
    		if small < 4096 {
    			print("runtime: VirtualFree of ", small, " bytes failed with errno=", getlasterror(), "\n")
    			throw("runtime: failed to decommit pages")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/crypto/x509/boring.go

    	if !fipstls.Required() {
    		return true
    	}
    
    	// The key must be RSA 2048, RSA 3072, RSA 4096,
    	// or ECDSA P-256, P-384, P-521.
    	switch k := c.PublicKey.(type) {
    	default:
    		return false
    	case *rsa.PublicKey:
    		if size := k.N.BitLen(); size != 2048 && size != 3072 && size != 4096 {
    			return false
    		}
    	case *ecdsa.PublicKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 993 bytes
    - Viewed (0)
  6. tools/certs/Makefile.selfsigned.mk

    		-in $< -out $@
    
    root-cert.csr: root-key.pem root-ca.conf
    	@echo "generating $@"
    	@openssl req -sha256 -new -key $< -config root-ca.conf -out $@
    
    root-key.pem:
    	@echo "generating $@"
    	@openssl genrsa -out $@ 4096
    #------------------------------------------------------------------------
    ##<name>-cacerts: generate self signed intermediate certificates for <name> and store them under <name> directory.
    .PHONY: %-cacerts
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue29362.go

    }
    
    var throttle = make(chan struct{}, 10)
    
    func noPointerArgs(a, b, c, d uintptr) {
    	sink = make([]byte, 4096)
    	<-throttle
    }
    
    func main() {
    	const N = 1000
    	for i := 0; i < N; i++ {
    		throttle <- struct{}{}
    		go noPointerArgs(badPtr, badPtr, badPtr, badPtr)
    		sink = make([]byte, 4096)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 03 20:17:01 UTC 2019
    - 879 bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa_s390x.go

    // kdsa invokes the "compute digital signature authentication"
    // instruction with the given function code and 4096 byte
    // parameter block.
    //
    // The return value corresponds to the condition code set by the
    // instruction. Interrupted invocations are handled by the
    // function.
    //
    //go:noescape
    func kdsa(fc uint64, params *[4096]byte) (errn uint64)
    
    // testingDisableKDSA forces the generic fallback path. It must only be set in tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. cmd/server-rlimit.go

    	if _, maxLimit, err = sys.GetMaxOpenFileLimit(); err != nil {
    		return err
    	}
    
    	if maxLimit < 4096 && runtime.GOOS != globalWindowsOSName {
    		logger.Info("WARNING: maximum file descriptor limit %d is too low for production servers. At least 4096 is recommended. Fix with \"ulimit -n 4096\"",
    			maxLimit)
    	}
    
    	if err = sys.SetMaxOpenFileLimit(maxLimit, maxLimit); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue29362b.go

    func noPointerArgs(p, q *byte, a0, a1, a2, a3, a4, a5, a6 uintptr) {
    	sink = make([]byte, 4096)
    	sinkptr = q
    	<-throttle
    	sinkptr = p
    }
    
    var sinkptr *byte
    
    func main() {
    	const N = 1000
    	for i := 0; i < N; i++ {
    		throttle <- struct{}{}
    		go noPointerArgs(nil, nil, badPtr, badPtr, badPtr, badPtr, badPtr, badPtr, badPtr)
    		sink = make([]byte, 4096)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 03 23:37:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top