Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for 72 (0.07 sec)

  1. releasenotes/notes/kiali-update-v1.72.yaml

    John Mazzitelli <******@****.***> 1691509692 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:12 UTC 2023
    - 131 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

        }
    
        def "chooses closest API"() {
            when:
            def consumer = versionAttribute('7.2')
            def producer = [
                versionAttribute('6.0'),
                versionAttribute('7.0'),
                versionAttribute('7.1'), // 7.1 is the closest compatible (i.e. lower) version to 7.2 in this list
                versionAttribute('7.1-rc-2'), // this is bad practice: targeting a not-GA version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/internal/runtime/syscall/asm_linux_s390x.s

    	MOVD	a5+40(FP), R6
    	MOVD	a6+48(FP), R7
    	SYSCALL
    	MOVD	$0xfffffffffffff001, R8
    	CMPUBLT	R2, R8, ok
    	MOVD	$-1, r1+56(FP)
    	MOVD	$0, r2+64(FP)
    	NEG	R2, R2
    	MOVD	R2, errno+72(FP)
    	RET
    ok:
    	MOVD	R2, r1+56(FP)
    	MOVD	R3, r2+64(FP)
    	MOVD	$0, errno+72(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 663 bytes
    - Viewed (0)
  4. src/internal/runtime/syscall/asm_linux_arm64.s

    	MOVD	a5+40(FP), R4
    	MOVD	a6+48(FP), R5
    	SVC
    	CMN	$4095, R0
    	BCC	ok
    	MOVD	$-1, R4
    	MOVD	R4, r1+56(FP)
    	MOVD	ZR, r2+64(FP)
    	NEG	R0, R0
    	MOVD	R0, errno+72(FP)
    	RET
    ok:
    	MOVD	R0, r1+56(FP)
    	MOVD	R1, r2+64(FP)
    	MOVD	ZR, errno+72(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 645 bytes
    - Viewed (0)
  5. src/internal/runtime/syscall/asm_linux_mips64x.s

    	MOVV	a6+48(FP), R9
    	MOVV	R0, R3	// reset R3 to 0 as 1-ret SYSCALL keeps it
    	SYSCALL
    	BEQ	R7, ok
    	MOVV	$-1, R1
    	MOVV	R1, r1+56(FP)
    	MOVV	R0, r2+64(FP)
    	MOVV	R2, errno+72(FP)
    	RET
    ok:
    	MOVV	R2, r1+56(FP)
    	MOVV	R3, r2+64(FP)
    	MOVV	R0, errno+72(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 724 bytes
    - Viewed (0)
  6. src/crypto/ecdh/nist.go

    // same length and shorter than 72 bytes.
    func isLess(a, b []byte) bool {
    	if len(a) != len(b) {
    		panic("crypto/ecdh: internal error: mismatched isLess inputs")
    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    	// 72 bytes is enough for every scalar in this package, and having a fixed
    	// size lets us avoid heap allocations.
    	if len(a) > 72 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/runtime/cgo/asm_s390x.s

    	// Allocate 96 bytes on the stack.
    	MOVD	$-96(R15), R15
    
    	// Save F8-F15 in our stack frame.
    	FMOVD	F8, 32(R15)
    	FMOVD	F9, 40(R15)
    	FMOVD	F10, 48(R15)
    	FMOVD	F11, 56(R15)
    	FMOVD	F12, 64(R15)
    	FMOVD	F13, 72(R15)
    	FMOVD	F14, 80(R15)
    	FMOVD	F15, 88(R15)
    
    	// Initialize Go ABI environment.
    	BL	runtime·load_g(SB)
    
    	MOVD	R2, 8(R15)	// fn unsafe.Pointer
    	MOVD	R3, 16(R15)	// a unsafe.Pointer
    	// Skip R4 = n uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/runtime/syscall/defs_linux_amd64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    const (
    	SYS_MPROTECT      = 10
    	SYS_FCNTL         = 72
    	SYS_EPOLL_CTL     = 233
    	SYS_EPOLL_PWAIT   = 281
    	SYS_EPOLL_CREATE1 = 291
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 290
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 463 bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-ExportKeyingMaterial

    00000290  fd 72 b6 16 6f 06 71 f9  60 4f 32 ce f6 83 94 75  |.r..o.q.`O2....u|
    000002a0  d9 23 d3 41 f8 e7 90 60  80 a8 a5 95 c0 a2 dd 2e  |.#.A...`........|
    000002b0  e7 60 73 5b c0 a5 a0 bd  8b bc cc 32 8a 9e 30 6a  |.`s[.......2..0j|
    000002c0  72 2f 61 24 56 0b 1e 3e  52 92 d2 e0 11 cd 52 69  |r/a$V..>R.....Ri|
    000002d0  c4 73 7f 72 95 fd f5 c4  72 d7 77 73 85 bf be e0  |.s.r....r.ws....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/math/tan_s390x.s

    DATA ·tanrodataL13<> + 48(SB)/8, $-.245391301343844510e-03
    DATA ·tanrodataL13<> + 56(SB)/8, $0.214530914428992319e-01
    DATA ·tanrodataL13<> + 64(SB)/8, $0.108285667160535624e-31
    DATA ·tanrodataL13<> + 72(SB)/8, $0.612323399573676480e-16
    DATA ·tanrodataL13<> + 80(SB)/8, $0.157079632679489656e+01
    DATA ·tanrodataL13<> + 88(SB)/8, $0.636619772367581341e+00
    GLOBL ·tanrodataL13<> + 0(SB), RODATA, $96
    
    // Constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 23:30:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top