Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,084 for mkmeta (0.08 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go

    Jefftree <******@****.***> 1694814790 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. buildscripts/cicd-corpus/disk2/bucket/testobj/xl.meta

    Harshavardhana <******@****.***> 1650484145 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 20 19:49:05 UTC 2022
    - 531 bytes
    - Viewed (0)
  3. buildscripts/cicd-corpus/disk5/bucket/testobj/xl.meta

    Harshavardhana <******@****.***> 1650484145 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 20 19:49:05 UTC 2022
    - 531 bytes
    - Viewed (0)
  4. cmd/format-meta.go

    Harshavardhana <******@****.***> 1618774873 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. docs/debugging/inspect/export.go

    func decodeVersions(buf []byte, versions int, fn func(idx int, hdr, meta []byte) error) (e error) {
    	var tHdr, tMeta []byte // Zero copy bytes
    	for i := 0; i < versions; i++ {
    		tHdr, buf, e = msgp.ReadBytesZC(buf)
    		if e != nil {
    			return e
    		}
    		tMeta, buf, e = msgp.ReadBytesZC(buf)
    		if e != nil {
    			return e
    		}
    		if e = fn(i, tHdr, tMeta); e != nil {
    			return e
    		}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  6. hack/verify-staging-meta-files.sh

    # limitations under the License.
    
    # This script checks whether the expected metadata files (such as OWNERS and
    # LICENSE) exist under the `staging/src/k8s.io/*` directories.
    # Usage: `hack/verify-staging-meta-files.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    expected_filenames=(
      .github/PULL_REQUEST_TEMPLATE.md
      code-of-conduct.md
      LICENSE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. pkg/test/framework/config/map.go

    func (m Map) Slice(key string) []Map {
    	v, ok := m[key].([]any)
    	if !ok {
    		return nil
    	}
    	var out []Map
    	for i, imeta := range v {
    		meta, ok := toMap(imeta)
    		if !ok {
    			scopes.Framework.Warnf("failed to parse item %d of %s, defaulting to empty: %v", i, key, imeta)
    			return nil
    		}
    		out = append(out, meta)
    	}
    	return out
    }
    
    func toMap(orig any) (Map, bool) {
    	// keys are strings, easily cast
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    	{{- if and (not .Resource.Synthetic) }}
    	gvk.{{.Resource.Identifier}}: func(r runtime.Object) config.Config {
    		obj := r.(*{{ .IstioAwareClientImport }}.{{.Resource.Kind}})
    		return config.Config{
    		  Meta: config.Meta{
    		  	GroupVersionKind:  gvk.{{.Resource.Identifier}},
    		  	Name:              obj.Name,
    		  	Namespace:         obj.Namespace,
    		  	Labels:            obj.Labels,
    		  	Annotations:       obj.Annotations,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. cmd/xl-storage-meta-inline.go

    Anis Eleuch <******@****.***> 1712232280 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. pkg/api/persistentvolume/util.go

    	}
    	return warningsForPersistentVolumeSpecAndMeta(nil, &pv.Spec, &pv.ObjectMeta)
    }
    
    func warningsForPersistentVolumeSpecAndMeta(fieldPath *field.Path, pvSpec *api.PersistentVolumeSpec, pvMeta *metav1.ObjectMeta) []string {
    	var warnings []string
    
    	if _, ok := pvMeta.Annotations[api.BetaStorageClassAnnotation]; ok {
    		warnings = append(warnings,
    			fmt.Sprintf(
    				"%s: %s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 09:50:37 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top