Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 111 for statx (0.08 sec)

  1. cmd/admin-handlers.go

    		return []madmin.KMS{}
    	}
    
    	stat, err := GlobalKMS.Status(ctx)
    	if err != nil {
    		kmsLogIf(ctx, err, "failed to fetch KMS status information")
    		return []madmin.KMS{}
    	}
    
    	stats := make([]madmin.KMS, 0, len(stat.Endpoints))
    	for endpoint, state := range stat.Endpoints {
    		stats = append(stats, madmin.KMS{
    			Status:   string(state),
    			Endpoint: endpoint,
    		})
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    			// reduce disk pressure
    			fakeClock.Step(1 * time.Minute)
    			summaryProvider.result = summaryStatsMaker(diskStatConst)
    			diskGC.imageGCInvoked = false     // reset state
    			diskGC.containerGCInvoked = false // reset state
    			podKiller.pod = nil               // reset state
    			_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    			if err != nil {
    				t.Fatalf("Manager should not have an error %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    	}, nil)
    	stats := map[*v1.Pod]statsapi.PodStats{
    		below:   newPodMemoryStats(below, resource.MustParse("199Mi")),   // -1 relative to request
    		exceeds: newPodMemoryStats(exceeds, resource.MustParse("101Mi")), // 1 relative to request
    	}
    	statsFn := func(pod *v1.Pod) (statsapi.PodStats, bool) {
    		result, found := stats[pod]
    		return result, found
    	}
    	pods := []*v1.Pod{below, exceeds}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    				Status: api.PodStatus{
    					Phase: "podPhase",
    					ContainerStatuses: []api.ContainerStatus{
    						{Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
    						{State: api.ContainerState{Waiting: &api.ContainerStateWaiting{Reason: "ContainerWaitingReason"}}, RestartCount: 3},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Update actual state of world with the devicePath again, if devicePath has changed from markedDevicePath
    		// TODO: This can be improved after #82492 is merged and ASW has state.
    		if markedDevicePath != devicePath {
    			markDeviceMappedErr := actualStateOfWorld.MarkDeviceAsMounted(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	releasem(mp)
    }
    
    // templateThread is a thread in a known-good state that exists solely
    // to start new threads in known-good states when the calling thread
    // may not be in a good state.
    //
    // Many programs never need this, so templateThread is started lazily
    // when we first enter a state that might lead to running on a thread
    // in an unknown state.
    //
    // templateThread runs on an M without a P, so it must not have write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	db := newTestDB(t, "people")
    	stats := db.Stats()
    	if got := stats.OpenConnections; got != 1 {
    		t.Errorf("stats.OpenConnections = %d; want 1", got)
    	}
    
    	tx, err := db.Begin()
    	if err != nil {
    		t.Fatal(err)
    	}
    	tx.Commit()
    
    	closeDB(t, db)
    	stats = db.Stats()
    	if got := stats.OpenConnections; got != 0 {
    		t.Errorf("stats.OpenConnections = %d; want 0", got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Waiting: &v1.ContainerStateWaiting{Reason: reason},
    		},
    	}
    }
    func waitingStateWithLastTermination(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Waiting: &v1.ContainerStateWaiting{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    				}
    			}
    			if container.State.Waiting != nil && container.State.Waiting.Reason != "" {
    				reason = container.State.Waiting.Reason
    			} else if container.State.Terminated != nil && container.State.Terminated.Reason != "" {
    				reason = container.State.Terminated.Reason
    			} else if container.State.Terminated != nil && container.State.Terminated.Reason == "" {
    				if container.State.Terminated.Signal != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/popper.min.js.map

    */\nexport default function removeEventListeners(reference, state) {\n  // Remove resize event listener on window\n  getWindow(reference).removeEventListener('resize', state.updateBound);\n\n  // Remove scroll event listener on scroll parents\n  state.scrollParents.forEach(target => {\n    target.removeEventListener('scroll', state.updateBound);\n  });\n\n  // Reset state\n  state.updateBound = null;\n  state.scrollParents = [];\n  state.scrollElement = null;\n  state.eventsEnabled = false;\n  return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top