Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,931 for JPoint (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/encoding/gob/debug.go

    }
    
    // uint returns the unsigned int at the input point, as a uint (not uint64).
    func (deb *debugger) uint() uint {
    	return uint(deb.uint64())
    }
    
    // int returns the signed int at the input point, as an int (not int64).
    func (deb *debugger) int() int {
    	return int(deb.int64())
    }
    
    // typeId returns the type id at the input point.
    func (deb *debugger) typeId() typeId {
    	return typeId(deb.int64())
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. src/runtime/os_freebsd_arm.go

    		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)
    	}
    	if goarm > 6 && cpu.HWCap&_HWCAP_VFPv3 == 0 && goarmsoftfp == 0 {
    		print("runtime: this CPU has no VFPv3 floating point hardware, so it cannot run\n")
    		print("a binary compiled for VFPv3 hard floating point. Recompile adding ,softfloat\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. android/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)
Back to top