Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 284 for xcworkspace (1.65 sec)

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

    	unpruned                    // no transitive dependencies are pruned out
    	workspace                   // pruned to the union of modules in the workspace
    )
    
    func (p modPruning) String() string {
    	switch p {
    	case pruned:
    		return "pruned"
    	case unpruned:
    		return "unpruned"
    	case workspace:
    		return "workspace"
    	default:
    		return fmt.Sprintf("%T(%d)", p, p)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. staging/README.md

    7. NOTE: Do not edit go.mod or go.sum in the new repo (staging/src/k8s.io/<newrepo>/) manually. Run the following instead:
    
    ```
      ./hack/update-vendor.sh
    ```
    
    8. Run [`./hack/update-go-workspace.sh`](/hack/update-go-workspace.sh) to add
       the module to the workspace.
    
    ### Creating the published repository
    
    1. Create an [issue](https://github.com/kubernetes/org/issues/new?template=repo-create.md)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/MutableTransformExecution.java

    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.internal.execution.InputFingerprinter;
    import org.gradle.internal.execution.MutableUnitOfWork;
    import org.gradle.internal.execution.workspace.MutableWorkspaceProvider;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.BuildOperationRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. models.BUILD

    licenses(["notice"])  # Apache 2.0
    
    filegroup(
        name = "model_files",
        srcs = glob(
            [
                "**/*",
            ],
            exclude = [
                "**/BUILD",
                "**/WORKSPACE",
                "**/LICENSE",
                "**/*.zip",
            ],
        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 10 22:25:53 UTC 2017
    - 328 bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

        def setup() {
            concurrent.shortTimeout = 180000
        }
    
        def cleanup() {
            new DaemonLogsAnalyzer(workspace.file("daemon")).daemons.each { it.kill() }
        }
    
        def "handles concurrent access to changing artifacts"() {
            expect:
            4.times { count ->
                def buildDir = workspace.file(count)
                concurrent.start {
                    buildDir.file('build.gradle') << """
    import java.util.zip.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

            WorkspaceReader workspace = session.getWorkspaceReader();
            if (workspace != null) {
                List<String> versions = workspace.findVersions(request.getArtifact());
                for (String version : versions) {
                    versionIndex.put(version, workspace.getRepository());
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
     * Builds of the same checkout over time will share the same workspace ID.
     *
     * This ID is persisted in the root build's project cache dir.
     * If this cache directory is destroyed, a new ID will be issued.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

                """
            def inc1 = multiProjectBuildInSubFolder("includedBuild1", ["a", "b", "c"])
            def inc2 = multiProjectBuildInSubFolder("includedBuild2", ["a", "b", "c"])
            def workspace = eclipseWorkspace([
                project("root", projectDir), gradleProject("a"), project("explicitName", file("b")),
                externalProject("root-a"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            //      engines instead.
            ExecutionEngine effectiveEngine;
            if (producerProject == null) {
                // Non-project-bound transforms run in a global immutable workspace,
                // and are identified by a non-normalized identity
                // See comments on NonNormalizedIdentityImmutableTransformExecution
                identityCache = immutableWorkspaceServices.getIdentityCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         */
        default void visitRegularInputs(InputVisitor visitor) {}
    
        /**
         * Visit outputs of the work in the given workspace.
         * <p>
         * Note: For tasks {@code workspace} is {@code null} for now.
         */
        void visitOutputs(File workspace, OutputVisitor visitor);
    
        interface InputVisitor {
            default void visitInputProperty(
                String propertyName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top