Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for cpio (0.05 sec)

  1. ci/official/containers/linux_arm64/builder.packages.txt

    libxml2-dev
    libxmlsec1-dev
    llvm
    make
    openssl
    tk-dev
    wget
    xz-utils
    zlib1g-dev
    git
    
    # Packages needed to build devtoolset
    file
    flex
    g++
    make
    patch
    rpm2cpio
    unar
    wget
    xz-utils
    cpio
    gawk
    texinfo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 430 bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/mime.map

    application/wordperfect6.1     wp6              # WordPerfect Version 6.1
    application/wordperfectd       wpd              # WordPerfect
    application/x-bcpio            bcpio            #
    application/x-cpio             cpio             #
    application/x-csh              csh              # C-Shell Program
    application/x-director         dcr              # Director File
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

      rpm2cpio "devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-9.3.1-20200408.tar.xz" --strip 1
      ;;
    devtoolset-10)
      wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm"
      rpm2cpio "devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-10.2.1-20210130.tar.xz" --strip 1
      ;;
    esac
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cadvisor/util_test.go

    	}
    }
    
    func TestCrioSocket(t *testing.T) {
    	assert.True(t, strings.HasSuffix(crio.CrioSocket, CrioSocketSuffix), "CrioSocketSuffix in this package must be a suffix of the one in github.com/google/cadvisor/container/crio/client.go")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 05:08:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cadvisor/cadvisor_linux_test.go

    	"github.com/google/cadvisor/container/crio"
    	cadvisorfs "github.com/google/cadvisor/fs"
    )
    
    func TestImageFsInfoLabel(t *testing.T) {
    	testcases := []struct {
    		description     string
    		runtime         string
    		runtimeEndpoint string
    		expectedLabel   string
    		expectedError   error
    	}{{
    		description:     "LabelCrioImages should be returned",
    		runtimeEndpoint: crio.CrioSocket,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/syscall/exec_unix_test.go

    	cmd.proc.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
    	cmd.Start()
    	defer cmd.Stop()
    
    	cpid, cpgrp := cmd.Info()
    
    	if cpid == ppid {
    		t.Fatalf("Parent and child have the same process ID")
    	}
    
    	if cpgrp == ppgrp {
    		t.Fatalf("Parent and child are in the same process group")
    	}
    
    	if cpid != cpgrp {
    		t.Fatalf("Child's process group is not the child's process ID")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants_unix.go

    package constants
    
    const (
    	// CRISocketContainerd is the containerd CRI endpoint
    	CRISocketContainerd = "unix:///var/run/containerd/containerd.sock"
    	// CRISocketCRIO is the cri-o CRI endpoint
    	CRISocketCRIO = "unix:///var/run/crio/crio.sock"
    	// CRISocketDocker is the cri-dockerd CRI endpoint
    	CRISocketDocker = "unix:///var/run/cri-dockerd.sock"
    
    	// DefaultCRISocket defines the default CRI socket
    	DefaultCRISocket = CRISocketContainerd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. pkg/volume/util/device_util_linux_test.go

    	if dev != "/dev/dm-1" {
    		t.Fatalf("mpio device not found dm-1 expected got [%s]", dev)
    	}
    	dev = mockDeviceUtil.FindMultipathDeviceForDevice("/dev/disk/by-path/empty")
    	if dev != "" {
    		t.Fatalf("mpio device not found '' expected got [%s]", dev)
    	}
    }
    
    func TestFindDeviceForPath(t *testing.T) {
    	io := &mockOsIOHandler{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  9. pkg/kubelet/cadvisor/util.go

    	// Please keep this in sync with the one in:
    	// github.com/google/cadvisor/tree/master/container/crio/client.go
    	// Note that however we only match on the suffix, as /var/run is often a
    	// symlink to /run, so the user can specify either path.
    	CrioSocketSuffix = "run/crio/crio.sock"
    )
    
    // CapacityFromMachineInfo returns the capacity of the resources from the machine info.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 05:08:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/reset_test.go

    				options.NodeCRISocket:         fmt.Sprintf("%s:///var/run/crio/crio.sock", defaultURLScheme),
    			},
    			expectError: "don't specify individual checks if 'all' is used",
    		},
    		{
    			name: "pre-flights errors from CLI args",
    			flags: map[string]string{
    				options.IgnorePreflightErrors: "a,b",
    				options.NodeCRISocket:         fmt.Sprintf("%s:///var/run/crio/crio.sock", defaultURLScheme),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top