Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for xcworkspace (0.15 sec)

  1. src/cmd/go/internal/modload/init.go

    					}
    					if vendoredWorkspace != (versionSource == "go.work") {
    						if vendoredWorkspace {
    							cfg.BuildModReason = "Outside workspace mode, but vendor directory is for a workspace."
    						} else {
    							cfg.BuildModReason = "In workspace mode, but vendor directory is not for a workspace"
    						}
    					} else {
    						// The Go version is at least 1.14, a vendor directory exists, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	mustHaveGoRoot(rootModules)
    
    	if pruning != workspace {
    		if workFilePath != "" {
    			panic("in workspace mode, but pruning is not workspace in newRequirements")
    		}
    	}
    
    	if pruning != workspace {
    		if workFilePath != "" {
    			panic("in workspace mode, but pruning is not workspace in newRequirements")
    		}
    		for i, m := range rootModules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. configure.py

      parser = argparse.ArgumentParser()
      parser.add_argument(
          '--workspace',
          type=str,
          default=os.path.abspath(os.path.dirname(__file__)),
          help='The absolute path to your active Bazel workspace.')
      args = parser.parse_args()
    
      _TF_WORKSPACE_ROOT = args.workspace
      _TF_BAZELRC = os.path.join(_TF_WORKSPACE_ROOT, _TF_BAZELRC_FILENAME)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                        assert inputArtifactDependencies.every { it.exists() }
    
                        def output = outputs.file(input.name + ".txt")
                        def workspace = output.parentFile
                        assert workspace.directory && workspace.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        output.text = String.valueOf(input.length())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':b:producer'.")
            failure.assertHasCause("broken")
        }
    
        // Documents existing behaviour. The absolute path of the input artifact is baked into the workspace identity
        // for incremental transforms, and so when the path changes the outputs are invalidated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    problems.add(Severity.FATAL, ModelProblem.Version.BASE, null, e);
                    return null;
                }
            }
    
            // no workspace resolver or workspace resolver returned null (i.e. model not in workspace)
            if (importModel == null) {
                final ModelSource importSource;
                try {
                    Session session = request.getSession()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                            .setMessage(e.getMessage())
                            .setException(e));
                    return null;
                }
            }
    
            // no workspace resolver or workspace resolver returned null (i.e. model not in workspace)
            if (importModel == null) {
                final ModelSource importSource;
                try {
                    importSource = modelResolver.resolveModel(dependency);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. .bazelrc

    build:elinux_armhf --copt -mfp16-format=ieee
    
    # Config-specific options should come above this line.
    
    # Load rc file written by ./configure.
    try-import %workspace%/.tf_configure.bazelrc
    try-import %workspace%/xla_configure.bazelrc
    
    # Load rc file with user-specific options.
    try-import %workspace%/.bazelrc.user
    
    # Here are bazelrc configs for release builds
    # Build TensorFlow v2.
    test:release_base --test_size_filters=small,medium
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    				continue
    			}
    
    			if inWorkspaceMode() {
    				// In workspace mode / workspace pruning mode, the roots are the main modules
    				// rather than the main module's direct dependencies. The check below on the selected
    				// roots does not apply.
    				if cfg.BuildMod == "vendor" {
    					// In workspace vendor mode, we don't need to load the requirements of the workspace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.model.IdeaModel.workspace(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (IdeaModel.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top