Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 423 for mkmeta (0.1 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/generated.proto

      optional string status = 2;
    
      // The last time this condition was updated.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
    
      // Last time the condition transitioned from one status to another.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
    
      // The reason for the condition's last transition.
      optional string reason = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/bench_test.go

    				Network:        fmt.Sprintf("network-%d", e%numNetworks),
    				ServiceAccount: "something",
    			})
    		}
    		result = append(result, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.ServiceEntry,
    				Name:              "foo-" + strconv.Itoa(s),
    				Namespace:         "default",
    				CreationTimestamp: time.Now(),
    			},
    			Spec: &networking.ServiceEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    // Reach into meta class to avoid lookup
                    try {
                        return (MetaMethod) MISSING_PROPERTY_GET_METHOD.get(metaClass);
                    } catch (IllegalAccessException e) {
                        throw UncheckedException.throwAsUncheckedException(e);
                    }
                }
    
                // Query the declared methods of the meta class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    // if there is no namespace provided in the label the default namespace will be used
    // defaultNamespace avoids the need to infer when object meta from a namespace was given
    func getUseWaypoint(meta metav1.ObjectMeta, defaultNamespace string) (named *krt.Named, isNone bool) {
    	if labelValue, ok := meta.Labels[constants.AmbientUseWaypointLabel]; ok {
    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle.go

    	meta := make(map[string]string)
    	sc := rreq.OutputLocation.S3.StorageClass
    	if sc == "" {
    		sc = objInfo.StorageClass
    	}
    	meta[strings.ToLower(xhttp.AmzStorageClass)] = sc
    
    	if rreq.Type == SelectRestoreRequest {
    		for _, v := range rreq.OutputLocation.S3.UserMetadata {
    			if !stringsHasPrefixFold(v.Name, "x-amz-meta") {
    				meta["x-amz-meta-"+v.Name] = v.Value
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/controller.go

    	// TODO: we could be smarter here and only trigger when real changes were found
    	for _, f := range c.virtualServiceHandlers {
    		f(config.Config{Meta: vsmetadata}, config.Config{Meta: vsmetadata}, event)
    	}
    	for _, f := range c.gatewayHandlers {
    		f(config.Config{Meta: gatewaymetadata}, config.Config{Meta: gatewaymetadata}, event)
    	}
    
    	return nil
    }
    
    func (c *controller) onServiceEvent(input any) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. cmd/erasure-healing.go

    		return true, erErr
    	}
    	if erErr == nil {
    		if meta.XLV1 {
    			// Legacy means heal always
    			// always check first.
    			return true, errLegacyXLMeta
    		}
    		if !latestMeta.Equals(meta) {
    			return true, errOutdatedXLMeta
    		}
    		if !meta.Deleted && !meta.IsRemote() {
    			// If xl.meta was read fine but there may be problem with the part.N files.
    			for _, partErr := range partsErrs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/proxy_dependencies_test.go

    				Hostname: jwksSvc,
    				Attributes: model.ServiceAttributes{
    					ExportTo:  sets.New(visibility.Public),
    					Namespace: nsName,
    				},
    			},
    		},
    		Configs: []config.Config{
    			{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             svcName,
    					Namespace:        nsName,
    				},
    				Spec: &networking.VirtualService{
    					Hosts:    []string{"*"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// Do not remove
    	var meta *model.EndpointMetadata
    	if features.CanonicalServiceForMeshExternalServiceEntry && b.service.MeshExternal {
    		svcLabels := b.service.Attributes.Labels
    		if _, ok := svcLabels[model.IstioCanonicalServiceLabelName]; ok {
    			meta = e.MetadataClone()
    			if meta.Labels == nil {
    				meta.Labels = make(map[string]string)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top