Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for FUNC (0.07 sec)

  1. cmd/metrics-v2.go

    }
    
    // RegisterRead register the metrics populator function to be used
    // to populate new values upon cache invalidation.
    func (g *MetricsGroupV2) RegisterRead(read func(context.Context) []MetricV2) {
    	g.metricsCache = cachevalue.NewFromFunc(g.cacheInterval,
    		cachevalue.Opts{ReturnLastGood: true},
    		func(ctx context.Context) ([]MetricV2, error) {
    			if g.metricsGroupOpts.dependGlobalObjectAPI {
    				objLayer := newObjectLayerFn()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    }
    
    func (o mustReplicateOptions) ReplicationStatus() (s replication.StatusType) {
    	if rs, ok := o.meta[xhttp.AmzBucketReplicationStatus]; ok {
    		return replication.StatusType(rs)
    	}
    	return s
    }
    
    func (o mustReplicateOptions) isExistingObjectReplication() bool {
    	return o.opType == replication.ExistingObjectReplicationType
    }
    
    func (o mustReplicateOptions) isMetadataReplication() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	kubelet.rootDirectory = t.TempDir()
    	kubelet.podLogsDirectory = t.TempDir()
    	kubelet.sourcesReady = config.NewSourcesReady(func(_ sets.Set[string]) bool { return true })
    	kubelet.serviceLister = testServiceLister{}
    	kubelet.serviceHasSynced = func() bool { return true }
    	kubelet.nodeHasSynced = func() bool { return true }
    	kubelet.nodeLister = testNodeLister{
    		nodes: []*v1.Node{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    	}
    	inboundFilter := func(c *cluster.Cluster) bool {
    		return strings.HasPrefix(c.Name, "inbound|")
    	}
    
    	cases := []struct {
    		name     string
    		filter   func(c *cluster.Cluster) bool
    		destRule *networking.DestinationRule
    		expected *cluster.CircuitBreakers_Thresholds
    	}{
    		{
    			name: "defaults",
    			filter: func(c *cluster.Cluster) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	useLegacyCadvisorStats bool
    }
    
    // makePodSourceConfig creates a config.PodConfig from the given
    // KubeletConfiguration or returns an error.
    func makePodSourceConfig(kubeCfg *kubeletconfiginternal.KubeletConfiguration, kubeDeps *Dependencies, nodeName types.NodeName, nodeHasSynced func() bool) (*config.PodConfig, error) {
    	manifestURLHeader := make(http.Header)
    	if len(kubeCfg.StaticPodURLHeader) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    			}
    		})
    	}
    }
    
    func newTestCluster() *clusterWrapper {
    	return newClusterWrapper(&cluster.Cluster{
    		Name: "test-cluster",
    	})
    }
    
    func newH2TestCluster() *clusterWrapper {
    	mc := newClusterWrapper(&cluster.Cluster{
    		Name: "test-cluster",
    	})
    	setH2Options(mc)
    	return mc
    }
    
    func newDownstreamTestCluster() *clusterWrapper {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    				ci.StatusCode == http.StatusPreconditionFailed || ci.StatusCode == http.StatusNotModified)
    			if okSt {
    				ci.WriteHeaders(w, func() {
    					// set common headers
    					setCommonHeaders(w)
    				}, func() {
    					okSt := (ci.StatusCode == http.StatusOK || ci.StatusCode == http.StatusPartialContent)
    					if okSt && len(ci.Data) > 0 {
    						for k, v := range ci.Metadata {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top