Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 483 for data0 (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/data/DocumentDataContainers.kt

        fun data(value: DeclarativeDocument.ValueNode): DValue = when (value) {
            is DeclarativeDocument.ValueNode.ValueFactoryNode -> data(value)
            is DeclarativeDocument.ValueNode.LiteralValueNode -> data(value)
        }
    
        fun data(value: DeclarativeDocument.ValueNode.ValueFactoryNode): DValueFactory
        fun data(value: DeclarativeDocument.ValueNode.LiteralValueNode): DLiteral
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    )
    
    type File struct {
    	Meta  map[string]string
    	Count map[string]uint64
    }
    
    func Parse(filename string, data []byte) (*File, error) {
    	if !bytes.HasPrefix(data, []byte(hdrPrefix)) || len(data) < pageSize {
    		if len(data) < pageSize {
    			return nil, fmt.Errorf("%s: file too short (%d<%d)", filename, len(data), pageSize)
    		}
    		return nil, fmt.Errorf("%s: wrong hdr (not %q)", filename, hdrPrefix)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. internal/ringbuffer/ring_buffer_benchmark_test.go

    	rb.SetBlocking(true)
    	data := []byte(strings.Repeat("a", sz))
    	buf := make([]byte, sz)
    
    	go func() {
    		for {
    			rb.Write(data)
    		}
    	}()
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		rb.Read(buf)
    	}
    }
    
    func BenchmarkIoPipeReader(b *testing.B) {
    	pr, pw := io.Pipe()
    	data := []byte(strings.Repeat("a", 512))
    	buf := make([]byte, 512)
    
    	go func() {
    		for {
    			pw.Write(data)
    		}
    	}()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses_test.go

    		success    bool
    	}{
    		// Invalid inputs.
    		{
    			[]string{"data{1...17}/export{1...52}"},
    			[]uint64{14144},
    			nil,
    			false,
    		},
    		// Valid inputs.
    		{
    			[]string{"data{1...3}"},
    			[]uint64{3},
    			[][]uint64{{3}},
    			true,
    		},
    		{
    			[]string{"data/controller1/export{1...2}, data/controller2/export{1...4}, data/controller3/export{1...8}"},
    			[]uint64{2, 4, 8},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/testsupport.go

    			return fmt.Errorf("reading counter data file %s: %s", cdf, err)
    		}
    		var data decodecounter.FuncPayload
    		for {
    			ok, err := cdr.NextFunc(&data)
    			if err != nil {
    				return fmt.Errorf("reading counter data file %s: %v", cdf, err)
    			}
    			if !ok {
    				break
    			}
    
    			// NB: sanity check on pkg and func IDs?
    			key := pkfunc{pk: data.PkgIdx, fcn: data.FuncIdx}
    			if prev, found := pmm[key]; found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

        data class DirectoryChildren(
            val file: File,
            val hash: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class InputFileSystemEntry(
            val file: File,
            val fileType: FileType
        ) : ConfigurationCacheFingerprint()
    
        data class ValueSource(
            val obtainedValue: ObtainedValue
        ) : ConfigurationCacheFingerprint()
    
        data class UndeclaredSystemProperty(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/internal/coverage/pods/pods.go

    // process is collecting a set { M1, M2, ... MN } where each M_k is a
    // distinct coverage meta-data file. We then create a single pod for
    // each meta-data file M_k, then find all of the counter data files
    // that refer to that meta-data file (recall that the counter data
    // file name incorporates the meta-data hash), and add the counter
    // data file to the appropriate pod.
    //
    // This process is complicated by the fact that we need to keep track
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds_test.go

    			expect: map[string]Expected{
    				"kubernetes://generic": {
    					Key:  string(genericCert.Data[credentials.GenericScrtKey]),
    					Cert: string(genericCert.Data[credentials.GenericScrtCert]),
    				},
    				"kubernetes://generic-mtls": {
    					Key:  string(genericMtlsCert.Data[credentials.GenericScrtKey]),
    					Cert: string(genericMtlsCert.Data[credentials.GenericScrtCert]),
    				},
    				"kubernetes://generic-mtls-cacert": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    			m.supportedSignatureAlgorithms[i] = SignatureScheme(data[0])<<8 | SignatureScheme(data[1])
    			data = data[2:]
    		}
    	}
    
    	if len(data) < 2 {
    		return false
    	}
    	casLength := uint16(data[0])<<8 | uint16(data[1])
    	data = data[2:]
    	if len(data) < int(casLength) {
    		return false
    	}
    	cas := make([]byte, casLength)
    	copy(cas, data)
    	data = data[casLength:]
    
    	m.certificateAuthorities = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		if n > 0 {
    			buf.Truncate(buf.Len() - 1) // remove trailing comma
    		}
    	case *http2DataFrame:
    		data := f.Data()
    		const max = 256
    		if len(data) > max {
    			data = data[:max]
    		}
    		fmt.Fprintf(&buf, " data=%q", data)
    		if len(f.Data()) > max {
    			fmt.Fprintf(&buf, " (%d bytes omitted)", len(f.Data())-max)
    		}
    	case *http2WindowUpdateFrame:
    		if f.StreamID == 0 {
    			buf.WriteString(" (conn)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top