Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 286 for xmlns (0.29 sec)

  1. internal/bucket/object/lock/lock.go

    			return lhold, ErrUnknownWORMModeDirective
    		}
    		lhold = ObjectLegalHold{XMLNS: "http://s3.amazonaws.com/doc/2006-03-01/", Status: lh}
    	}
    	return lhold, nil
    }
    
    // ObjectLegalHold specified in
    // https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLegalHold.html
    type ObjectLegalHold struct {
    	XMLNS   string          `xml:"xmlns,attr,omitempty"`
    	XMLName xml.Name        `xml:"LegalHold"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/encoding/xml/xml_test.go

    		want string
    		ok   bool
    	}{
    		{encodeXMLNS1, `<Test xmlns="http://example.com/ns"><Body>hello world</Body></Test>`, true},
    		{encodeXMLNS2, `<Test><body xmlns="http://example.com/ns">hello world</body></Test>`, true},
    		{encodeXMLNS3, `<Test xmlns="http://example.com/ns"><Body>hello world</Body></Test>`, true},
    		{encodeXMLNS4, `<Test xmlns="http://example.com/ns"><Body>hello world</Body></Test>`, false},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    	// Dot's SVG output is
    	//
    	//    <svg width="___" height="___"
    	//     viewBox="___" xmlns=...>
    	//    <g id="graph0" transform="...">
    	//    ...
    	//    </g>
    	//    </svg>
    	//
    	// Change it to
    	//
    	//    <svg width="100%" height="100%"
    	//     xmlns=...>
    
    	//    <script type="text/ecmascript"><![CDATA[` ..$(svgpan.JSSource)... `]]></script>`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/tree/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
        <groupId>org.apache.maven.ut</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <packaging>pom</packaging>
        <modules>
            <module>dep</module>
            <module>consumer</module>
        </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 301 bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/resources/org/gradle/integtests/publish/maven/pomGeneration/expectedQuickstartPom.txt

    <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>${groupId}</groupId>
      <artifactId>quickstart</artifactId>
      <version>${version}</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 356 bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/trivial/child/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.1.0">
      <parent>
        <groupId>org.my.group</groupId>
        <artifactId>parent</artifactId>
      </parent>
      <artifactId>child</artifactId>
      <packaging>jar</packaging>
    
      <properties>
        <prop-child>bar</prop-child>
      </properties>
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 430 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/tree/consumer/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
    
        <parent>
            <groupId>org.apache.maven.ut</groupId>
            <artifactId>parent</artifactId>
        </parent>
        <artifactId>consumer</artifactId>
    
        <dependencies>
            <dependency>
                <groupId>org.apache.maven.ut</groupId>
                <artifactId>dep</artifactId>
            </dependency>
        </dependencies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 392 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/copy/groovy/src/main/webapp/web.xml

    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" version="2.4"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http:/java.sun.com/dtd/web-app_2_3.dtd">
      <servlet>
        <servlet-name>hello</servlet-name>
        <servlet-class>org.gradle.sample.HelloServlet</servlet-class>
      </servlet>
    
      <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello</url-pattern>
      </servlet-mapping>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 456 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/copy/kotlin/src/main/webapp/web.xml

    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" version="2.4"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http:/java.sun.com/dtd/web-app_2_3.dtd">
      <servlet>
        <servlet-name>hello</servlet-name>
        <servlet-class>org.gradle.sample.HelloServlet</servlet-class>
      </servlet>
    
      <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello</url-pattern>
      </servlet-mapping>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 456 bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/tree/dep/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
    
        <parent>
            <groupId>org.apache.maven.ut</groupId>
            <artifactId>parent</artifactId>
        </parent>
        <artifactId>dep</artifactId>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 212 bytes
    - Viewed (0)
Back to top