Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 605 for vendor$ (0.13 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/modcmd/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.
    
    See https://golang.org/ref/mod#go-mod-vendor for more about 'go mod vendor'.
    	`,
    	Run: runVendor,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. hack/update-vendor.sh

    # Phase 7: update internal modules
    kube::log::status "vendor: updating internal modules" >&11
    hack/update-internal-modules.sh
    
    
    # Phase 8: rebuild vendor directory
    (
      kube::log::status "vendor: running 'go work vendor'" >&11
      unset GOWORK
      unset GOFLAGS
      go work vendor
    )
    
    kube::log::status "vendor: updating vendor/LICENSES" >&11
    hack/update-vendor-licenses.sh
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top