Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for lost (0.21 sec)

  1. pkg/kubelet/kubelet_pods.go

    	}, nil
    }
    
    // ensureHostsFile ensures that the given host file has an up-to-date ip, host
    // name, and domain name.
    func ensureHostsFile(fileName string, hostIPs []string, hostName, hostDomainName string, hostAliases []v1.HostAlias, useHostNetwork bool) error {
    	var hostsFileContent []byte
    	var err error
    
    	if useHostNetwork {
    		// if Pod is using host network, read hosts file from the node's filesystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	if err != nil {
    		return nil, err
    	}
    	klet.admitHandlers.AddPodAdmitHandler(shutdownAdmitHandler)
    
    	// Finally, put the most recent version of the config on the Kubelet, so
    	// people can see how it was configured.
    	klet.kubeletConfiguration = *kubeCfg
    
    	// Generating the status funcs should be the last thing we do,
    	// since this relies on the rest of the Kubelet having been constructed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	ReplicaStatus = "replica-status"
    	// ReplicaTimestamp - the last time a replica was received by this cluster for this object version
    	ReplicaTimestamp = "replica-timestamp"
    	// TaggingTimestamp - the last time a tag metadata modification happened on this cluster for this object version
    	TaggingTimestamp = "tagging-timestamp"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    	otags := &objectTagging{
    		TagSet: &ObjectTagSet{},
    	}
    
    	var list []tags.Tag
    	for k, v := range ot.ToMap() {
    		list = append(list, tags.Tag{
    			Key:   k,
    			Value: v,
    		})
    	}
    	// Always return in sorted order for tags.
    	sort.Slice(list, func(i, j int) bool {
    		return list[i].Key < list[j].Key
    	})
    	otags.TagSet.Tags = list
    
    	writeSuccessResponseXML(w, encodeResponse(otags))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    			Protocol: protocol.Unsupported,
    		},
    	}
    	service := &model.Service{
    		Hostname:   host.Name("foo.default.svc.cluster.local"),
    		Ports:      servicePort,
    		Resolution: model.ClientSideLB,
    		Attributes: model.ServiceAttributes{
    			Namespace: TestServiceNamespace,
    		},
    	}
    	http2Service := &model.Service{
    		Hostname:   host.Name("foo.default.svc.cluster.local"),
    		Ports:      http2ServicePort,
    		Resolution: model.ClientSideLB,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			destrule: &networking.DestinationRule{
    				Host: "*.example.org",
    			},
    			want: map[string]*networking.ConnectionPoolSettings{
    				"outbound|8080||*.example.org": nil,
    				"inbound|10001||":              nil,
    				"inbound|10002||":              nil,
    			},
    		},
    		"destination rule settings no sidecar": {
    			destrule: &networking.DestinationRule{
    				Host: "*.example.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		Type:      gaugeMetric,
    	}
    }
    
    func getRepFailedOperationsLastMinuteMD(namespace MetricNamespace) MetricDescription {
    	return MetricDescription{
    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      lastMinFailedCount,
    		Help:      "Total number of objects which failed replication in the last full minute",
    		Type:      gaugeMetric,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    		pod.Spec.InitContainers = nil
    	}
    }
    
    // testPodAdmitHandler is a lifecycle.PodAdmitHandler for testing.
    type testPodAdmitHandler struct {
    	// list of pods to reject.
    	podsToReject []*v1.Pod
    }
    
    // Admit rejects all pods in the podsToReject list with a matching UID.
    func (a *testPodAdmitHandler) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	for _, podToReject := range a.podsToReject {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top