Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 299 for workspace$ (0.15 sec)

  1. ci/official/wheel_test/WORKSPACE

    # buildifier: disable=load-on-top
    
    workspace(name = "wheel_test")
    
    # buildifier: disable=load-on-top
    
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
    
    http_archive(
        name = "bazel_skylib",
        sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
        urls = [
            "https://storage.googleapis.com/mirror.tensorflow.org/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. samples/wasm_modules/header_injector/WORKSPACE

    workspace(name = "header_injector_extension")
    
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
    
    # Pulls proxy wasm cpp SDK with a specific SHA
    PROXY_WASM_CPP_SDK_SHA = "fd0be8405db25de0264bdb78fae3a82668c03782"
    PROXY_WASM_CPP_SDK_SHA256 = "c57de2425b5c61d7f630c5061e319b4557ae1f1c7526e5a51c33dc1299471b08"
    
    http_archive(
        name = "proxy_wasm_cpp_sdk",
        sha256 = PROXY_WASM_CPP_SDK_SHA256,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 791 bytes
    - Viewed (0)
  3. ci/official/requirements_updater/WORKSPACE

    # buildifier: disable=load-on-top
    
    workspace(name = "requirements_updater")
    
    # buildifier: disable=load-on-top
    
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
    
    http_archive(
        name = "bazel_skylib",
        sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
        urls = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:12:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. WORKSPACE

    # buildifier: disable=load-on-top
    
    workspace(name = "org_tensorflow")
    
    # buildifier: disable=load-on-top
    
    # We must initialize hermetic python first.
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
    
    http_archive(
        name = "bazel_skylib",
        sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
        urls = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Workspace.java

    /**
     * Represents the customizable elements of an ipr (via XML hooks everything of the ipr is customizable).
     */
    public class Workspace extends XmlPersistableConfigurationObject {
        public Workspace(XmlTransformer withXmlActions) {
            super(withXmlActions);
        }
    
        @Override
        protected String getDefaultResourceName() {
            return "defaultWorkspace.xml";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. hack/verify-go-workspace.sh

    #
    # Usage: `hack/verify-go-workspace.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: Fri Mar 01 06:06:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. hack/update-go-workspace.sh

    carlory <******@****.***> 1710085450 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 10 15:44:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. hack/print-workspace-status.sh

    # build stamping with git information.
    #
    # It is still useful for obtaining kube::version::get_version_vars without
    # sourcing Kubernetes build internals.
    #
    # Usage: `hack/print-workspace-status.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/version.sh"
    kube::version::get_version_vars
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 06 11:19:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/workcmd/work.go

    	UsageLine: "go work",
    	Short:     "workspace maintenance",
    	Long: `Work provides access to operations on workspaces.
    
    Note that support for workspaces is built into many other commands, not
    just 'go work'.
    
    See 'go help modules' for information about Go's module system of which
    workspaces are a part.
    
    See https://go.dev/ref/mod#workspaces for an in-depth reference on
    workspaces.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            ImmutableWorkspace workspace = workspaceProvider.getWorkspace(uniqueId);
    
            return loadImmutableWorkspaceIfExists(work, workspace)
                .orElseGet(() -> executeInTemporaryWorkspace(work, context, workspace));
        }
    
        private Optional<WorkspaceResult> loadImmutableWorkspaceIfExists(UnitOfWork work, ImmutableWorkspace workspace) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top