Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for cdata (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/data-scanner.go

    )
    
    // initDataScanner will start the scanner in the background.
    func initDataScanner(ctx context.Context, objAPI ObjectLayer) {
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Run the data scanner in a loop
    		for {
    			runDataScanner(ctx, objAPI)
    			duration := time.Duration(r.Float64() * float64(scannerCycle.Load()))
    			if duration < time.Second {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/codegen.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. cmd/data-usage-cache.go

    		hashPathCutSet = dataUsageRoot + string(filepath.Separator)
    	}
    }
    
    // hashPath calculates a hash of the provided string.
    func hashPath(data string) dataUsageHash {
    	if data != dataUsageRoot {
    		data = strings.Trim(data, hashPathCutSet)
    	}
    	return dataUsageHash(path.Clean(data))
    }
    
    //msgp:ignore dataUsageHashMap
    type dataUsageHashMap map[string]struct{}
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/sds_test.go

    	xdsserver "istio.io/istio/pkg/xds"
    )
    
    func makeSecret(name string, data map[string]string) *corev1.Secret {
    	bdata := map[string][]byte{}
    	for k, v := range data {
    		bdata[k] = []byte(v)
    	}
    	return &corev1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: "istio-system",
    		},
    		Data: bdata,
    	}
    }
    
    var (
    	certDir     = filepath.Join(env.IstioSrc, "./tests/testdata/certs")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    	}
    
    	// The first entry is all zeros.
    	data = data[Sym32Size:]
    
    	symbols := make([]Symbol, len(data)/Sym32Size)
    
    	i := 0
    	var sym Sym32
    	for len(data) > 0 {
    		sym.Name = f.ByteOrder.Uint32(data[0:4])
    		sym.Value = f.ByteOrder.Uint32(data[4:8])
    		sym.Size = f.ByteOrder.Uint32(data[8:12])
    		sym.Info = data[12]
    		sym.Other = data[13]
    		sym.Shndx = f.ByteOrder.Uint16(data[14:16])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top