Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,043 for dev3 (0.1 sec)

  1. pkg/volume/util/device_util_linux_test.go

    	}
    	return nil, errors.New("not Implemented for Mock")
    }
    
    func (handler *mockOsIOHandler) EvalSymlinks(path string) (string, error) {
    	links := map[string]string{
    		"/returns/a/dev":   "/dev/sde",
    		"/returns/non/dev": "/sys/block",
    		"/dev/disk/by-path/127.0.0.1:3260-eui.02004567A425678D-lun-0": "/dev/sda",
    		"/dev/disk/by-path/127.0.0.3:3260-eui.03004567A425678D-lun-0": "/dev/sdb",
    		"/dev/dm-2": "/dev/dm-2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/dev_openbsd.go

    package unix
    
    // Major returns the major component of an OpenBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev & 0x0000ff00) >> 8)
    }
    
    // Minor returns the minor component of an OpenBSD device number.
    func Minor(dev uint64) uint32 {
    	minor := uint32((dev & 0x000000ff) >> 0)
    	minor |= uint32((dev & 0xffff0000) >> 8)
    	return minor
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 918 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func_test.go

    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `example%2ecom.Bar[sync/atomic.Uint64]`,
    			pkg: `example%2ecom`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `gopkg.in/yaml%2ev3.Bar[sync/atomic.Uint64]`,
    			pkg: `gopkg.in/yaml%2ev3`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			// This one is a real symbol name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.packages.txt

    # See https://github.com/pyenv/pyenv/wiki#suggested-build-environment
    build-essential
    curl
    libbz2-dev
    libffi-dev
    liblzma-dev
    libncurses5-dev
    libreadline-dev
    libsqlite3-dev
    libssl-dev
    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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 430 bytes
    - Viewed (0)
  5. pkg/volume/fc/fc_util_test.go

    	switch path {
    	case "/dev/disk/by-path/pci-0000:41:00.0-fc-0x500a0981891b8dc5-lun-0":
    		return "/dev/sda", nil
    	case "/dev/disk/by-path/pci-0000:41:00.0-fc-0x500a0981891b8dc5-lun-1":
    		return "/dev/sdb", nil
    	case "/dev/disk/by-path/fc-0x5005076810213b32-lun-2":
    		return "/dev/sdc", nil
    	case "/dev/disk/by-path/pci-0000:41:00.0-fc-0x500a0981891b8dc5-lun-12":
    		return "/dev/sdl", nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 08:36:01 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/link.txt

    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    
    -- text --
    The Go home page is https://go.dev/. It used to be https://golang.org.
    
    -- markdown --
    The Go home page is [https://go.dev/](https://go.dev/). It used to be [https://golang.org](https://golang.org).
    
    -- html --
    <p>The Go home page is <a href="https://go.dev/">https://go.dev/</a>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 527 bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.packages.txt

    clang-format-12
    lld-17
    colordiff
    curl
    ffmpeg
    gdb
    git
    jq
    less
    libcurl3-dev
    libcurl4-openssl-dev
    libfreetype6-dev
    libhdf5-serial-dev
    libomp-17-dev
    libssl-dev
    libtool
    libxml2-dev
    libxslt1-dev
    libzmq3-dev
    mlocate
    moreutils
    openjdk-11-jdk
    openjdk-11-jre-headless
    openssl
    patchelf
    pkg-config
    python3-dev
    python3-setuptools
    rsync
    software-properties-common
    sudo
    swig
    unzip
    vim
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 485 bytes
    - Viewed (0)
  8. src/archive/tar/stat_unix.go

    			major := uint32((dev & 0x00000000000fff00) >> 8)
    			major |= uint32((dev & 0xfffff00000000000) >> 32)
    			minor := uint32((dev & 0x00000000000000ff) >> 0)
    			minor |= uint32((dev & 0x00000ffffff00000) >> 12)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "darwin", "ios":
    			// Copied from golang.org/x/sys/unix/dev_darwin.go.
    			major := uint32((dev >> 24) & 0xff)
    			minor := uint32(dev & 0xffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/linklist3.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go]
      - Bar
    
    [Go]: https://go.dev/
    -- text --
    Cool things:
    
      - Foo
      - Go
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
      - [Go](https://go.dev/)
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li>Foo
    <li><a href="https://go.dev/">Go</a>
    <li>Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 349 bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/link2.txt

    link.
    
    -- markdown --
    The Go home page is [https://go.dev/](https://go.dev/). It used to be [https://golang.org](https://golang.org). https:// is not a link. Nor is https:// https://☺ is not a link. https://:80 is not a link.
    
    -- html --
    <p>The Go home page is <a href="https://go.dev/">https://go.dev/</a>.
    It used to be <a href="https://golang.org">https://golang.org</a>.
    https:// is not a link.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
Back to top