Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 2p512 (0.04 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    	t1.Multiply(&t2, &t1)     // 2^200 - 1
    	t1.Square(&t1)            // 2^201 - 2
    	for i := 1; i < 50; i++ { // 2^250 - 2^50
    		t1.Square(&t1)
    	}
    	t0.Multiply(&t1, &t0)     // 2^250 - 1
    	t0.Square(&t0)            // 2^251 - 2
    	t0.Square(&t0)            // 2^252 - 4
    	return v.Multiply(&t0, x) // 2^252 - 3 -> x^(2^252-3)
    }
    
    // sqrtM1 is 2^((p-1)/4), which squared is equal to -1 by Euler's Criterion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.2.md

    * AWS kube-up: Increase timeout waiting for docker start ([#25405](https://github.com/kubernetes/kubernetes/pull/25405), [@justinsb](https://github.com/justinsb))
    * Fix hyperkube flag parsing ([#25512](https://github.com/kubernetes/kubernetes/pull/25512), [@colhom](https://github.com/colhom))
    * kubectl rolling-update support for same image ([#24645](https://github.com/kubernetes/kubernetes/pull/24645), [@jlowdermilk](https://github.com/jlowdermilk))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  3. security/pkg/pki/util/crypto_test.go

    			isErr:         false,
    			expectedCurve: elliptic.P256(),
    		},
    		"ECDSA-P384": {
    			key:           ecdsaPrivKeyP384,
    			isErr:         false,
    			expectedCurve: elliptic.P384(),
    		},
    		"ECDSA-P512": {
    			key:           ecdsaPrivKeyP521,
    			isErr:         false,
    			expectedCurve: elliptic.P256(),
    		},
    		"ED25519": {
    			key:           ed25519PrivKey,
    			isErr:         true,
    			expectedCurve: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

      %1 = "mhlo.slice"(%arg0) <{limit_indices = dense<[2, 1, 512]> : tensor<3xi64>, start_indices = dense<[1, 0, 0]> : tensor<3xi64>, strides = dense<1> : tensor<3xi64>}> : (tensor<3x1x512xf32>) -> tensor<1x1x512xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer_test.go

    			gcPercent:     100,
    			memoryLimit:   512 << 20,
    			globalsBytes:  32 << 10,
    			nCores:        8,
    			allocRate:     constant(33.0),
    			scanRate:      constant(1024.0),
    			growthRate:    constant(3.5).sum(ramp(-2.5, 12)),
    			scannableFrac: constant(1.0),
    			stackBytes:    constant(8192),
    			length:        50,
    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n > 12 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Updates to bundled Gradle dependencies
    
    - Ant has been updated to https://downloads.apache.org/ant/RELEASE-NOTES-1.10.8.html[1.10.8].
    - Groovy has been updated to https://groovy-lang.org/changelogs/changelog-2.5.12.html[Groovy 2.5.12].
    
    ==== Dependency substitutions and variant aware dependency resolution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    		if size := data.ActualSize(); size > 0 && size < fi.Erasure.BlockSize {
    			// Account for padding and forced compression overhead and encryption.
    			buffer = make([]byte, data.ActualSize()+256+32+32, data.ActualSize()*2+512)
    		} else {
    			buffer = globalBytePoolCap.Load().Get()
    			defer globalBytePoolCap.Load().Put(buffer)
    		}
    	case size >= fi.Erasure.BlockSize:
    		buffer = globalBytePoolCap.Load().Get()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top