Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 717 for JPoint (0.16 sec)

  1. pom.xml

        </contributor>
        <contributor>
          <name>Mike Mol (MNG-6665)</name>
        </contributor>
        <contributor>
          <name>Martin Kanters</name>
          <organization>JPoint</organization>
        </contributor>
        <contributor>
          <name>Maarten Mulders</name>
          <organization>Info Support</organization>
        </contributor>
        <contributor>
          <name>Luc Klaassen (MNG-6065)</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/crypto/ecdh/nist.go

    	"crypto/internal/nistec"
    	"crypto/internal/randutil"
    	"errors"
    	"internal/byteorder"
    	"io"
    	"math/bits"
    )
    
    type nistCurve[Point nistPoint[Point]] struct {
    	name        string
    	newPoint    func() Point
    	scalarOrder []byte
    }
    
    // nistPoint is a generic constraint for the nistec Point types.
    type nistPoint[T any] interface {
    	Bytes() []byte
    	BytesX() ([]byte, error)
    	SetBytes([]byte) (T, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/internal/abi/abi_generic.go

    	// to passing floating-point argument values. Result registers are
    	// identical to argument registers, so this number is used for
    	// those too.
    	FloatArgRegs = 0
    
    	// EffectiveFloatRegSize describes the width of floating point
    	// registers on the current platform from the ABI's perspective.
    	//
    	// Since Go only supports 32-bit and 64-bit floating point primitives,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core-platform/build.gradle.kts

        }
        runtime(project(":gradle-cli-main")) {
            because("This is the entry point of the `gradle` command.")
        }
        runtime(project(":daemon-main")) {
            because("This is the entry point of the Gradle daemon.")
        }
        runtime(project(":tooling-api-provider")) {
            because("This is the entry point of the tooling API provider, which is the version-specific client part of the tooling API.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    </p>
    
    <pre>
    [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
    [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
    [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
    map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmp/cmp.go

    }
    
    // Less reports whether x is less than y.
    // For floating-point types, a NaN is considered less than any non-NaN,
    // and -0.0 is not less than (is equal to) 0.0.
    func Less[T Ordered](x, y T) bool {
    	return (isNaN(x) && !isNaN(y)) || x < y
    }
    
    // Compare returns
    //
    //	-1 if x is less than y,
    //	 0 if x equals y,
    //	+1 if x is greater than y.
    //
    // For floating-point types, a NaN is considered less than any non-NaN,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_FPR8                 = 24  // Floating point register 8
    	PT_FPR9                 = 25  // Floating point register 9
    	PT_FPR10                = 26  // Floating point register 10
    	PT_FPR11                = 27  // Floating point register 11
    	PT_FPR12                = 28  // Floating point register 12
    	PT_FPR13                = 29  // Floating point register 13
    	PT_FPR14                = 30  // Floating point register 14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top