Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for iexcl (0.15 sec)

  1. src/html/template/html.go

    	}
    	if written == 0 {
    		return s
    	}
    	b.WriteString(s[written:])
    	return b.String()
    }
    
    // stripTags takes a snippet of HTML and returns only the text content.
    // For example, `<b>&iexcl;Hi!</b> <script>...</script>` -> `&iexcl;Hi! `.
    func stripTags(html string) string {
    	var b strings.Builder
    	s, c, i, allText := []byte(html), context{}, 0, true
    	// Using the transition funcs helps us avoid mangling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    			"<script> \n</script><style> \n</style><a onclick='/**///' style='/**///'>",
    		},
    		{
    			"typed HTML in text",
    			`{{.W}}`,
    			`&iexcl;<b class="foo">Hello</b>, <textarea>O'World</textarea>!`,
    		},
    		{
    			"typed HTML in attribute",
    			`<div title="{{.W}}">`,
    			`<div title="&iexcl;Hello, O&#39;World!">`,
    		},
    		{
    			"typed HTML in script",
    			`<button onclick="alert({{.W}})">`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  3. src/html/entity.go

    		"ic;":                              '\U00002063',
    		"icirc;":                           '\U000000EE',
    		"icy;":                             '\U00000438',
    		"iecy;":                            '\U00000435',
    		"iexcl;":                           '\U000000A1',
    		"iff;":                             '\U000021D4',
    		"ifr;":                             '\U0001D526',
    		"igrave;":                          '\U000000EC',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

    public class ${className} {
    
        private static final Map<String, String> DEFAULT_ENTITIES;
        static {
            Map<String, String> entities = new HashMap<>();
            entities.put("nbsp", "\u00a0");
            entities.put("iexcl", "\u00a1");
            entities.put("cent", "\u00a2");
            entities.put("pound", "\u00a3");
            entities.put("curren", "\u00a4");
            entities.put("yen", "\u00a5");
            entities.put("brvbar", "\u00a6");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/mdo/reader.vm

        private static final Map<String, String> DEFAULT_ENTITIES;
        static {
            Map<String, String> entities = new HashMap<>();
            entities.put("nbsp", "\u00a0");
            entities.put("iexcl", "\u00a1");
            entities.put("cent", "\u00a2");
            entities.put("pound", "\u00a3");
            entities.put("curren", "\u00a4");
            entities.put("yen", "\u00a5");
            entities.put("brvbar", "\u00a6");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&ic;":                              "\u2063",
    	"&icirc;":                           "\u00ee",
    	"&icy;":                             "\u0438",
    	"&iecy;":                            "\u0435",
    	"&iexcl;":                           "\u00a1",
    	"&iff;":                             "\u21d4",
    	"&ifr;":                             "\U0001d526",
    	"&igrave;":                          "\u00ec",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. src/encoding/xml/xml.go

    		ssam '
    			,y /\&gt;/ x/\&lt;(.|\n)+/ s/\n/ /g
    			,x v/^\&lt;!ENTITY/d
    			,s/\&lt;!ENTITY ([^ ]+) .*U\+([0-9A-F][0-9A-F][0-9A-F][0-9A-F]) .+/	"\1": "\\u\2",/g
    		'
    	*/
    	"nbsp":     "\u00A0",
    	"iexcl":    "\u00A1",
    	"cent":     "\u00A2",
    	"pound":    "\u00A3",
    	"curren":   "\u00A4",
    	"yen":      "\u00A5",
    	"brvbar":   "\u00A6",
    	"sect":     "\u00A7",
    	"uml":      "\u00A8",
    	"copy":     "\u00A9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  8. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

            pom.getDependencies().set(pomDependencies(dependency))
    
            when:
            exclude1.group >> "excl-1-group"
            exclude1.module >> "excl-1-module"
            exclude2.group >> "excl-2-group"
            exclude2.module >> null
            exclude3.group >> null
            exclude3.module >> "excl-3-module"
    
            then:
            with (xml) {
                dependencies.dependency.exclusions.exclusion.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

                optional = "true"==dep.optional.text()
            }
            if (dep.exclusions) {
                dep.exclusions.exclusion.each { excl ->
                    MavenDependencyExclusion exclusion = new MavenDependencyExclusion(
                        groupId: excl.groupId.text(),
                        artifactId: excl.artifactId.text(),
                    )
                    exclusions << exclusion
                }
    
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            }
    
            Artifact result = toArtifact(artifact);
    
            List<Exclusion> excl = Optional.ofNullable(exclusions).orElse(Collections.emptyList()).stream()
                    .map(RepositoryUtils::toExclusion)
                    .collect(Collectors.toList());
            return new Dependency(result, artifact.getScope(), artifact.isOptional(), excl);
        }
    
        public static List<RemoteRepository> toRepos(List<ArtifactRepository> repos) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top