Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,019 for dev2 (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            def selector2 = selector(11, "org", "dep2", "2.0")
            root.outgoingEdges >> [
                dep(selector1, 1, new RuntimeException()),
                dep(selector2, 1, 3)
            ]
            def dep2 = node(3, "org", "dep2", "2.0")
            def selector3 = selector(12, "org", "dep1", "5.0")
            dep2.outgoingEdges >> [dep(selector3, 3, new RuntimeException())]
    
            builder.start(root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. hack/verify-publishing-bot.py

                if "dependencies" in branch:
                    for dep2 in branch["dependencies"]:
                        processed_deps.append(dep2["repository"])
                        if dep2["branch"] != "master":
                            raise Exception("Looking for master branch and found : %s for destination", dep2,
                                            rule["destination"])
                        if dep2["repository"] == dep:
                            found = True
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. docs/pt/docs/tutorial/handling-errors.md

    Contudo, o cliente ou usuário não terão acesso a ele. Ao contrário, o cliente receberá um "Internal Server Error" com o HTTP status code `500`.
    
    E assim deve ser porque seria um bug no seu código ter o `ValidationError` do Pydantic na sua *response*, ou em qualquer outro lugar do seu código (que não na requisição do cliente).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top