Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 540 for w3 (0.02 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.03" points="16 7 10 13 4 7"/></svg>',"chevron-left":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.03" points="13 16 7 10 13 4"/></svg>',"chevron-right":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.03"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDependencyManagementImportOrderTest.groovy

    		file("mavenRoot/group/level1/1/level1-1.pom").text = '''\
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>group</groupId>
      <artifactId>level1</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/html/template/attr.go

    // network message, then the value in this map is contentTypeUnsafe.
    // This map is derived from HTML5, specifically
    // https://www.w3.org/TR/html5/Overview.html#attributes-1
    // as well as "%URI"-typed attributes from
    // https://www.w3.org/TR/html4/index/attributes.html
    var attrTypeMap = map[string]contentType{
    	"accept":          contentTypePlain,
    	"accept-charset":  contentTypeUnsafe,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/xml/XmlEscapers.java

     *
     * <p>For details on the behavior of the escapers in this class, see sections <a
     * href="http://www.w3.org/TR/2008/REC-xml-20081126/#charsets">2.2</a> and <a
     * href="http://www.w3.org/TR/2008/REC-xml-20081126/#syntax">2.4</a> of the XML specification.
     *
     * @author Alex Matevossian
     * @author David Beaumont
     * @since 15.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. src/encoding/xml/read_test.go

    	}
    }
    
    type Tables struct {
    	HTable string `xml:"http://www.w3.org/TR/html4/ table"`
    	FTable string `xml:"http://www.w3schools.com/furniture table"`
    }
    
    var tables = []struct {
    	xml string
    	tab Tables
    	ns  string
    }{
    	{
    		xml: `<Tables>` +
    			`<table xmlns="http://www.w3.org/TR/html4/">hello</table>` +
    			`<table xmlns="http://www.w3schools.com/furniture">world</table>` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. src/html/template/css.go

    		if i == -1 {
    			i = len(s)
    		}
    		b, s = append(b, s[:i]...), s[i:]
    		if len(s) < 2 {
    			break
    		}
    		// https://www.w3.org/TR/css3-syntax/#SUBTOK-escape
    		// escape ::= unicode | '\' [#x20-#x7E#x80-#xD7FF#xE000-#xFFFD#x10000-#x10FFFF]
    		if isHex(s[1]) {
    			// https://www.w3.org/TR/css3-syntax/#SUBTOK-unicode
    			//   unicode ::= '\' [0-9a-fA-F]{1,6} wc?
    			j := 2
    			for j < len(s) && j < 7 && isHex(s[j]) {
    				j++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. src/image/jpeg/idct.go

    const (
    	w1 = 2841 // 2048*sqrt(2)*cos(1*pi/16)
    	w2 = 2676 // 2048*sqrt(2)*cos(2*pi/16)
    	w3 = 2408 // 2048*sqrt(2)*cos(3*pi/16)
    	w5 = 1609 // 2048*sqrt(2)*cos(5*pi/16)
    	w6 = 1108 // 2048*sqrt(2)*cos(6*pi/16)
    	w7 = 565  // 2048*sqrt(2)*cos(7*pi/16)
    
    	w1pw7 = w1 + w7
    	w1mw7 = w1 - w7
    	w2pw6 = w2 + w6
    	w2mw6 = w2 - w6
    	w3pw5 = w3 + w5
    	w3mw5 = w3 - w5
    
    	r2 = 181 // 256/sqrt(2)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add '-W3'
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll toolChain.map { toolChain ->
            if (toolChain in [ Gcc, Clang ]) {
                return ['-O2', '-fno-access-control']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptorTest.groovy

            root.nodeName == 'application'
            root.getAttribute("xmlns") == "http://java.sun.com/xml/ns/javaee"
            root.getAttribute("xmlns:xsi") == "http://www.w3.org/2001/XMLSchema-instance"
            root.getAttribute("xsi:schemaLocation") == "http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd"
            root.getAttribute("version") == "6"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

    tasks.withType(CppCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
            when (toolChain) {
                is Gcc, is Clang -> listOf("-O2", "-fno-access-control")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top