Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 188 for unmarshaler (1.73 sec)

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

    func (*CronJob) ProtoMessage() {}
    func (*CronJob) Descriptor() ([]byte, []int) {
    	return fileDescriptor_79228dc2c4001a22, []int{0}
    }
    func (m *CronJob) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CronJob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.pb.go

    func (*ServerStorageVersion) Descriptor() ([]byte, []int) {
    	return fileDescriptor_126bcbf538b54729, []int{0}
    }
    func (m *ServerStorageVersion) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ServerStorageVersion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/coordination/v1/generated.pb.go

    func (*Lease) ProtoMessage() {}
    func (*Lease) Descriptor() ([]byte, []int) {
    	return fileDescriptor_239d5a4df3139dce, []int{0}
    }
    func (m *Lease) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *Lease) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1beta1/generated.pb.go

    func (*Lease) ProtoMessage() {}
    func (*Lease) Descriptor() ([]byte, []int) {
    	return fileDescriptor_8d4e223b8bb23da3, []int{0}
    }
    func (m *Lease) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *Lease) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/accesslog_test.go

    				for _, fc := range l.FilterChains {
    					for _, filter := range fc.Filters {
    						switch filter.Name {
    						case wellknown.TCPProxy:
    							tcpConfig := &tcp.TcpProxy{}
    							if err := filter.GetTypedConfig().UnmarshalTo(tcpConfig); err != nil {
    								t.Fatal(err)
    							}
    							if tcpConfig.GetCluster() == util.BlackHoleCluster {
    								// Ignore the tcp_proxy filter with black hole cluster that just doesn't have access log.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    func (*APIGroup) ProtoMessage() {}
    func (*APIGroup) Descriptor() ([]byte, []int) {
    	return fileDescriptor_a8431b6e0aeeb761, []int{0}
    }
    func (m *APIGroup) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *APIGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_delta_test.go

    	}
    	gotEcdsConfig := &core.TypedExtensionConfig{}
    	if err := gotResp.Resources[0].Resource.UnmarshalTo(gotEcdsConfig); err != nil {
    		t.Fatalf("wasm config conversion output %v failed to unmarshal", gotResp.Resources[0])
    	}
    	assert.Equal(t, gotResp.Resources[0].Name, "extension-config")
    	wasm := &wasm.Wasm{
    		Config: &wasmv3.PluginConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. cmd/xl-storage-format-v1.go

    		Hash:      hex.EncodeToString(c.Hash),
    	}
    	return json.Marshal(info)
    }
    
    // UnmarshalJSON - custom checksum info unmarshaller
    func (c *ChecksumInfo) UnmarshalJSON(data []byte) error {
    	var info checksumInfoJSON
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if err := json.Unmarshal(data, &info); err != nil {
    		return err
    	}
    	sum, err := hex.DecodeString(info.Hash)
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/net/lookup.go

    			break
    		}
    		if err != nil {
    			return "", nil, &DNSError{
    				Err:    "cannot unmarshal DNS message",
    				Name:   name,
    				Server: server,
    			}
    		}
    		if h.Type != dnsmessage.TypeSRV {
    			if err := p.SkipAnswer(); err != nil {
    				return "", nil, &DNSError{
    					Err:    "cannot unmarshal DNS message",
    					Name:   name,
    					Server: server,
    				}
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top