Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 248 for Lydian (0.1 sec)

  1. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Lisu <type 1>;
    var Ll <type 1>;
    var Lm <type 1>;
    var Lo <type 1>;
    var Logical_Order_Exception <type 1>;
    var Lower <type 1>;
    const LowerCase = 1 ;
    var Lt <type 1>;
    var Lu <type 1>;
    var Lycian <type 1>;
    var Lydian <type 1>;
    var M <type 1>;
    var Mahajani <type 1>;
    var Malayalam <type 1>;
    var Mandaic <type 1>;
    var Manichaean <type 1>;
    var Marchen <type 1>;
    var Mark <type 1>;
    const MaxASCII = 127' ;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  2. src/unicode/tables.go

    	Lisu                   = _Lisu                   // Lisu is the set of Unicode characters in script Lisu.
    	Lycian                 = _Lycian                 // Lycian is the set of Unicode characters in script Lycian.
    	Lydian                 = _Lydian                 // Lydian is the set of Unicode characters in script Lydian.
    	Mahajani               = _Mahajani               // Mahajani is the set of Unicode characters in script Mahajani.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/LittleEndianDataInputStream.java

    import java.io.InputStream;
    
    /**
     * An implementation of {@link DataInput} that uses little-endian byte ordering for reading {@code
     * short}, {@code int}, {@code float}, {@code double}, and {@code long} values.
     *
     * <p><b>Note:</b> This class intentionally violates the specification of its supertype {@code
     * DataInput}, which explicitly requires big-endian byte order.
     *
     * @author Chris Nokleberg
     * @author Keith Bottner
     * @since 8.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

            return myTime && myTime.median < otherTime.median && differenceSignificantCheck.test(myTime, otherTime)
        }
    
        boolean significantlySlowerThan(MeasuredOperationList other, double minConfidence = MINIMUM_CONFIDENCE) {
            def myTime = results.totalTime
            def otherTime = other.totalTime
            myTime && myTime.median > otherTime.median && differenceIsSignificant(myTime, otherTime, minConfidence)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    10920..10939  ; valid                                  # 5.1  LYDIAN LETTER A..LYDIAN LETTER C
    1093A..1093E  ; disallowed                             # NA   <reserved-1093A>..<reserved-1093E>
    1093F         ; valid                  ;      ; NV8    # 5.1  LYDIAN TRIANGULAR MARK
    10940..1097F  ; disallowed                             # NA   <reserved-10940>..<reserved-1097F>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  6. src/math/big/arith_s390x.s

    	VPDI  $0x4, V18, V18, V18 // flip the doublewords to big-endian order
    	VPDI  $0x4, V19, V19, V19 // flip the doublewords to big-endian order
    	VPDI  $0x4, V20, V20, V20 // flip the doublewords to big-endian order
    	VPDI  $0x4, V21, V21, V21 // flip the doublewords to big-endian order
    	VPDI  $0x4, V22, V22, V22 // flip the doublewords to big-endian order
    	VPDI  $0x4, V23, V23, V23 // flip the doublewords to big-endian order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

    import java.io.OutputStream;
    
    /**
     * An implementation of {@link DataOutput} that uses little-endian byte ordering for writing {@code
     * char}, {@code short}, {@code int}, {@code float}, {@code double}, and {@code long} values.
     *
     * <p><b>Note:</b> This class intentionally violates the specification of its supertype {@code
     * DataOutput}, which explicitly requires big-endian byte order.
     *
     * @author Chris Nokleberg
     * @author Keith Bottner
     * @since 8.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

    import java.io.InputStream;
    
    /**
     * An implementation of {@link DataInput} that uses little-endian byte ordering for reading {@code
     * short}, {@code int}, {@code float}, {@code double}, and {@code long} values.
     *
     * <p><b>Note:</b> This class intentionally violates the specification of its supertype {@code
     * DataInput}, which explicitly requires big-endian byte order.
     *
     * @author Chris Nokleberg
     * @author Keith Bottner
     * @since 8.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/xor.go

    import "runtime"
    
    // Platforms that have fast unaligned 32-bit little endian accesses.
    const unaligned = runtime.GOARCH == "386" ||
    	runtime.GOARCH == "amd64" ||
    	runtime.GOARCH == "arm64" ||
    	runtime.GOARCH == "ppc64le" ||
    	runtime.GOARCH == "s390x"
    
    // addXor reads a little endian uint32 from src, XORs it with (a + b) and
    // places the result in little endian byte order in dst.
    func addXor(dst, src []byte, a, b uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. lib/time/zoneinfo.zip

    Europe/Vienna Europe/Vilnius Europe/Volgograd Europe/Warsaw Europe/Zagreb Europe/Zaporozhye Europe/Zurich Factory GB GB-Eire GMT GMT+0 GMT-0 GMT0 Greenwich HST Hongkong Iceland Indian/Antananarivo Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion Iran Israel Jamaica Japan Kwajalein Libya MET MST MST7MDT Mexico/BajaNorte Mexico/BajaSur Mexico/General NZ NZ-CHAT Navajo PRC PST8PDT Pacific/Apia Pacific/Auckland...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
Back to top