Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 747 for y$ (0.04 sec)

  1. src/math/big/arith_test.go

    		rec := reciprocalWord(test.y)
    		q, r := divWW(test.x1, test.x0, test.y, rec)
    		if q != test.q || r != test.r {
    			t.Errorf("#%d got (%x, %x) want (%x, %x)", i, q, r, test.q, test.r)
    		}
    	}
    	//random tests
    	for ; i < testsNumber; i++ {
    		x1 := rndW()
    		x0 := rndW()
    		y := rndW()
    		if x1 >= y {
    			continue
    		}
    		rec := reciprocalWord(y)
    		qGot, rGot := divWW(x1, x0, y, rec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  2. src/net/netip/fuzz_test.go

    	}
    	buf2, err := y.(encoding.BinaryMarshaler).MarshalBinary()
    	if err != nil {
    		t.Logf("(%v).MarshalBinary() = %q", x, buf)
    		t.Logf("(%T).UnmarshalBinary(%q) = %v", y, buf, y)
    		t.Fatalf("failed to MarshalBinary a second time: %v", err)
    	}
    	if !bytes.Equal(buf, buf2) {
    		t.Logf("(%v).MarshalBinary() = %q", x, buf)
    		t.Logf("(%T).UnmarshalBinary(%q) = %v", y, buf, y)
    		t.Logf("(%v).MarshalBinary() = %q", y, buf2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. src/go/constant/value.go

    // x must be locked.
    func (x *stringVal) appendReverse(list []string) []string {
    	y := x
    	for y.r != nil {
    		y.r.mu.Lock()
    		list = y.r.appendReverse(list)
    		y.r.mu.Unlock()
    
    		l := y.l
    		if y != x {
    			y.mu.Unlock()
    		}
    		l.mu.Lock()
    		y = l
    	}
    	s := y.s
    	if y != x {
    		y.mu.Unlock()
    	}
    	return append(list, s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  4. src/math/big/nat_test.go

    		x := natFromString(test.x)
    		y := natFromString(test.y)
    		m := natFromString(test.m)
    		for len(x) < len(m) {
    			x = append(x, 0)
    		}
    		for len(y) < len(m) {
    			y = append(y, 0)
    		}
    
    		if x.cmp(m) > 0 {
    			_, r := nat(nil).div(nil, x, m)
    			t.Errorf("#%d: x > m (0x%s > 0x%s; use 0x%s)", i, x.utoa(16), m.utoa(16), r.utoa(16))
    		}
    		if y.cmp(m) > 0 {
    			_, r := nat(nil).div(nil, x, m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/net/http/pattern_test.go

    		{"/a/b/c", "/a/c/c", false},
    		{"/{x}", "/{y}", true},
    		{"/{x}", "/a", false}, // more specific
    		{"/{x}/{y}", "/{x}/a", false},
    		{"/{x}/{y}", "/{x}/a/b", false},
    		{"/{x}", "/a/{y}", false},
    		{"/{x}/{y}", "/{x}/a/", false},
    		{"/{x}", "/a/{y...}", false},           // more specific
    		{"/{x}/a/{y}", "/{x}/a/{y...}", false}, // more specific
    		{"/{x}/{y}", "/{x}/a/{$}", false},      // more specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/concepts/process-ram.drawio

                        <mxGeometry x="755" y="290" width="300" height="80" as="geometry"/>
                    </mxCell>
                    <mxCell id="6" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
                        <mxGeometry x="1110" y="410" width="190" height="500" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 10K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p224.go

    			return nil, err
    		}
    
    		// y² = x³ - 3x + b
    		y := p224Polynomial(new(fiat.P224Element), x)
    		if !p224Sqrt(y, y) {
    			return nil, errors.New("invalid P224 compressed point encoding")
    		}
    
    		// Select the positive or negative root, as indicated by the least
    		// significant bit, based on the encoding type byte.
    		otherRoot := new(fiat.P224Element)
    		otherRoot.Sub(otherRoot, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p521.go

    			return nil, err
    		}
    
    		// y² = x³ - 3x + b
    		y := p521Polynomial(new(fiat.P521Element), x)
    		if !p521Sqrt(y, y) {
    			return nil, errors.New("invalid P521 compressed point encoding")
    		}
    
    		// Select the positive or negative root, as indicated by the least
    		// significant bit, based on the encoding type byte.
    		otherRoot := new(fiat.P521Element)
    		otherRoot.Sub(otherRoot, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  9. docs/es/docs/features.md

        * Campos de texto (`str`) definiendo longitudes mínimas y máximas.
        * Números (`int`, `float`) con valores mínimos y máximos, etc.
    
    * Validación para tipos más exóticos como:
        * URL.
        * Email.
        * UUID.
        * ...y otros.
    
    Toda la validación es manejada por **Pydantic**, que es robusto y sólidamente establecido.
    
    ### Seguridad y autenticación
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/math/big/arith_ppc64x.s

    	MOVDU 32(R8), R15     // R15 = x[i+3]
    	MOVD  8(R9), R16      // R16 = y[i]
    	MOVD  16(R9), R17     // R17 = y[i+1]
    	MOVD  24(R9), R18     // R18 = y[i+2]
    	MOVDU 32(R9), R19     // R19 = y[i+3]
    	ADDE  R11, R16, R20   // R20 = x[i] + y[i] + CA
    	ADDE  R12, R17, R21   // R21 = x[i+1] + y[i+1] + CA
    	ADDE  R14, R18, R22   // R22 = x[i+2] + y[i+2] + CA
    	ADDE  R15, R19, R23   // R23 = x[i+3] + y[i+3] + CA
    	MOVD  R20, 8(R10)     // z[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top