Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for dAtA (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.pb.go

    	i--
    	dAtA[i] = 0x22
    	i -= len(m.Format)
    	copy(dAtA[i:], m.Format)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Format)))
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 244.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    	i--
    	dAtA[i] = 0x22
    	i -= len(m.Format)
    	copy(dAtA[i:], m.Format)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Format)))
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Status)
    	copy(dAtA[i:], m.Status)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Status)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type)))
    	i--
    	dAtA[i] = 0xa
    	return len(dAtA) - i, nil
    }
    
    func (m *DaemonSetList) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    	}
    	i--
    	dAtA[i] = 0xa
    	return len(dAtA) - i, nil
    }
    
    func (m *DriverRequests) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *DriverRequests) MarshalTo(dAtA []byte) (int, error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    	copy(dAtA[i:], m.Kind)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Kind)))
    	i--
    	dAtA[i] = 0x1a
    	i--
    	if m.Namespaced {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x10
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    	return len(dAtA) - i, 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)
  6. 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)
  7. pkg/apis/core/types.go

    	Immutable *bool
    
    	// Data contains the secret data. Each key must consist of alphanumeric
    	// characters, '-', '_' or '.'. The serialized form of the secret data is a
    	// base64 encoded string, representing the arbitrary (possibly non-string)
    	// data value here.
    	// +optional
    	Data map[string][]byte `datapolicy:"password,security-key,token"`
    
    	// Used to facilitate programmatic handling of secret data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // base64 encoded string, representing the arbitrary (possibly non-string)
      // data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
      // +optional
      map<string, bytes> data = 2;
    
      // stringData allows specifying non-binary secret data in string form.
      // It is provided as a write-only input field for convenience.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"data":       "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// base64 encoded string, representing the arbitrary (possibly non-string)
    	// data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
    	// +optional
    	Data map[string][]byte `json:"data,omitempty" protobuf:"bytes,2,rep,name=data"`
    
    	// stringData allows specifying non-binary secret data in string form.
    	// It is provided as a write-only input field for convenience.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top