Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for deduplicated (0.19 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. doc/next/6-stdlib/2-unique.md

    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	// related to the primary diagnostic.
    	Related []RelatedInformation
    }
    
    // RelatedInformation contains information related to a diagnostic.
    // For example, a diagnostic that flags duplicated declarations of a
    // variable may include one RelatedInformation per existing
    // declaration.
    type RelatedInformation struct {
    	Pos     token.Pos
    	End     token.Pos // optional
    	Message string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            }
        }
    
        private Collection<WeakMojoExecutionListener> getProvidedListeners() {
            // the same instance can be provided multiple times under different Key's
            // deduplicate instances to avoid redundant beforeXXX/afterXXX callbacks
            IdentityHashMap<WeakMojoExecutionListener, Object> listeners = new IdentityHashMap<>();
            for (Object provided : getScopeState().provided.values()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		})
    	}
    }
    
    // removeDups removes duplicate replace directives.
    //
    // Later replace directives take priority.
    //
    // require directives are not de-duplicated. That's left up to higher-level
    // logic (MVS).
    //
    // retract directives are not de-duplicated since comments are
    // meaningful, and versions may be retracted multiple times.
    func (f *WorkFile) removeDups() {
    	removeDups(f.Syntax, nil, &f.Replace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

      pm.addPass(createReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass());
      // ReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass may create
      // duplicate constants. Add canonicalizer to deduplicate.
      pm.addNestedPass<func::FuncOp>(mlir::createCanonicalizerPass());
      pm.addPass(TF::CreateXlaCallModuleSerializationPass());
    }
    
    void AddProcessNchwTensorPasses(OpPassManager& pm) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

                    } else if (logger.isWarnEnabled()) {
                        Lifecycle original = phaseToLifecycleMap.get(phase);
                        logger.warn(
                                "Duplicated lifecycle phase {}. Defined in {} but also in {}",
                                phase,
                                original.getId(),
                                lifecycle.getId());
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/destination_rule.go

    			// traffic policies if they already exist
    			for _, subset := range rule.Subsets {
    				if !existingSubset.Contains(subset.Name) {
    					// if not duplicated, append
    					mergedRule.Subsets = append(mergedRule.Subsets, subset)
    				} else {
    					// duplicate subset
    					ps.AddMetric(DuplicatedSubsets, string(resolvedHost), "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    		},
    
    		// scenario 6: set valid `--disable-admission-plugins`
    		{
    			setDisablePlugins: []string{"pluginA"},
    			expectedResult:    true,
    		},
    
    		// scenario 7: RecommendedPluginOrder has duplicated plugin
    		{
    			setRecommendedPluginsOrder: []string{"pluginA", "pluginB", "pluginB", "pluginC"},
    			expectedResult:             false,
    		},
    
    		// scenario 8: RecommendedPluginOrder not equal to registered
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top