Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for libcontainercgroups (0.24 sec)

  1. cmd/kubelet/app/server_linux.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    import (
    	"k8s.io/klog/v2"
    	"k8s.io/utils/inotify"
    
    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    )
    
    func watchForLockfileContention(path string, done chan struct{}) error {
    	watcher, err := inotify.NewWatcher()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 26 09:04:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/threshold_notifier_linux.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    import (
    	"fmt"
    	"sync"
    	"time"
    
    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	"golang.org/x/sys/unix"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// eventSize is the number of bytes returned by a successful read from an eventfd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top