Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for cdata (0.04 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

          <description>
            <![CDATA[
            The {@code <dependency>} element contains information about a dependency
            of the project.
            ]]>
          </description>
          <fields>
            <field>
              <name>groupId</name>
              <version>3.0.0+</version>
              <required>true</required>
              <description>
                <![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

      xml.namespace="http://maven.apache.org/METADATA/${version}"
      xml.schemaLocation="https://maven.apache.org/xsd/repository-metadata-${version}.xsd">
      <id>repository-metadata</id>
      <name>Metadata</name>
      <description><![CDATA[
        <p>Per-directory repository metadata <code>repository-metadata.xml</code>.</p>
        <p>A directory may represent 3 types of content: "groupId", "groupId/artifactId" or "groupId/artifactId/version".</p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. cmd/bucket-targets.go

    func parseBucketTargetConfig(bucket string, cdata, cmetadata []byte) (*madmin.BucketTargets, error) {
    	var (
    		data []byte
    		err  error
    		t    madmin.BucketTargets
    		meta map[string]string
    	)
    	if len(cdata) == 0 {
    		return nil, nil
    	}
    	data = cdata
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if len(cmetadata) != 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                        XmlNode child = build(parser, trim, locationBuilder);
                        children.add(child);
                    }
                } else if (eventType == XMLStreamReader.CHARACTERS || eventType == XMLStreamReader.CDATA) {
                    String text = parser.getText();
                    lValue = lValue != null ? lValue + text : text;
                } else if (eventType == XMLStreamReader.END_ELEMENT) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            Exception ex = assertThrows(Exception.class, () -> projectBuilder.build(pomFile, configuration));
            assertThat(ex.getMessage(), containsString("Received non-all-whitespace CHARACTERS or CDATA event"));
    
            // multi projects build entry point
            ProjectBuildingException pex = assertThrows(
                    ProjectBuildingException.class,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    var _, _ = C.abs(0)
    
    // issue 14838
    
    func test14838(t *testing.T) {
    	data := []byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	cData := C.CBytes(data)
    	defer C.free(cData)
    
    	if C.check_cbytes((*C.char)(cData), C.size_t(len(data))) == 0 {
    		t.Fatalf("mismatched data: expected %v, got %v", data, (*(*[10]byte)(unsafe.Pointer(cData)))[:])
    	}
    }
    
    // issue 17065
    
    var sink C.int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. api/maven-api-plugin/src/main/mdo/plugin.mdo

      xml.namespace="http://maven.apache.org/PLUGIN/${version}"
      xml.schemaLocation="https://maven.apache.org/xsd/plugin-${version}.xsd">
      <id>plugin</id>
      <name>PluginDescriptor</name>
      <description><![CDATA[
        Maven 4 Plugin descriptor, stored in {@code META-INF/maven/plugin.xml} in a plugin's jar artifact.
        This descriptor is generally using the information contained in the annotations of the plugin api.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    			if datap.data <= dst && dst < datap.edata {
    				bulkBarrierBitmap(dst, src, size, dst-datap.data, datap.gcdatamask.bytedata)
    				return
    			}
    		}
    		for _, datap := range activeModules() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. pkg/controlplane/storageversionhashdata/data.go

    Alexander Zielenski <******@****.***> 1716482549 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top