Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 699 for unmarshalV1 (0.24 sec)

  1. pilot/pkg/util/protoconv/protoconv.go

    	if err != nil {
    		return nil
    	}
    	return res
    }
    
    func UnmarshalAny[T any](a *anypb.Any) (*T, error) {
    	dst := any(new(T)).(proto.Message)
    	if err := a.UnmarshalTo(dst); err != nil {
    		return nil, fmt.Errorf("failed to unmarshal to %T: %v", dst, err)
    	}
    	return any(dst).(*T), nil
    }
    
    // https://github.com/planetscale/vtprotobuf#available-features
    type vtStrictMarshal interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 04:55:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/credentialprovider/config.go

    	if err = json.Unmarshal(contents, &cfg); err != nil {
    		return nil, errors.New("error occurred while trying to unmarshal json")
    	}
    	return
    }
    
    func readDockerConfigJSONFileFromBytes(contents []byte) (cfg DockerConfig, err error) {
    	var cfgJSON DockerConfigJSON
    	if err = json.Unmarshal(contents, &cfgJSON); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/encoding/json/stream.go

    	if err != nil {
    		return err
    	}
    	dec.d.init(dec.buf[dec.scanp : dec.scanp+n])
    	dec.scanp += n
    
    	// Don't save err from unmarshal into dec.err:
    	// the connection is still usable since we read a complete JSON
    	// object from it before the error happened.
    	err = dec.d.unmarshal(v)
    
    	// fixup token streaming state
    	dec.tokenValueEnd()
    
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/encoding/asn1/asn1.go

    // Unmarshal will default to a PrintableString, which doesn't support
    // characters such as '@' and '&'. To force other encodings, use the following
    // tags:
    //
    //	ia5     causes strings to be unmarshaled as ASN.1 IA5String values
    //	numeric causes strings to be unmarshaled as ASN.1 NumericString values
    //	utf8    causes strings to be unmarshaled as ASN.1 UTF8String values
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/nds_test.go

    				Node: &core.Node{
    					Id:       ads.ID,
    					Metadata: tt.meta.ToStruct(),
    				},
    			})
    
    			nt := &dnsProto.NameTable{}
    			err := res.Resources[0].UnmarshalTo(nt)
    			if err != nil {
    				t.Fatal("Failed to unmarshal name table", err)
    				return
    			}
    			if len(nt.Table) == 0 {
    				t.Fatalf("expected more than 0 entries in name table")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    	if err := runtime.DecodeInto(s, buf.Bytes(), &poutput); err != nil {
    		t.Fatal(err)
    	}
    	if !reflect.DeepEqual(testData, poutput) {
    		t.Errorf("Test data and unmarshaled data are not equal: %v", cmp.Diff(poutput, testData))
    	}
    
    	obj := &v1.Pod{
    		TypeMeta:   metav1.TypeMeta{APIVersion: "v1", Kind: "Pod"},
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ecds_test.go

    			gotSecrets := sets.String{}
    			for _, res := range resources {
    				gotExtensions.Insert(res.Name)
    				ec := &core.TypedExtensionConfig{}
    				res.Resource.UnmarshalTo(ec)
    				wasm := &wasm.Wasm{}
    				ec.TypedConfig.UnmarshalTo(wasm)
    				gotsecret := wasm.GetConfig().GetVmConfig().GetEnvironmentVariables().GetKeyValues()[model.WasmSecretEnv]
    				if gotsecret != "" {
    					gotSecrets.Insert(gotsecret)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. cmd/batch-expire.go

    type BatchJobExpirePurge struct {
    	line, col      int
    	RetainVersions int `yaml:"retainVersions" json:"retainVersions"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobExpirePurge{}
    
    // UnmarshalYAML - BatchJobExpirePurge extends unmarshal to extract line, col
    func (p *BatchJobExpirePurge) UnmarshalYAML(val *yaml.Node) error {
    	type purge BatchJobExpirePurge
    	var tmp purge
    	err := val.Decode(&tmp)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/status.go

    	for _, dr := range drs {
    		for _, resource := range dr.Resources {
    			clientConfig := xdsstatus.ClientConfig{}
    			err := resource.UnmarshalTo(&clientConfig)
    			if err != nil {
    				return nil, nil, fmt.Errorf("could not unmarshal ClientConfig: %w", err)
    			}
    			meta, err := model.ParseMetadata(clientConfig.GetNode().GetMetadata())
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. cmd/xl-storage-format_test.go

    }
    
    // Tests the correctness of constructing XLMetaV1 using jsoniter lib.
    // The result will be compared with the result obtained from json.unMarshal of the byte data.
    func TestGetXLMetaV1Jsoniter1(t *testing.T) {
    	xlMetaJSON := getXLMetaBytes(1)
    
    	var unMarshalXLMeta xlMetaV1Object
    	if err := json.Unmarshal(xlMetaJSON, &unMarshalXLMeta); err != nil {
    		t.Errorf("Unmarshalling failed: %v", err)
    	}
    
    	var jsoniterXLMeta xlMetaV1Object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top