Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for 0_80 (0.25 sec)

  1. platforms/documentation/docs/src/snippets/java/toolchain-management/kotlin/settings.gradle.kts

    plugins {
        id("org.gradle.toolchains.foojay-resolver") version("0.8.0")
    }
    
    import org.gradle.api.Plugin
    import org.gradle.api.initialization.Settings
    import org.gradle.jvm.toolchain.JavaToolchainResolver
    import org.gradle.jvm.toolchain.JavaToolchainResolverRegistry
    import java.net.URI
    import java.util.Optional
    import javax.inject.Inject
    
    apply<MadeUpPlugin>()
    
    // tag::toolchain-management[]
    toolchainManagement {
        jvm { // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_amd64.s

    	AESKEYGENASSIST $0x10, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x20, X2, X1
    	CALL _expand_key_192b<>(SB)
    	AESKEYGENASSIST $0x40, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x80, X2, X1
    	CALL _expand_key_192b<>(SB)
    	JMP Lexp_dec
    Lexp_enc128:
    	AESKEYGENASSIST $0x01, X0, X1
    	CALL _expand_key_128<>(SB)
    	AESKEYGENASSIST $0x02, X0, X1
    	CALL _expand_key_128<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/internal/runtime/syscall/asm_linux_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	MOVV	num+0(FP), R2	// syscall entry
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	a4+32(FP), R7
    	MOVV	a5+40(FP), R8
    	MOVV	a6+48(FP), R9
    	MOVV	R0, R3	// reset R3 to 0 as 1-ret SYSCALL keeps it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 724 bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    00000380  c0 a8 a0 08 ac d3 4e 39  ca 21 b0 e6 1d ea 97 58  |......N9.!.....X|
    00000390  6a e0 ac ad 10 19 75 13  7e 35 5d c6 2c ad a1 a2  |j.....u.~5].,...|
    000003a0  79 ac 33 ed 4d 77 41 29  6c e2 05 80 d7 7b 05 a4  |y.3.MwA)l....{..|
    000003b0  03 17 03 03 00 35 4b 22  e9 78 9e b1 75 a9 cd 91  |.....5K".x..u...|
    000003c0  c6 4d f1 e9 f2 a7 42 59  d5 c0 9e f3 9e 8f 7a 17  |.M....BY......z.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/syscall/asm_freebsd_arm64.s

    	MOVD	R0, err+48(FP)
    	RET
    ok:
    	MOVD	R0, r1+32(FP)
    	MOVD	R1, r2+40(FP)
    	MOVD	ZR, err+48(FP)
    	RET
    
    // func Syscall6(trap uintptr, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	BL	runtime·entersyscall<ABIInternal>(SB)
    	MOVD	trap+0(FP), R8	// syscall entry
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	MOVD	a4+32(FP), R3
    	MOVD	a5+40(FP), R4
    	MOVD	a6+48(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. src/runtime/defs_linux_s390x.go

    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART = 0x10000000
    	_SA_ONSTACK = 0x8000000
    	_SA_SIGINFO = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. build-logic-commons/settings.gradle.kts

     * limitations under the License.
     */
    
    dependencyResolutionManagement {
        repositories {
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    includeBuild("../build-logic-settings")
    
    // Shared basics for all
    include("basics")
    
    // Platform: defines shared dependency versions
    include("build-platform")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.3K bytes
    - Viewed (1)
  8. src/vendor/golang.org/x/net/idna/trieval.go

    )
    
    const (
    	valid               category = 0x08
    	validNV8            category = 0x18
    	validXV8            category = 0x28
    	disallowed          category = 0x40
    	disallowedSTD3Valid category = 0x80
    	ignored             category = 0xC0
    )
    
    // join types and additional rune information
    const (
    	joiningL = (iota + 1)
    	joiningD
    	joiningT
    	joiningR
    
    	//the following types are derived during processing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_ppc64le.go

    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART = 0x10000000
    	_SA_ONSTACK = 0x8000000
    	_SA_SIGINFO = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/crypto/rand/util.go

    		// the result isn't ever one bit short.
    		if b >= 2 {
    			bytes[0] |= 3 << (b - 2)
    		} else {
    			// Here b==1, because b cannot be zero.
    			bytes[0] |= 1
    			if len(bytes) > 1 {
    				bytes[1] |= 0x80
    			}
    		}
    		// Make the value odd since an even number this large certainly isn't prime.
    		bytes[len(bytes)-1] |= 1
    
    		p.SetBytes(bytes)
    		if p.ProbablyPrime(20) {
    			return p, nil
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top