Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,100 for data_ (0.07 sec)

  1. staging/src/k8s.io/api/core/v1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i--
    	if m.ReadOnly {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x20
    	i = encodeVarintGenerated(dAtA, i, uint64(m.Partition))
    	i--
    	dAtA[i] = 0x18
    	i -= len(m.FSType)
    	copy(dAtA[i:], m.FSType)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.FSType)))
    	i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  2. tests/test_dependency_duplicates.py

    
    def test_sub_duplicates():
        response = client.post("/with-duplicates-sub", json={"data": "myitem"})
        assert response.status_code == 200, response.text
        assert response.json() == [
            {"data": "myitem"},
            [{"data": "myitem"}, {"data": "myitem"}],
        ]
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            Metadata(
                kind = kind.id,
                metadataVersion = metadataVersion.toArray(),
                data1 = JvmProtoBufUtil.writeData(message, stringTable),
                data2 = stringTable.strings.toTypedArray(),
                extraInt = JvmBackendExtension.Default.generateMetadataExtraFlags(JvmAbiStability.STABLE) or
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    		data = append(data[0:0], r.remaining[:n]...)
    		r.remaining = r.remaining[n:]
    		return n, io.ErrShortBuffer
    	}
    
    	// RawMessage#Unmarshal appends to data - we reset the slice down to 0 and will either see
    	// data written to data, or be larger than data and a different array.
    	m := json.RawMessage(data[:0])
    	if err := r.decoder.Decode(&m); err != nil {
    		return 0, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. 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)
  6. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.ir.txt

              GET_VAR 'featuredPodcast: data.PodcastWithExtraInfo declared in home.preview' type=data.PodcastWithExtraInfo origin=null
            VAR name:podcast type:kotlin.String [val]
              CALL 'public final fun component1 (): kotlin.String [operator] declared in data.PodcastWithExtraInfo' type=kotlin.String origin=COMPONENT_N(index=1)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/encoding/base32/base32_test.go

    	}
    }
    
    func BenchmarkEncode(b *testing.B) {
    	data := make([]byte, 8192)
    	buf := make([]byte, StdEncoding.EncodedLen(len(data)))
    	b.SetBytes(int64(len(data)))
    	for i := 0; i < b.N; i++ {
    		StdEncoding.Encode(buf, data)
    	}
    }
    
    func BenchmarkEncodeToString(b *testing.B) {
    	data := make([]byte, 8192)
    	b.SetBytes(int64(len(data)))
    	for i := 0; i < b.N; i++ {
    		StdEncoding.EncodeToString(data)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. 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)
  9. src/encoding/pem/pem.go

    // bytes) is also returned and this will always be smaller than the original
    // argument.
    func getLine(data []byte) (line, rest []byte) {
    	i := bytes.IndexByte(data, '\n')
    	var j int
    	if i < 0 {
    		i = len(data)
    		j = i
    	} else {
    		j = i + 1
    		if i > 0 && data[i-1] == '\r' {
    			i--
    		}
    	}
    	return bytes.TrimRight(data[0:i], " \t"), data[j:]
    }
    
    // removeSpacesAndTabs returns a copy of its input with all spaces and tabs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/index/suffixarray/suffixarray_test.go

    	b.ReportAllocs()
    	b.StopTimer()
    	data := benchdata
    	if random {
    		data = benchrand
    		if data[0] == 0 {
    			for i := range data {
    				data[i] = byte(rand.Intn(256))
    			}
    		}
    	}
    	b.StartTimer()
    	b.SetBytes(int64(len(data)))
    	for i := 0; i < b.N; i++ {
    		New(data)
    	}
    }
    
    func makeText(name string) ([]byte, error) {
    	var data []byte
    	switch name {
    	case "opticks":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top