Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for ISO (0.02 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/build.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <project name="ant-import-sample" default="package" basedir=".">
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="cleanAll">
            <delete dir="${build.dir}"/>
        </target>
    
        <target name="prepare">
            <tstamp>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/util/build.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <project name="util" default="build" basedir=".">
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="compile">
            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"/>
        </target>
    
        <target name="package" depends="build">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 603 bytes
    - Viewed (0)
  6. internal/bucket/lifecycle/expiration_test.go

    				t.Fatalf("%d: Expected %v but got %v", i+1, tc.expectedErr, err)
    			}
    		})
    	}
    
    	validationTestCases := []struct {
    		inputXML    string
    		expectedErr error
    	}{
    		{ // Expiration with a valid ISO 8601 date
    			inputXML: `<Expiration>
                                        <Date>2019-04-20T00:00:00Z</Date>
                                        </Expiration>`,
    			expectedErr: nil,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleEncodingSpec.groovy

            daemons(gradleVersion).daemons.size() == 1
    
            when:
            executer.withEnvironmentVars(GRADLE_OPTS: "-Dfile.encoding=ISO-8859-1");
            executer.withArgument("-i")
            run "verify"
    
            then:
            output.contains("verified = ISO-8859-1")
            daemons(gradleVersion).daemons.size() == 2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         * <ul>
         *     <li>no comment</li>
         *     <li>line separator {@literal '\n'}</li>
         *     <li>charset ISO-8859-1</li>
         * </ul>
         */
        public static void store(Properties properties, File propertyFile) throws IOException {
            store(properties, propertyFile, null);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/web/build.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <project name="web" default="build" basedir=".">
        <property name="root.dir" value="${basedir}/.."/>
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <!-- tag::build-required[] -->
        <target name="buildRequiredProjects">
            <ant dir="${root.dir}/util" target="build"/>  <!--1-->
        </target>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 922 bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            def html = """
            <a href="\u00c1\u00d2">directory1</a>
            """
            def encodedHtml = html.getBytes('ISO-8859-1')
            assert !Arrays.equals(encodedHtml, html.getBytes("utf-8"))
    
            expect:
            def uris = parser.parse(baseUrl, new ByteArrayInputStream(encodedHtml), 'text/html;charset=ISO-8859-1')
            uris.collect { it.toString() } == ["\u00c1\u00d2"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top