Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for deduplicated (0.27 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

                }
            }
            """
            settingsFile << """
            rootProject.name = 'root'
            include ':a', ':b'
            """
        }
    
        def "externally used project names can be supplied and are deduplicated"() {
            when:
            EclipseProject model = withConnection { connection ->
                return connection.action(new LoadEclipseModel(eclipseWorkspace([
                    gradleProject("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)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/CompositeDeduplicationCrossVersionSpec.groovy

                }
            }
            """
            settingsFile << """
            rootProject.name = 'root'
            include ':a', ':b'
            """
        }
    
        def "Included builds are deduplicated"() {
            given:
            settingsFile << """
                    includeBuild 'includedBuild1'
                    includeBuild 'includedBuild2'
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/go/types/context.go

    // identical type instances across type-checked packages or calls to
    // Instantiate. Contexts are safe for concurrent use.
    //
    // The use of a shared context does not guarantee that identical instances are
    // deduplicated in all cases.
    type Context struct {
    	mu        sync.Mutex
    	typeMap   map[string][]ctxtEntry // type hash -> instances entries
    	nextID    int                    // next unique ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/go/types/instantiate_test.go

    	const src = "package p; type T[P any] int"
    	pkg1 := mustTypecheck(src, nil, nil)
    	pkg2 := mustTypecheck(src, nil, nil)
    	// We consider T1 and T2 to be distinct types, so their instances should not
    	// be deduplicated by the context.
    	T1 := pkg1.Scope().Lookup("T").Type().(*Named)
    	T2 := pkg2.Scope().Lookup("T").Type().(*Named)
    	ctxt := NewContext()
    	res1, err := Instantiate(ctxt, T1, []Type{Typ[Int]}, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                    .forTasks()
                    .run()
            }
    
            then:
            !taskExecuted(out, ":eclipseClosedDependencies")
    
    
        }
    
        def "task name is deduplicated"() {
            setup:
            multiProjectBuildInRootFolder("root", ["child1", "child2"]) {
                buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            }
        }
    
        def "deduplicated keys are chosen by subkeys amount"() {
            given:
            javaLibrary()
            file("gradle/verification-keyring.keys").copyFrom(
                this.class.getResource("/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/duplicated.keys")
            )
    
            when:
            writeVerificationMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. cmd/importverifier/importverifier.go

    	return !strings.HasPrefix(relPath, ".."), nil
    }
    
    // forbiddenImportsFor determines all of the forbidden
    // imports for a package given the import restrictions
    // and returns a deduplicated list of them
    func (i *ImportRestriction) forbiddenImportsFor(pkg Package) []string {
    	forbiddenImportSet := map[string]struct{}{}
    	imports := pkg.Imports
    	if !i.ExcludeTests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    				metav1.LabelSelectorOpDoesNotExist,
    			}
    
    			if j.MatchExpressions != nil {
    				// NB: the label selector parser code sorts match expressions by key, and
    				// sorts and deduplicates the values, so we need to make sure ours are
    				// sorted and deduplicated as well here to preserve round-trip comparison.
    				// In practice, not sorting doesn't hurt anything...
    
    				for i := range j.MatchExpressions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                selector.getTargetModule().decreaseHardEdgeCount(removalSource);
            }
        }
    
        @Override
        public boolean equals(Object o) {
            return this == o;
            // Edge states are deduplicated, this is a performance optimization
        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    
        DependencyState getDependencyState() {
            return dependencyState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pcln.go

    	state.filetab = state.addGeneratedSym(ctxt, "runtime.filetab", fileSize, writeFiletab)
    
    	return cuOffsets
    }
    
    // generatePctab creates the runtime.pctab variable, holding all the
    // deduplicated pcdata.
    func (state *pclntab) generatePctab(ctxt *Link, funcs []loader.Sym) {
    	ldr := ctxt.loader
    
    	// Pctab offsets of 0 are considered invalid in the runtime. We respect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top