Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 292 for Workspace (0.14 sec)

  1. src/cmd/go/testdata/script/work_goproxy_off.txt

    go work init
    go work use . ./sub
    
    # Verify that the go.mod files for both modules in the workspace are tidy,
    # and add missing go.sum entries as needed.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    cd sub
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    cd ..
    
    go list -m all
    stdout '^rsc\.io/quote v1\.5\.1$'
    stdout '^rsc\.io/sampler v1\.3\.1$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 14 19:05:09 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultOutputSnapshotter.java

        }
    
        @Override
        public ImmutableSortedMap<String, FileSystemSnapshot> snapshotOutputs(UnitOfWork work, File workspace) {
            ImmutableSortedMap.Builder<String, FileSystemSnapshot> builder = ImmutableSortedMap.naturalOrder();
            work.visitOutputs(workspace, new UnitOfWork.OutputVisitor() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

        // Do not change them.
        // If they change, continuity of the IDs will be broken.
        private static final String USER_ID_FILENAME = "user-id.txt";
        private static final String WORKSPACE_ID_FILENAME = "workspace-id.txt";
    
        private final Factory<UniqueId> generator;
        private final PersistentScopeIdStoreFactory storeFactory;
        private final GlobalScopedCacheBuilderFactory globalScopedcacheBuilderFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyDslWorkspaceProvider.java

    import org.gradle.api.internal.cache.CacheConfigurationsInternal;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.internal.execution.workspace.ImmutableWorkspaceProvider;
    import org.gradle.internal.execution.workspace.impl.CacheBasedImmutableWorkspaceProvider;
    import org.gradle.internal.file.FileAccessTimeJournal;
    import org.gradle.internal.service.scopes.Scope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/IdeArtifactRegistry.java

         */
        <T extends IdeProjectMetadata> List<Reference<T>> getIdeProjects(Class<T> type);
    
        /**
         * Returns a {@link FileCollection} containing the files for all IDE projects with the specified type that should be included in the IDE workspace.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

            val workspace = executionRequest.workspace
            kotlinScriptClassPathProviderOf(rootProject).run {
                withAsynchronousIO(rootProject) {
                    buildPluginDependencySpecAccessorsFor(
                        pluginDescriptorsClassPath = exportClassPathFromHierarchyOf(buildSrcClassLoaderScope),
                        srcDir = getSourcesOutputDir(workspace),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_doc.txt

    package y
    
    -- x.go --
    package x
    
    -- $WORK/gopath2/src/x/y/y.go --
    // Package y is located in a GOPATH workspace.
    package y
    -- $WORK/gopath2/src/rsc.io/quote/quote.go --
    // Package quote is located in a GOPATH workspace.
    package quote
    
    // Hello is located in a GOPATH workspace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/vendor.go

    		// we're in workspace mode, and we fail earlier reporting that
    		// "no modules were found in the current workspace".
    		panic("checkVendorConsistency called with zero modfiles")
    	}
    
    	pre114 := false
    	if !inWorkspaceMode() { // workspace mode was added after Go 1.14
    		if len(indexes) != 1 {
    			panic(fmt.Errorf("not in workspace mode but number of indexes is %v, not 1", len(indexes)))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. subprojects/core/src/crossVersionTest/groovy/org/gradle/internal/scopeids/CrossVersionScopeIdsIntegrationTest.groovy

        }
    
        void assertIdsAreShared(ScopeIdsFixture.ScopeIds earlier, ScopeIdsFixture.ScopeIds current) {
            assert current.buildInvocation != earlier.buildInvocation
            assert current.workspace == earlier.workspace
            assert current.user == earlier.user
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 06 09:19:00 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work.txt

    cd $GOPATH/src
    
    go list all # all includes both modules
    stdout 'example.com/a'
    stdout 'example.com/b'
    
    # -mod can only be set to readonly in workspace mode
    go list -mod=readonly all
    ! go list -mod=mod all
    stderr '^go: -mod may only be set to readonly or vendor when in workspace mode'
    env GOWORK=off
    go list -mod=mod all
    env GOWORK=
    
    # Test that duplicates in the use list return an error
    cp go.work go.work.backup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top