Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for Rr (0.04 sec)

  1. src/crypto/internal/nistec/p256_asm.go

    // Otherwise, it returns p.
    func (p *P256Point) SetBytes(b []byte) (*P256Point, error) {
    	// p256Mul operates in the Montgomery domain with R = 2²⁵⁶ mod p. Thus rr
    	// here is R in the Montgomery domain, or R×R mod p. See comment in
    	// P256OrdInverse about how this is used.
    	rr := p256Element{0x0000000000000003, 0xfffffffbffffffff,
    		0xfffffffffffffffe, 0x00000004fffffffd}
    
    	switch {
    	// Point at infinity.
    	case len(b) == 1 && b[0] == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/math/rand/v2/pcg.go

    	hi, _ = bits.Add64(hi, incHi, c)
    	p.lo = lo
    	p.hi = hi
    	return hi, lo
    }
    
    // Uint64 return a uniformly-distributed random uint64 value.
    func (p *PCG) Uint64() uint64 {
    	hi, lo := p.next()
    
    	// XSL-RR would be
    	//	hi, lo := p.next()
    	//	return bits.RotateLeft64(lo^hi, -int(hi>>58))
    	// but Numpy uses DXSM and O'Neill suggests doing the same.
    	// See https://github.com/golang/go/issues/21835#issuecomment-739065688
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcs/vcs.go

    		if err1 == nil {
    			rr = rr1
    			err = nil
    		}
    	}
    
    	// Should have been taken care of above, but make sure.
    	if err == nil && strings.Contains(importPath, "...") && strings.Contains(rr.Root, "...") {
    		// Do not allow wildcards in the repo root.
    		rr = nil
    		err = importErrorf(importPath, "cannot expand ... in %q", importPath)
    	}
    	return rr, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        //      the plugin manager provides.
    
        @Test
        void testRemoteResourcesPlugin() throws Exception {
            // TODO turn an equivalent back on when the RR plugin is released.
    
            /*
    
            This will not work until the RR plugin is released to get rid of the binding to the reporting exception which is a mistake.
    
            This happens after removing the reporting API from the core:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. src/internal/fuzz/pcg.go

    	uint32n(uint32) uint32
    	exp2() int
    	bool() bool
    
    	save(randState, randInc *uint64)
    	restore(randState, randInc uint64)
    }
    
    // The functions in pcg implement a 32 bit PRNG with a 64 bit period: pcg xsh rr
    // 64 32. See https://www.pcg-random.org/ for more information. This
    // implementation is geared specifically towards the needs of fuzzing: Simple
    // creation and use, no reproducibility, no concurrency safety, just the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/compress/gzip/gunzip.go

    // This permits reusing a [Reader] rather than allocating a new one.
    func (z *Reader) Reset(r io.Reader) error {
    	*z = Reader{
    		decompressor: z.decompressor,
    		multistream:  true,
    	}
    	if rr, ok := r.(flate.Reader); ok {
    		z.r = rr
    	} else {
    		z.r = bufio.NewReader(r)
    	}
    	z.Header, z.err = z.readHeader()
    	return z.err
    }
    
    // Multistream controls whether the reader supports multistream files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

    SwIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQXuXfa+0uJE5gPwP/cFcJ
    3DcU6VVHa1FjQrCYNO9DglmG0AelqhcRNbnaX54nJcean9y2+Y5V6JyAsAwNPFUL
    4/mFQjvYeHrzm5cWExcYwaRukJo3jLve2JKsBtecSnbNWObbrDVZhuOv0mN/zrDd
    +uxxBB9/rr+yyTCKLMIzp3RRQvco+b6TTmZICyidAf0EXWOnNAEEAMQSptDgnV5R
    Xh2XYg3jOfKVXIUm1+ocnTZXaPX8oQK8ztYPHYcxNnvxEL4yWqX9OifNF5bQdDNN
    O2218a8/NQWx5anZXHkv6boXhxuydgQlEz+aUVf6O5+k2Xi+fVoOpfC03lYQi0Tm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

                }
            }
        }
    
        ResolveTestFixture resolveClasspath(String name) {
            def resolve = new ResolveTestFixture(buildFile, "${name}Classpath")
            resolve.expectDefaultConfiguration((name =~ "[rR]untime") ? "runtime" : "compile")
            resolve.prepare()
            resolve
        }
    
        @ToBeFixedForConfigurationCache(because = "resolves configuration at execution time")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. src/image/draw/draw_test.go

    }
    
    func TestDraw(t *testing.T) {
    	rr := []image.Rectangle{
    		image.Rect(0, 0, 0, 0),
    		image.Rect(0, 0, 16, 16),
    		image.Rect(3, 5, 12, 10),
    		image.Rect(0, 0, 9, 9),
    		image.Rect(8, 8, 16, 16),
    		image.Rect(8, 0, 9, 16),
    		image.Rect(0, 8, 16, 9),
    		image.Rect(8, 8, 9, 9),
    		image.Rect(8, 8, 8, 8),
    	}
    	for _, r := range rr {
    	loop:
    		for _, test := range drawTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

    SwIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQXuXfa+0uJE5gPwP/cFcJ
    3DcU6VVHa1FjQrCYNO9DglmG0AelqhcRNbnaX54nJcean9y2+Y5V6JyAsAwNPFUL
    4/mFQjvYeHrzm5cWExcYwaRukJo3jLve2JKsBtecSnbNWObbrDVZhuOv0mN/zrDd
    +uxxBB9/rr+yyTCKLMIzp3RRQvco+b6TTmZICyidAf0EXWOnNAEEAMQSptDgnV5R
    Xh2XYg3jOfKVXIUm1+ocnTZXaPX8oQK8ztYPHYcxNnvxEL4yWqX9OifNF5bQdDNN
    O2218a8/NQWx5anZXHkv6boXhxuydgQlEz+aUVf6O5+k2Xi+fVoOpfC03lYQi0Tm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top