Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for cpio (0.08 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. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-chat",
    				"application/x-chess-pgn",
    				"application/x-chrome-package",
    				"application/x-compress",
    				"application/x-corelpresentations",
    				"application/x-cpio",
    				"application/x-csh",
    				"application/x-debian-package",
    				"application/x-dex",
    				"application/x-director",
    				"application/x-doom",
    				"application/x-dtbncx+xml",
    				"application/x-dtbook+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-corelpresentations">
        <glob pattern="*.shw"/>
        <sub-class-of type="application/x-tika-msoffice"/>
      </mime-type>
    
      <mime-type type="application/x-cpio">
        <_comment>UNIX CPIO Archive</_comment>
        <magic priority="50">
          <match value="070707" type="little16" offset="0"/>
          <match value="070707" type="big16" offset="0"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top