Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,684 for Meta (0.24 sec)

  1. src/internal/coverage/rtcov/rtcov.go

    	slot := len(Meta.List)
    	Meta.List = append(Meta.List, CovMetaBlob{
    		P:                  (*byte)(p),
    		Len:                dlen,
    		Hash:               hash,
    		PkgPath:            pkgpath,
    		PkgID:              pkgid,
    		CounterMode:        cmode,
    		CounterGranularity: cgran,
    	})
    	if pkgid != -1 {
    		if Meta.PkgMap == nil {
    			Meta.PkgMap = make(map[int]int)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    	return ret
    }
    
    func getStatsOptions(meta *model.BootstrapNodeMetadata) []option.Instance {
    	nodeIPs := meta.InstanceIPs
    	config := meta.ProxyConfig
    
    	tagAnno := meta.Annotations[annotation.SidecarExtraStatTags.Name]
    	prefixAnno := meta.Annotations[annotation.SidecarStatsInclusionPrefixes.Name]
    	RegexAnno := meta.Annotations[annotation.SidecarStatsInclusionRegexps.Name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    					},
    				},
    			},
    		},
    	}
    	virtualService := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "virtual-service",
    			Namespace:        "default",
    		},
    		Spec: virtualServiceSpec,
    	}
    	virtualServiceCaseInsensitive := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. src/cmd/covdata/metamerge.go

    // meta-data file builder; we emit a single meta-data file at the end
    // of the run.
    //
    // In the -pkg case, we will typically emit a single meta-data file
    // per input pod, where that new meta-data file contains entries for
    // just the selected packages.
    //
    // In the third case (vanilla merge with no combining or package
    // selection) we can carry over meta-data files without touching them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/emit.go

    // existing meta-data file already exists in the output directory. In
    // this case openOutputFiles() below will leave the 'mf' field below
    // as nil. If a new meta-data file is needed, field 'mfname' will be
    // the final desired path of the meta file, 'mftmp' will be a
    // temporary file, and 'mf' will be an open os.File pointer for
    // 'mftmp'. The meta-data file payload will be written to 'mf', the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	}
    }
    
    func NamespaceKeyFunc(prefix string, obj runtime.Object) (string, error) {
    	meta, err := meta.Accessor(obj)
    	if err != nil {
    		return "", err
    	}
    	name := meta.GetName()
    	if msgs := path.IsValidPathSegmentName(name); len(msgs) != 0 {
    		return "", fmt.Errorf("invalid name: %v", msgs)
    	}
    	return prefix + "/" + meta.GetNamespace() + "/" + name, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/config/schema/metadata.yaml

        statusProto: "istio.meta.v1alpha1.IstioStatus"
        statusProtoPackage: "istio.io/api/meta/v1alpha1"
    
      - kind: "WorkloadEntry"
        plural: "workloadentries"
        group: "networking.istio.io"
        version: "v1alpha3"
        versionAliases:
          - "v1beta1"
          - "v1"
        proto: "istio.networking.v1alpha3.WorkloadEntry"
        protoPackage: "istio.io/api/networking/v1alpha3"
        statusProto: "istio.meta.v1alpha1.IstioStatus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test"
    )
    
    var (
    	GlobalTime = time.Now()
    	httpNone   = &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.ServiceEntry,
    			Name:              "httpNone",
    			Namespace:         "httpNone",
    			Domain:            "svc.cluster.local",
    			CreationTimestamp: GlobalTime,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/convert_test.go

    	tests := []struct {
    		desc         string
    		tls          *networkingAPI.ClientTLSSettings
    		sni          string
    		meta         *model.BootstrapNodeMetadata
    		expectTLSCtx string
    	}{
    		{
    			desc:         "no-tls",
    			tls:          &networkingAPI.ClientTLSSettings{},
    			sni:          "",
    			meta:         &model.BootstrapNodeMetadata{},
    			expectTLSCtx: "null",
    		},
    		{
    			desc: "tls-simple-no-cert",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. cmd/handler-utils_test.go

    		{
    			header: http.Header{
    				"X-Amz-Meta-Appid":   []string{"amz-meta"},
    				"X-Minio-Meta-Appid": []string{"minio-meta"},
    			},
    			metadata: map[string]string{
    				"X-Amz-Meta-Appid":   "amz-meta",
    				"X-Minio-Meta-Appid": "minio-meta",
    			},
    			shouldFail: false,
    		},
    		// Fail if header key is not in canonicalized form
    		{
    			header: http.Header{
    				"x-amz-meta-appid": []string{"amz-meta"},
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top