Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,085 for toint (0.15 sec)

  1. src/crypto/ecdsa/ecdsa.go

    	if err != nil {
    		return nil, err
    	}
    	return priv, nil
    }
    
    // randomPoint returns a random scalar and the corresponding point using the
    // procedure given in FIPS 186-4, Appendix B.5.2 (rejection sampling).
    func randomPoint[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (k *bigmod.Nat, p Point, err error) {
    	k = bigmod.NewNat()
    	for {
    		b := make([]byte, c.N.Size())
    		if _, err = io.ReadFull(rand, b); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                System.out.println("id = " + getRestricted().getId().get());
                                Extension.Point point = referencePoint.getOrElse(getRestricted().point(-1, -1));
                                System.out.println("referencePoint = (" + point.getX() + ", " + point.getY() + ")");
                                System.out.println("primaryAccess = { " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pkg/controller/controller_utils_test.go

    		nodeName       string
    		taintsToRemove []*v1.Taint
    		expectedTaints []v1.Taint
    		requestCount   int
    	}{
    		{
    			name: "remove one taint from node",
    			nodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node1",
    						},
    						Spec: v1.NodeSpec{
    							Taints: []v1.Taint{
    								{Key: "key1", Value: "value1", Effect: "NoSchedule"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. pkg/controller/tainteviction/taint_eviction_test.go

    	go controller.Run(ctx)
    
    	// no taint
    	nodeIndexer.Add(untaintedNode)
    	controller.handleNodeUpdate(ctx, nodeUpdateItem{"node1"})
    	// verify pod is not queued for deletion
    	if controller.taintEvictionQueue.GetWorkerUnsafe(podNamespacedName.String()) != nil {
    		t.Fatalf("pod queued for deletion with no taints")
    	}
    
    	// no taint -> infinitely tolerated taint
    	nodeIndexer.Update(singleTaintedNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    Production Scala source. May also contain Java source files for joint compilation.
    
    include::javaProjectTestLayout.adoc[]
    
    `src/test/scala`::
    Test Scala source. May also contain Java source files for joint compilation.
    
    include::javaProjectGenericLayout.adoc[]
    
    `src/__sourceSet__/scala`::
    Scala source files for the given source set. May also contain Java source files for joint compilation.
    
    
    [[sec:changing_scala_project_layout]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

      }
    
      @Test fun `point with only x set`() {
        val bytes = "3003800109".decodeHex()
        val point = Point(9L, null)
        assertThat(Point.ADAPTER.fromDer(bytes)).isEqualTo(point)
        assertThat(Point.ADAPTER.toDer(point)).isEqualTo(bytes)
      }
    
      @Test fun `point with only y set`() {
        val bytes = "3003810109".decodeHex()
        val point = Point(null, 9L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm.go

    func p256Select(res *P256Point, table *p256Table, idx int)
    
    // p256AffinePoint is a point in affine coordinates (x, y). x and y are still
    // Montgomery domain elements. The point can't be the point at infinity.
    type p256AffinePoint struct {
    	x, y p256Element
    }
    
    // p256AffineTable is a table of the first 32 multiples of a point. Points are
    // stored at an index offset of -1 like in p256Table, and [0]P is not stored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/strconv/atof.go

    }
    
    // ParseFloat converts the string s to a floating-point number
    // with the precision specified by bitSize: 32 for float32, or 64 for float64.
    // When bitSize=32, the result still has type float64, but it will be
    // convertible to float32 without changing its value.
    //
    // ParseFloat accepts decimal and hexadecimal floating-point numbers
    // as defined by the Go syntax for [floating-point literals].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p384.go

    const p384ElementLength = 48
    
    // P384Point is a P384 point. The zero value is NOT valid.
    type P384Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P384Element
    }
    
    // NewP384Point returns a new P384Point representing the point at infinity point.
    func NewP384Point() *P384Point {
    	return &P384Point{
    		x: new(fiat.P384Element),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  10. src/image/image.go

    func (p *RGBA) Set(x, y int, c color.Color) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    	i := p.PixOffset(x, y)
    	c1 := color.RGBAModel.Convert(c).(color.RGBA)
    	s := p.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = c1.R
    	s[1] = c1.G
    	s[2] = c1.B
    	s[3] = c1.A
    }
    
    func (p *RGBA) SetRGBA64(x, y int, c color.RGBA64) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
Back to top