Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for ISO (0.03 sec)

  1. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

                        from('manifest-ISO-8859-15.txt') {
                            // Charset used to decode the read manifest content
                            contentCharset = 'ISO-8859-15'
                        }
                    }
                }
            """.stripIndent()
            file('manifest-ISO-8859-15.txt').setText('bake: moji€', 'ISO-8859-15')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            when:
            opts.systemProperty("file.encoding", "ISO-8859-1");
            opts.defaultCharacterEncoding = "ISO-8859-2"
            then:
            !opts.allJvmArgs.contains("-Dfile.encoding=ISO-8859-1");
            opts.allJvmArgs.contains("-Dfile.encoding=ISO-8859-2");
    
            when:
            opts.defaultCharacterEncoding = "ISO-8859-2"
            opts.systemProperty("file.encoding", "ISO-8859-1")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            "someBranch\t"     | "release"       | "branch cannot contain ISO control character '\\u0009'"
            "someBranch"       | "release\t"     | "status cannot contain ISO control character '\\u0009'"
            "someBranch\n"     | "release"       | "branch cannot contain ISO control character '\\u000a'"
            "someBranch"       | "release\n"     | "status cannot contain ISO control character '\\u000a'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/language.go

    	id, exact := compact.LanguageID(compact.Tag(t))
    	return int(id), exact
    }
    
    var root = language.Tag{}
    
    // Base is an ISO 639 language code, used for encoding the base language
    // of a language tag.
    type Base struct {
    	langID language.Language
    }
    
    // ParseBase parses a 2- or 3-letter ISO 639 code.
    // It returns a ValueError if s is a well-formed but unknown language identifier
    // or another error if another error occurred.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/net/mail/message_test.go

    				},
    			},
    		},
    		// RFC 2047, Section 8.
    		{
    			`=?ISO-8859-1?Q?Andr=E9?= Pirard <******@****.***>`,
    			[]*Address{
    				{
    					Name:    `André Pirard`,
    					Address: "******@****.***",
    				},
    			},
    		},
    		// Custom example of RFC 2047 "B"-encoded ISO-8859-1 address.
    		{
    			`=?ISO-8859-1?B?SvZyZw==?= <******@****.***>`,
    			[]*Address{
    				{
    					Name:    `Jörg`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    	}
    	return l[:2]
    }
    
    // ISO3 returns the ISO 639-3 language code.
    func (b Language) ISO3() string {
    	if b == 0 || b >= langNoIndexOffset {
    		return b.String()
    	}
    	l := lang.Elem(int(b))
    	if l[3] == 0 {
    		return l[:3]
    	} else if l[2] == 0 {
    		return altLangISO3.Elem(int(l[3]))[:3]
    	}
    	// This allocation will only happen for 3-letter ISO codes
    	// that are non-canonical BCP 47 language identifiers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            final ResponseData responseData = new ResponseData();
            responseData.setUrl("http://hoge/");
            responseData.setResponseBody(data);
            responseData.setCharSet("ISO-8859-1");
            final ResultData resultData = htmlTransformer.transform(responseData);
            assertEquals("xyz", new String(resultData.getData()));
        }
    
        public void test_transform_filelink() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            "ex\r"    | "classifier"   | "extension cannot contain ISO control character '\\u000d'"
            "ex/"     | "classifier"   | "extension cannot contain '/'"
            "ext"     | "classi\u0090fier" | "classifier cannot contain ISO control character '\\u0090'"
            "ext"     | "class\\ifier" | "classifier cannot contain '\\'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. src/net/http/readrequest_test.go

    			"User-Agent: Fake\r\n" +
    			"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n" +
    			"Accept-Language: en-us,en;q=0.5\r\n" +
    			"Accept-Encoding: gzip,deflate\r\n" +
    			"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" +
    			"Keep-Alive: 300\r\n" +
    			"Content-Length: 7\r\n" +
    			"Proxy-Connection: keep-alive\r\n\r\n" +
    			"abcdef\n???",
    
    		&Request{
    			Method: "GET",
    			URL: &url.URL{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. internal/bucket/object/lock/lock.go

    	ErrMalformedBucketObjectConfig = errors.New("invalid bucket object lock config")
    	// ErrInvalidRetentionDate - indicates that retention date needs to be in ISO 8601 format
    	ErrInvalidRetentionDate = errors.New("date must be provided in ISO 8601 format")
    	// ErrPastObjectLockRetainDate - indicates that retention date must be in the future
    	ErrPastObjectLockRetainDate = errors.New("the retain until date must be in the future")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top