Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Latin (0.2 sec)

  1. maven-core/src/test/resources-project-builder/pom-encoding/latin-1/pom.xml

    -->
    
    <!--
    NOTE: This POM's XML declaration intentionally declares Latin-1 encoding.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng2254</groupId>
      <artifactId>latin-1</artifactId>
      <version>0.1-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-2254 :: Latin-1</name>
      <description>TEST-CHARS: �������</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Charsets.java

      @GwtIncompatible // Charset not supported by GWT
      public static final Charset US_ASCII = Charset.forName("US-ASCII");
    
      /**
       * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1).
       *
       * <p><b>Java 7+ users:</b> this constant should be treated as deprecated; use {@link
       * java.nio.charset.StandardCharsets#ISO_8859_1} instead.
       *
       */
      public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Charsets.java

      @GwtIncompatible // Charset not supported by GWT
      public static final Charset US_ASCII = Charset.forName("US-ASCII");
    
      /**
       * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1).
       *
       * <p><b>Java 7+ users:</b> this constant should be treated as deprecated; use {@link
       * java.nio.charset.StandardCharsets#ISO_8859_1} instead.
       *
       */
      public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/compress/gzip/gzip_test.go

    }
    
    // TestLatin1 tests the internal functions for converting to and from Latin-1.
    func TestLatin1(t *testing.T) {
    	latin1 := []byte{0xc4, 'u', 0xdf, 'e', 'r', 'u', 'n', 'g', 0}
    	utf8 := "Äußerung"
    	z := Reader{r: bufio.NewReader(bytes.NewReader(latin1))}
    	s, err := z.readString()
    	if err != nil {
    		t.Fatalf("readString: %v", err)
    	}
    	if s != utf8 {
    		t.Fatalf("read latin-1: got %q, want %q", s, utf8)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/compress/gzip/gzip.go

    // GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).
    func (z *Writer) writeString(s string) (err error) {
    	// GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.
    	needconv := false
    	for _, v := range s {
    		if v == 0 || v > 0xff {
    			return errors.New("gzip.Write: non-Latin-1 header string")
    		}
    		if v > 0x7f {
    			needconv = true
    		}
    	}
    	if needconv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/unicode/graphic.go

    	}
    	return isExcludingLatin(Letter, r)
    }
    
    // IsMark reports whether the rune is a mark character (category [M]).
    func IsMark(r rune) bool {
    	// There are no mark characters in Latin-1.
    	return isExcludingLatin(Mark, r)
    }
    
    // IsNumber reports whether the rune is a number (category [N]).
    func IsNumber(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pN != 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. src/unicode/graphic_test.go

    // license that can be found in the LICENSE file.
    
    package unicode_test
    
    import (
    	"testing"
    	. "unicode"
    )
    
    // Independently check that the special "Is" functions work
    // in the Latin-1 range through the property table.
    
    func TestIsControlLatin1(t *testing.T) {
    	for i := rune(0); i <= MaxLatin1; i++ {
    		got := IsControl(i)
    		want := false
    		switch {
    		case 0x00 <= i && i <= 0x1F:
    			want = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.6K bytes
    - Viewed (0)
  8. src/compress/gzip/gunzip.go

    func (z *Reader) Multistream(ok bool) {
    	z.multistream = ok
    }
    
    // readString reads a NUL-terminated string from z.r.
    // It treats the bytes read as being encoded as ISO 8859-1 (Latin-1) and
    // will output a string encoded using UTF-8.
    // This method always updates z.digest with the data read.
    func (z *Reader) readString() (string, error) {
    	var err error
    	needConv := false
    	for i := 0; ; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         *     <li>the properties are sorted alphabetically</li>
         * </ul>
         *
         * <p>Like with {@link java.util.Properties#store(java.io.OutputStream, String)}, Unicode characters are
         * escaped when using the default Latin-1 (ISO-8559-1) encoding.</p>
         */
        public static void store(Properties properties, OutputStream outputStream, @Nullable String comment, Charset charset, String lineSeparator) throws IOException {
            String rawContents;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

            if (userFriendly.matches("(?i)(?:American|English|ASCII)")) {
              // 1-byte UTF-8 sequences - "American" ASCII text
              return 0x80;
            } else if (userFriendly.matches("(?i)(?:French|Latin|Western.*European)")) {
              // Mostly 1-byte UTF-8 sequences, mixed with occasional 2-byte
              // sequences - "Western European" text
              return 0x90;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 5.3K bytes
    - Viewed (0)
Back to top