Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for mkmeta (0.11 sec)

  1. cmd/testdata/xl.meta-v1.2.zst

    xl.meta-v1.2.zst xl.meta-v1.2.zst...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 18 20:15:22 UTC 2021
    - 56.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    	gvk.AuthorizationPolicy: func(r runtime.Object) config.Config {
    		obj := r.(*apiistioioapisecurityv1beta1.AuthorizationPolicy)
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.AuthorizationPolicy,
    				Name:              obj.Name,
    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    				Annotations:       obj.Annotations,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	defer metaDataPoolPut(buf)
    
    	if !isXL2V1Format(buf) {
    		return errFileVersionNotFound
    	}
    
    	var xlMeta xlMetaV2
    	if err = xlMeta.Load(buf); err != nil {
    		return err
    	}
    
    	if err = xlMeta.UpdateObjectVersion(fi); err != nil {
    		return err
    	}
    
    	wbuf, err := xlMeta.AppendTo(metaDataPoolGet())
    	if err != nil {
    		return err
    	}
    	defer metaDataPoolPut(wbuf)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    func decodeVersions(buf []byte, versions int, fn func(idx int, hdr, meta []byte) error) (err error) {
    	var tHdr, tMeta []byte // Zero copy bytes
    	for i := 0; i < versions; i++ {
    		tHdr, buf, err = msgp.ReadBytesZC(buf)
    		if err != nil {
    			return err
    		}
    		tMeta, buf, err = msgp.ReadBytesZC(buf)
    		if err != nil {
    			return err
    		}
    		if err = fn(i, tHdr, tMeta); err != nil {
    			if err == errDoneForNow {
    				err = nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    			expectedDrCount: 3,
    			expectedDrName:  []string{app1DestinationRule.Meta.Name, app2DestinationRule.Meta.Name, namespaceDestinationRule.Meta.Name},
    			expectedNamespacedFrom: map[string][]types.NamespacedName{
    				app1DestinationRule.Meta.Name:      {app1DestinationRule.NamespacedName(), namespaceDestinationRule.NamespacedName()},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/policy_applier_test.go

    			},
    		},
    		{
    			name: "workload vs namespace config",
    			configs: []*config.Config{
    				{
    					Meta: config.Meta{
    						Name:      "default",
    						Namespace: "my-ns",
    					},
    					Spec: &v1beta1.PeerAuthentication{},
    				},
    				{
    					Meta: config.Meta{
    						Name:      "foo",
    						Namespace: "my-ns",
    					},
    					Spec: &v1beta1.PeerAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    				},
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	configs2 = &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs3 = &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute_test.go

    			},
    			[]config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.VirtualService,
    						Name:             "acme",
    					},
    					Spec: virtualServiceSpec,
    				},
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.VirtualService,
    						Name:             "acme-duplicate",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_test.go

    		g := NewWithT(t)
    		virtualService := config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             "acme",
    			},
    			Spec: virtualServiceWithSubset,
    		}
    		cg := core.NewConfigGenTest(t, core.TestOptions{
    			Services: exampleService,
    			Configs: []config.Config{
    				virtualService,
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    	delegateVsNotExported := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "productpage-vs",
    			Namespace:        "default2",
    		},
    		Spec: &networking.VirtualService{
    			Hosts:    []string{},
    			Gateways: []string{"gateway"},
    			ExportTo: []string{"."},
    		},
    	}
    
    	mergedVs := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top