Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 354 for vendor$ (0.24 sec)

  1. src/README.vendor

    standard library in the src/vendor and src/cmd/vendor directories.
    
    There are two modules, std and cmd, defined in src/go.mod and
    src/cmd/go.mod. When a package outside std or cmd is imported
    by a package inside std or cmd, the import path is interpreted
    as if it had a "vendor/" prefix. For example, within "crypto/tls",
    an import of "golang.org/x/crypto/cryptobyte" resolves to
    "vendor/golang.org/x/crypto/cryptobyte". When a package with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/vendor.go

    encountered while loading packages.
    
    The -o flag causes vendor to create the vendor directory at the given
    path instead of "vendor". The go command can only use a vendor directory
    named "vendor" within the module root directory, so this flag is
    primarily useful for other tools.`,
    
    	Run: runVendor,
    }
    
    var vendorE bool   // if true, report errors but proceed anyway
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/vendor.go

    					// replacements for modules that did not have any packages to vendor.
    				} else {
    					vendErrorf(r.Old, "is replaced in %s, but not marked as replaced in vendor/modules.txt", base.ShortPath(replacementSource))
    				}
    			} else if vr != rNewCanonical {
    				vendErrorf(r.Old, "is replaced by %s in %s, but marked as replaced by %s in vendor/modules.txt", describe(rNew), base.ShortPath(replacementSource), describe(vr))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. hack/verify-vendor.sh

        echo "${_out}" >&2
        echo "Vendor Verify failed." >&2
        echo "If you're seeing this locally, run the below command to fix your go.mod:" >&2
        echo "hack/update-vendor.sh" >&2
        ret=1
      fi
    
      if ! _out="$(diff -Naupr -x "AUTHORS*" -x "CONTRIBUTORS*" vendor "${_kubetmp}/vendor")"; then
        echo "Your vendored results are different:" >&2
        echo "${_out}" >&2
        echo "Vendor Verify failed." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. hack/update-vendor-licenses.sh

        echo "= ${file} $(kube::util::md5 "${file}")"
      } >> "${TMP_LICENSE_FILE}"
    
      dest_dir="${TMP_LICENSES_DIR}/vendor/${PACKAGE}"
      mkdir -p "${dest_dir}"
      mv "${TMP_LICENSE_FILE}" "${dest_dir}/LICENSE"
    done
    
    # copy licenses for forked code from vendor and third_party directories
    (cd "${KUBE_ROOT}" && \
      find vendor third_party -iname 'licen[sc]e*' -o -iname 'notice*' -o -iname 'copying*' | \
      grep -E 'third_party|forked' | \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. hack/verify-vendor-licenses.sh

    # or not. We should run `hack/update-vendor-licenses.sh` and commit the results,
    # if actually updates them.
    # Usage: `hack/verify-vendor-licenses.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. hack/verify-no-vendor-cycles.sh

      exit 1
    fi
    
    kube::util::ensure-temp-dir
    
    # Get vendored packages dependencies
    # Use -deps flag to include transitive dependencies
    go list -mod=vendor -test -tags other   -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_other.json"
    go list -mod=vendor -test -tags linux   -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_linux.json"
    go list -mod=vendor -test -tags windows -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_windows.json"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/vendor_import.txt

    cmp stdout want_vendor_imports.txt
    
    -- want_vendor_imports.txt --
    vend [vend/vendor/p r]
    vend/dir1 []
    vend/hello [fmt vend/vendor/strings]
    vend/subdir [vend/vendor/p r]
    vend/x [vend/x/vendor/p vend/vendor/q vend/x/vendor/r vend/dir1 vend/vendor/vend/dir1/dir2]
    vend/x/invalid [vend/x/invalid/vendor/foo]
    vend/vendor/p []
    vend/vendor/q []
    vend/vendor/strings []
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_vendor.txt

    package subdir
    
    import _ "p"
    -- vend/vendor/p/p.go --
    package p
    -- vend/vendor/q/q.go --
    package q
    -- vend/vendor/vend/dir1/dir2/dir2.go --
    package dir2
    -- vend/x/invalid/invalid.go --
    package invalid
    
    import "vend/x/invalid/vendor/foo"
    -- vend/x/vendor/p/p/p.go --
    package p
    
    import _ "notfound"
    -- vend/x/vendor/p/p.go --
    package p
    -- vend/x/vendor/r/r.go --
    package r
    -- vend/x/x.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 703 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]printversion$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]version$'
    
    # When the version is upgraded to 1.14, 'go mod vendor' should write a
    # vendor/modules.txt with the updated 1.14 annotations.
    go mod edit -go=1.14
    go mod vendor
    cmp $WORK/modules-1.14.txt vendor/modules.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top