Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 206 for xcworkspace (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

        @SuppressWarnings("unchecked")
        public void mergeXmlWorkspace(Workspace xmlWorkspace) {
            iws.getBeforeMerged().execute(xmlWorkspace);
    
            //we don't merge anything in the iws, yet.
            //I kept the logic for the sake of consistency
            // and compatibility with pre M4 ways of configuring IDEA information.
    
            iws.getWhenMerged().execute(xmlWorkspace);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaWorkspace.java

        private IdeaWorkspace workspace;
    
        public GenerateIdeaWorkspace() {}
    
        @Inject
        public GenerateIdeaWorkspace(IdeaWorkspace workspace) {
            this.workspace = workspace;
        }
    
        @Override
        protected Workspace create() {
            return new Workspace(getXmlTransformer());
        }
    
        @Override
        protected void configure(Workspace xmlWorkspace) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  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. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/AbstractMultiBuildIdeIntegrationTest.groovy

            run(":${workspaceTask}")
    
            then:
            def workspace = workspace(buildA, "ide")
            workspace.assertContains(project(buildA, "ide"))
            workspace.assertContains(project(buildB, "buildB"))
            workspace.assertContains(project(buildC, "buildC"))
            workspace.assertContains(project(buildC.file("p1"), "p1"))
            workspace.assertContains(project(buildC.file("p2"), "p2"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/LoadEclipseModel.java

        private final EclipseWorkspace workspace;
    
        public LoadEclipseModel() {
            this(null);
        }
    
        public LoadEclipseModel(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
        }
    
        @Override
        public EclipseProject execute(BuildController controller) {
            if (workspace != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ParameterizedLoadCompositeEclipseModels.java

            private final EclipseWorkspace workspace;
    
            public EclipseRuntimeAction(EclipseWorkspace workspace) {
    
                this.workspace = workspace;
            }
    
            @Override
            public void execute(EclipseRuntime eclipseRuntime) {
                eclipseRuntime.setWorkspace(workspace);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top