Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,051 for mood (0.04 sec)

  1. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            createDir('bad') {
                file('web.xml')
            }
            file('good.xml')
    
            file('bad/web.xml').text = 'bad'
            file('good.xml').text = 'good'
    
            buildFile << '''
            task war(type: War) {
                webInf {
                    from 'bad'
                }
                webXml = file('good.xml')
                destinationDirectory = buildDir
                archiveFileName = 'test.war'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat_arm64.s

    TEXT ·addMulVVW1024(SB), $0-32
    	MOVD	$16, R0
    	JMP		addMulVVWx(SB)
    
    // func addMulVVW1536(z, x *uint, y uint) (c uint)
    TEXT ·addMulVVW1536(SB), $0-32
    	MOVD	$24, R0
    	JMP		addMulVVWx(SB)
    
    // func addMulVVW2048(z, x *uint, y uint) (c uint)
    TEXT ·addMulVVW2048(SB), $0-32
    	MOVD	$32, R0
    	JMP		addMulVVWx(SB)
    
    TEXT addMulVVWx(SB), NOFRAME|NOSPLIT, $0
    	MOVD	z+0(FP), R1
    	MOVD	x+8(FP), R2
    	MOVD	y+16(FP), R3
    	MOVD	$0, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$0x11110000, R1               // MOVD	$286326784, R1              // 2122a2d2
    	MOVD	$0xaaaa0000aaaa1111, R1       // MOVD	$-6149102338357718767, R1   // 212282d24155b5f24155f5f2
    	MOVD	$0x1111ffff1111aaaa, R1       // MOVD	$1230045644216969898, R1    // a1aa8a922122a2f22122e2f2
    	MOVD	$0, R1                        // e1031faa
    	MOVD	$-1, R1                       // 01008092
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_arm64.s

    TEXT ·castagnoliUpdate(SB),NOSPLIT,$0-36
    	MOVWU	crc+0(FP), R9  // CRC value
    	MOVD	p+8(FP), R13  // data pointer
    	MOVD	p_len+16(FP), R11  // len(p)
    
    update:
    	CMP	$16, R11
    	BLT	less_than_16
    	LDP.P	16(R13), (R8, R10)
    	CRC32CX	R8, R9
    	CRC32CX	R10, R9
    	SUB	$16, R11
    
    	JMP	update
    
    less_than_16:
    	TBZ	$3, R11, less_than_8
    
    	MOVD.P	8(R13), R10
    	CRC32CX	R10, R9
    
    less_than_8:
    	TBZ	$2, R11, less_than_4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 08:57:33 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    TEXT ·chaCha20_ctr32_vsx(SB),NOSPLIT,$64-40
    	MOVD out+0(FP), OUT
    	MOVD inp+8(FP), INP
    	MOVD len+16(FP), LEN
    	MOVD key+24(FP), KEY
    	MOVD counter+32(FP), CNT
    
    	// Addressing for constants
    	MOVD $consts<>+0x00(SB), CONSTBASE
    	MOVD $16, R8
    	MOVD $32, R9
    	MOVD $48, R10
    	MOVD $64, R11
    	SRD $6, LEN, BLOCKS
    	// for VPERMXOR
    	MOVD $consts<>+0xa0(SB), MASK
    	MOVD $16, R20
    	// V16
    	LXVW4X (CONSTBASE)(R0), VS48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/runtime/mkpreempt.go

    	p("MOVD R31, LR")
    	p("MOVD %d(R1), R2", l.stack+8)
    	p("MOVD %d(R1), R12", l.stack+16)
    	p("MOVD (R1), R31") // load PC to CTR
    	p("MOVD R31, CTR")
    	p("MOVD 32(R1), R31")        // restore R31
    	p("ADD $%d, R1", l.stack+32) // pop frame (including the space pushed by sigctxt.pushCall)
    	p("JMP (CTR)")
    }
    
    func genRISCV64() {
    	// X0 (zero), X1 (LR), X2 (SP), X3 (GP), X4 (TP), X27 (g), X31 (TMP) are special.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactoryTest.groovy

            Mock(BadCredentials)  | [new GoodCredentialsAuthentication('good')]                                          | "'good'(Authentication)"
            Mock(GoodCredentials) | [new GoodCredentialsAuthentication('good'), new BadCredentialsAuthentication('bad')] | "'bad'(Authentication)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/internal/notsha256/sha256block_ppc64x.s

    	VSLDOI	$12, V4, V4, V7
    
    	MOVD	$0x020, R_x020
    	MOVD	$0x030, R_x030
    	MOVD	$0x040, R_x040
    	MOVD	$0x050, R_x050
    	MOVD	$0x060, R_x060
    	MOVD	$0x070, R_x070
    	MOVD	$0x080, R_x080
    	MOVD	$0x090, R_x090
    	MOVD	$0x0a0, R_x0a0
    	MOVD	$0x0b0, R_x0b0
    	MOVD	$0x0c0, R_x0c0
    	MOVD	$0x0d0, R_x0d0
    	MOVD	$0x0e0, R_x0e0
    	MOVD	$0x0f0, R_x0f0
    	MOVD	$0x100, R_x100
    	MOVD	$0x110, R_x110
    
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. src/internal/bytealg/indexbyte_ppc64x.s

    #endif
    
    	MTVRD	R5,V1
    	VSPLTB	$7,V1,V1	// Replicate byte across V1
    
    	BLT	cmp16		// Jump to the small string case if it's <32 bytes.
    
    	CMP	R4,$64,CR1
    	MOVD	$16,R11
    	MOVD	R3,R8
    	BLT	CR1,cmp32	// Special case for length 32 - 63
    	MOVD	$32,R12
    	MOVD	$48,R6
    
    	RLDICR  $0,R4,$63-6,R9	// R9 = len &^ 63
    	ADD	R3,R9,R9	// R9 = &s[len &^ 63]
    	ANDCC	$63,R4		// (len &= 63) cmp 0.
    
    	PCALIGN	$16
    loop64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_arm64.s

    	AESE	K.B16, B5.B16    \
    	AESE	K.B16, B6.B16    \
    	AESE	K.B16, B7.B16
    
    	MOVD	productTable+0(FP), pTbl
    	MOVD	dst+8(FP), dstPtr
    	MOVD	src_base+32(FP), srcPtr
    	MOVD	src_len+40(FP), srcPtrLen
    	MOVD	ctr+56(FP), ctrPtr
    	MOVD	T+64(FP), tPtr
    	MOVD	ks_base+72(FP), ks
    	MOVD	ks_len+80(FP), NR
    
    	MOVD	$0xC2, H1
    	LSL	$56, H1
    	MOVD	$1, H0
    	VMOV	H1, POLY.D[0]
    	VMOV	H0, POLY.D[1]
    	VEOR	ZERO.B16, ZERO.B16, ZERO.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top