Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,051 for mood (0.04 sec)

  1. src/crypto/sha256/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: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/admission_test.go

    			wantFailOpen: true,
    		},
    		{
    			test:         "DefaultAllow = true, backend unreachable, good image",
    			pod:          goodPod("good"),
    			defaultAllow: true,
    			wantAllowed:  true,
    			wantFailOpen: true,
    		},
    		{
    			test:         "DefaultAllow = false, backend unreachable, good image",
    			pod:          goodPod("good"),
    			defaultAllow: false,
    			wantAllowed:  false,
    			wantErr:      true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_chatty.txt

    # Run successful chatty fuzz targets.
    go test -v chatty_fuzz_test.go
    stdout ok
    stdout PASS
    stdout 'all good here'
    ! stdout FAIL
    
    # Fuzz successful chatty fuzz target that includes a separate unit test.
    go test -v chatty_with_test_fuzz_test.go -fuzz=Fuzz -fuzztime=1x
    stdout ok
    stdout PASS
    ! stdout FAIL
    stdout -count=1 'all good here'
    # Verify that the unit test is only run once.
    stdout -count=1 'logged foo'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperProjectIntegrationTest.groovy

            file("build.gradle") << """
        task hello {
            doLast {
                println 'hello'
            }
        }
    
        task echoProperty {
            def food = providers.gradleProperty('fooD')
            doLast {
                println "fooD=" + food.get()
            }
        }
    """
        }
    
        void "has non-zero exit code on build failure"() {
            given:
            prepareWrapper()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/crypto/md5/md5block_ppc64x.s

    	ROTLW	$shift, a; \
    	ADD	b, a;
    
    
    TEXT ·block(SB),NOSPLIT,$0-32
    	MOVD	dig+0(FP), R10
    	MOVD	p+8(FP), R6
    	MOVD	p_len+16(FP), R5
    
    	// We assume p_len >= 64
    	SRD 	$6, R5
    	MOVD	R5, CTR
    
    	MOVWZ	0(R10), R22
    	MOVWZ	4(R10), R3
    	MOVWZ	8(R10), R4
    	MOVWZ	12(R10), R5
    
    loop:
    	MOVD	R22, R14
    	MOVD	R3, R15
    	MOVD	R4, R16
    	MOVD	R5, R17
    
    	ENDIAN_MOVE( 0,R6,M00,M15)
    	ENDIAN_MOVE( 4,R6,M01,M15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/math/expm1_s390x.s

    	FMADD	F4, F1, F1
    	MOVD	$0x4086000000000000, R2
    	FMSUB	F1, F6, F4
    	WORD	$0xB3130044	//lcdbr	%f4,%f4
    	WFCHDBS	V2, V0, V0
    	BEQ	L21
    	ADDW	$0xF000, R1
    	RISBGN	$0, $15, $48, R1, R2
    	LDGR	R2, F0
    	FMADD	F0, F4, F0
    	MOVD	$·expm1x4ff<>+0(SB), R3
    	FMOVD	0(R5), F4
    	FMOVD	0(R3), F2
    	WFMADB	V2, V0, V4, V0
    	FMOVD	F0, ret+8(FP)
    	RET
    L7:
    	MOVD	$·expm1xmone<>+0(SB), R1
    	FMOVD	0(R1), F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue30566a.go

    func returnSecond(x bool, s string) string { return s }
    
    func identWrapper(s string) string { return ident(s) }
    
    func main() {
    	got := returnSecond((false || identWrapper("bad") != ""), ident("good"))
    	if got != "good" {
    		panic(fmt.Sprintf("wanted \"good\", got \"%s\"", got))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 20:04:07 UTC 2019
    - 535 bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/loong64enc3.s

    	MOVF	y+65540(FP), F4			// 1e020014de8f1000c433002b
    	MOVD	y+65540(FP), F4			// 1e020014de8f1000c433802b
    	MOVW	y+4097(FP), F4			// 3e000014de8f1000c427002b
    	MOVF	y+4097(FP), F4			// 3e000014de8f1000c427002b
    	MOVD	y+4097(FP), F4			// 3e000014de8f1000c427802b
    	MOVW	65536(R5), F4			// 1e020014de971000c403002b
    	MOVF	65536(R5), F4			// 1e020014de971000c403002b
    	MOVD	65536(R5), F4			// 1e020014de971000c403802b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 23:57:43 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  9. src/runtime/memmove_wasm.s

    #include "textflag.h"
    
    // See memmove Go doc for important implementation constraints.
    
    // func memmove(to, from unsafe.Pointer, n uintptr)
    TEXT runtime·memmove(SB), NOSPLIT, $0-24
    	MOVD to+0(FP), R0
    	MOVD from+8(FP), R1
    	MOVD n+16(FP), R2
    
    	Get R0
    	I32WrapI64
    	Get R1
    	I32WrapI64
    	Get R2
    	I32WrapI64
    	MemoryCopy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 10:37:01 UTC 2022
    - 479 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9400/asm_arm64.s

    //go:build gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Save link register
    	MOVD	R30, R9
    
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024 * 8), RSP
    
    	// Ask signaller to setgid
    	MOVD	$·Baton(SB), R0
    	MOVD	$1, R1
    storeloop:
    	LDAXRW	(R0), R2
    	STLXRW	R1, (R0), R3
    	CBNZ	R3, storeloop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 760 bytes
    - Viewed (0)
Back to top