Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,262 for wood (0.04 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

    class GUtilTest extends Specification {
        static sep = File.pathSeparator
    
        def convertStringToCamelCase() {
            expect:
            toCamelCase(null) == null
            toCamelCase("") == ""
            toCamelCase("word") == "Word"
            toCamelCase("twoWords") == "TwoWords"
            toCamelCase("TwoWords") == "TwoWords"
            toCamelCase("two-words") == "TwoWords"
            toCamelCase("two.words") == "TwoWords"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. test/fibo.go

    	short = flag.Bool("short", false, "only print first 10 digits of result")
    )
    
    // A large natural number is represented by a nat, each "digit" is
    // a big.Word; the value zero corresponds to the empty nat slice.
    type nat []big.Word
    
    const W = 1 << (5 + ^big.Word(0)>>63) // big.Word size in bits
    
    // The following methods are extracted from math/big to make this a
    // stand-alone program that can easily be run without dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 08 22:22:58 UTC 2014
    - 6.3K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_riscv64.s

    	ECALL
    
    	// In parent, return.
    	BEQ	ZERO, A0, child
    	MOVW	ZERO, ret+40(FP)
    	RET
    
    child:
    	// In child, on new stack.
    	MOV	-32(X2), T0
    	MOV	$1234, A0
    	BEQ	A0, T0, good
    	WORD	$0	// crash
    
    good:
    	// Initialize m->procid to Linux tid
    	MOV	$SYS_gettid, A7
    	ECALL
    
    	MOV	-24(X2), T2	// fn
    	MOV	-16(X2), T1	// g
    	MOV	-8(X2), T0	// m
    
    	BEQ	ZERO, T0, nog
    	BEQ	ZERO, T1, nog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/math/big/arith_decl_pure.go

    		fn = subVWlarge
    	}
    	return fn(z, x, y)
    }
    
    func shlVU(z, x []Word, s uint) (c Word) {
    	return shlVU_g(z, x, s)
    }
    
    func shrVU(z, x []Word, s uint) (c Word) {
    	return shrVU_g(z, x, s)
    }
    
    func mulAddVWW(z, x []Word, y, r Word) (c Word) {
    	return mulAddVWW_g(z, x, y, r)
    }
    
    func addMulVVW(z, x []Word, y Word) (c Word) {
    	return addMulVVW_g(z, x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/math/big/arith_decl_s390x.go

    //go:build !math_big_pure_go
    
    package big
    
    import "internal/cpu"
    
    func addVV_check(z, x, y []Word) (c Word)
    func addVV_vec(z, x, y []Word) (c Word)
    func addVV_novec(z, x, y []Word) (c Word)
    func subVV_check(z, x, y []Word) (c Word)
    func subVV_vec(z, x, y []Word) (c Word)
    func subVV_novec(z, x, y []Word) (c Word)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 503 bytes
    - Viewed (0)
  6. src/math/big/arith_decl.go

    //go:linkname addVW
    //go:noescape
    func addVW(z, x []Word, y Word) (c Word)
    
    // subVW should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname subVW
    //go:noescape
    func subVW(z, x []Word, y Word) (c Word)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/math/big/arith_test.go

    	}
    }
    
    // TODO(gri) mulAddVWW and divWVW are symmetric operations but
    // their signature is not symmetric. Try to unify.
    
    type funWVW func(z []Word, xn Word, x []Word, y Word) (r Word)
    type argWVW struct {
    	z  nat
    	xn Word
    	x  nat
    	y  Word
    	r  Word
    }
    
    func testFunWVW(t *testing.T, msg string, f funWVW, a argWVW) {
    	z := make(nat, len(a.z))
    	r := f(z, a.xn, a.x, a.y)
    	for i, zi := range z {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  8. src/math/floor_386.s

    	FMOVD   x+0(FP), F0  // F0=x
    	FSTCW   -2(SP)       // save old Control Word
    	MOVW    -2(SP), AX
    	ANDW    $0xf3ff, AX
    	ORW     $0x0800, AX  // Rounding Control set to +Inf
    	MOVW    AX, -4(SP)   // store new Control Word
    	FLDCW   -4(SP)       // load new Control Word
    	FRNDINT              // F0=Ceil(x)
    	FLDCW   -2(SP)       // load old Control Word
    	FMOVDP  F0, ret+8(FP)
    	RET
    
    // func archFloor(x float64) float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. src/math/big/arith_arm.s

    	RET
    
    
    // func shrVU(z, x []Word, s uint) (c Word)
    TEXT ·shrVU(SB),NOSPLIT,$0
    	MOVW	z_len+4(FP), R5
    	TEQ	$0, R5
    	BEQ	X6
    
    	MOVW	z+0(FP), R1
    	MOVW	x+12(FP), R2
    	ADD	R5<<2, R1, R5
    	MOVW	s+24(FP), R3
    	TEQ	$0, R3	// shift 0 is special
    	BEQ Y6
    	SUB	$4, R5	// stop one word early
    	MOVW	$32, R4
    	SUB	R3, R4
    	MOVW	$0, R7
    
    	// first word
    	MOVW.P	4(R2), R6
    	MOVW	R6>>R3, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/util_test.go

    	cases := []struct {
    		s    string
    		want []string
    		err  bool
    	}{
    		{s: "[good]", want: []string{"good"}},
    		{s: "[good][abc][xyz]", want: []string{"good", "abc", "xyz"}},
    		{s: "[]", want: []string{""}},
    		{s: "[[good]", want: []string{"[good"}},
    		{s: "[good]]", want: []string{"good]"}},
    		{s: "[[good]]", want: []string{"[good]"}},
    		{s: "x[bad]", err: true},
    		{s: "[bad", err: true},
    		{s: "bad]", err: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 30 00:00:33 UTC 2020
    - 2.8K bytes
    - Viewed (0)
Back to top