Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fstatfs (0.21 sec)

  1. pkg/kubelet/kubelet_pods.go

    		}
    		status := convertContainerStatus(cStatus, oldStatusPtr)
    		if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    			if status.State.Running != nil {
    				status.Resources = convertContainerStatusResources(cName, status, cStatus, oldStatuses)
    			}
    		}
    		if utilfeature.DefaultFeatureGate.Enabled(features.SupplementalGroupsPolicy) {
    			status.User = convertContainerStatusUser(cStatus)
    		}
    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/eviction/helpers_test.go

    		},
    		VolumeStats: []statsapi.VolumeStats{
    			{
    				FsStats: statsapi.FsStats{
    					UsedBytes: &workingSetBytes,
    				},
    				Name: "local-volume",
    			},
    		},
    		Containers: []statsapi.ContainerStats{
    			{
    				Name: pod.Name,
    				Logs: &statsapi.FsStats{
    					UsedBytes: &workingSetBytes,
    				},
    				Rootfs: &statsapi.FsStats{UsedBytes: &workingSetBytes},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    		optsMap["versioningEnabled"] = "true"
    		opts.VersioningEnabled = true
    		opts.CreatedAt = bStatus.CreatedAt
    		optsMap["createdAt"] = bStatus.CreatedAt.UTC().Format(time.RFC3339Nano)
    
    		if bStatus.ObjectLockConfig != nil {
    			config, err := base64.StdEncoding.DecodeString(*bStatus.ObjectLockConfig)
    			if err != nil {
    				return err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    						Type:    "DisruptionTarget",
    						Status:  "True",
    						Reason:  "TerminationByKubelet",
    						Message: "The node was low on resource: memory. Threshold quantity: 2Gi, available: 1500Mi. ",
    					})
    				}
    
    				// verify the pod status after applying the status update function
    				podKiller.statusFn(&podKiller.pod.Status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    func checkPodStatus(t *testing.T, kl *Kubelet, pod *v1.Pod, phase v1.PodPhase) {
    	t.Helper()
    	status, found := kl.statusManager.GetPodStatus(pod.UID)
    	require.True(t, found, "Status of pod %q is not found in the status map", pod.UID)
    	require.Equal(t, phase, status.Phase)
    }
    
    // Tests that we handle port conflicts correctly by setting the failed status in status map.
    func TestHandlePortConflicts(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// statusManager receives updated pod status updates from the podWorker and updates the API
    	// status of those pods to match. The statusManager is authoritative for the synthesized
    	// status of the pod from the kubelet's perspective (other components own the individual
    	// elements of status) and should be consulted by components in preference to assembling
    	// that status themselves. Note that the status manager is downstream of the pod worker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CRYPTO_REPORT_MAXSIZE                       = 0x160
    	CS5                                         = 0x0
    	CSIGNAL                                     = 0xff
    	CSTART                                      = 0x11
    	CSTATUS                                     = 0x0
    	CSTOP                                       = 0x13
    	CSUSP                                       = 0x1a
    	DAXFS_MAGIC                                 = 0x64646178
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top