Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,116 for JPoint (0.24 sec)

  1. src/runtime/os_linux_arm.go

    	// reflect the CPU capabilities. Assume that every Android arm device
    	// has the necessary floating point hardware available.
    	if GOOS == "android" {
    		return
    	}
    	if cpu.HWCap&_HWCAP_VFP == 0 && goarmsoftfp == 0 {
    		print("runtime: this CPU has no floating point hardware, so it cannot run\n")
    		print("a binary compiled for hard floating point. Recompile adding ,softfloat\n")
    		print("to GOARM.\n")
    		exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/unicode/utf16/utf16.go

    	maxRune         = '\U0010FFFF' // Maximum valid Unicode code point.
    )
    
    const (
    	// 0xd800-0xdc00 encodes the high 10 bits of a pair.
    	// 0xdc00-0xe000 encodes the low 10 bits of a pair.
    	// the value is those 20 bits plus 0x10000.
    	surr1 = 0xd800
    	surr2 = 0xdc00
    	surr3 = 0xe000
    
    	surrSelf = 0x10000
    )
    
    // IsSurrogate reports whether the specified Unicode code point
    // can appear in a surrogate pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/os_linux_s390x.go

    	// Check if the present z-system has the hardware capability to carryout
    	// floating point operations. Check if hwcap reflects CPU capability for the
    	// necessary floating point hardware (HasVX) availability.
    	// Starting with Go1.19, z13 is the minimum machine level for running Go on LoZ
    	if cpu.HWCap&_HWCAP_VX == 0 {
    		print("runtime: This CPU has no floating point hardware, so this program cannot be run. \n")
    		exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 17:36:28 UTC 2023
    - 825 bytes
    - Viewed (0)
  5. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

      private final char[][] replacements;
      // The number of elements in the replacement array.
      private final int replacementsLength;
      // The first code point in the safe range.
      private final int safeMin;
      // The last code point in the safe range.
      private final int safeMax;
    
      // Cropped values used in the fast path range checks.
      private final char safeMinChar;
      private final char safeMaxChar;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue29329.go

    package main
    
    import (
    	"fmt"
    )
    
    type LineString []Point
    type Point [2]float64
    
    //go:noinline
    func benchmarkData() LineString {
    	return LineString{{1.0, 2.0}}
    }
    
    func (ls LineString) Clone() LineString {
    	ps := MultiPoint(ls)
    	return LineString(ps.Clone())
    }
    
    type MultiPoint []Point
    
    func (mp MultiPoint) Clone() MultiPoint {
    	if mp == nil {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

        }
    
        public void test_34_150_10_2() {
            MockletHttpServletRequest request = getMockRequest();
            request.setParameter("geo.location.1.point", "34,150");
            request.setParameter("geo.location.1.distance", "10km");
            request.setParameter("geo.location.2.point", "35,151");
            request.setParameter("geo.location.2.distance", "1km");
    
            final GeoInfo geoInfo = new GeoInfo(request);
            String result =
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/DirectoryReport.java

     */
    public interface DirectoryReport extends ConfigurableReport {
    
        /**
         * Returns the entry point of a directory based Report
         *
         * This can be the index.html file in a HTML report
         *
         * @return the entry point of the report or
         * {@link DirectoryReport#getOutputLocation()}
         * if no entry point defined
         *
         */
        @Internal
        File getEntryPoint();
    
        @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top