Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for groupSet (0.46 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeFactory.java

        ExcludeSpec ivyPatternExclude(ModuleIdentifier moduleId, IvyArtifactName artifact, String matcher);
    
        ModuleIdSetExclude moduleIdSet(Set<ModuleIdentifier> modules);
    
        GroupSetExclude groupSet(Set<String> groups);
    
        ModuleSetExclude moduleSet(Set<String> modules);
    
        default ExcludeSpec fromUnion(Set<ExcludeSpec> remainder) {
            if (remainder.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 17:19:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/DefaultExternalResourceFileStore.java

        private static final int NUMBER_OF_GROUPING_DIRS = 1;
        public static final int FILE_TREE_DEPTH_TO_TRACK_AND_CLEANUP = NUMBER_OF_GROUPING_DIRS + NUMBER_OF_CHECKSUM_DIRS;
    
        private static final Grouper<String> GROUPER = new Grouper<String>() {
            @Override
            public String determineGroup(String s) {
                return String.valueOf(Math.abs(s.hashCode()) % 100);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/lib-grid.libsonnet

            ),
          ps
        );
        local sanitizedPanels = sanitizePanels(panels, 0);
    
        local grouped = panelUtil.groupPanelsInRows(sanitizedPanels);
    
        local panelsBeforeRows = panelUtil.getPanelsBeforeNextRow(grouped);
        local rowPanels =
          std.filter(
            function(p) p.type == 'row',
            grouped
          );
    
        local CalculateXforPanel(index, panel) =
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/filestore/DefaultArtifactIdentifierFileStore.java

        private static final int NUMBER_OF_GROUPING_DIRS = 3;
        public static final int FILE_TREE_DEPTH_TO_TRACK_AND_CLEANUP = NUMBER_OF_GROUPING_DIRS + NUMBER_OF_CHECKSUM_DIRS;
    
        private static final Grouper<ModuleComponentArtifactIdentifier> GROUPER = new Grouper<ModuleComponentArtifactIdentifier>() {
            @Override
            public String determineGroup(ModuleComponentArtifactIdentifier artifactId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

        private static final String EXPECTED_ERROR = "Goodbye, World!"
    
        @UnsupportedWithConfigurationCache(because = "Task.getProject() during execution")
        def "Project.javaexec output is grouped with its task output"() {
            given:
            generateMainJavaFileEchoing(EXPECTED_OUTPUT, EXPECTED_ERROR)
            buildFile << """
                apply plugin: 'java'
    
                task run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

            if (!foundTask) {
                throw new AssertionError(String.format("The grouped output for task '%s' could not be found.%nOutput:%n%s", taskName, originalOutput));
            }
    
            return tasks.get(taskName);
        }
    
        /**
         * Returns grouped output for the given transformer type.
         */
        public GroupedTransformOutputFixture transform(String transformer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/instances.go

    // containing only instances of a single service.
    func (i Instances) Services() Services {
    	grouped := map[string]Instances{}
    	for _, instance := range i {
    		k := instance.Config().ClusterLocalFQDN()
    		grouped[k] = append(grouped[k], instance)
    	}
    	var out Services
    	for _, deployment := range grouped {
    		out = append(out, deployment)
    	}
    	sort.Stable(out)
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest.groovy

        private static final String JAVA_SRC_DIR_PATH = 'src/main/java'
    
        def "compiler warnings emitted from compilation task are grouped"() {
            given:
            def javaSourceFile = file("$JAVA_SRC_DIR_PATH/MyClass.java")
            def expectedOutput = "${javaSourceFile.absolutePath}:4: warning: [deprecation] Legacy in unnamed package has been deprecated"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.cc

    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/transforms/passes.h"
    
    namespace mlir::quant::stablehlo {
    
    void AddQuantizationLoweringPasses(mlir::OpPassManager& pm) {
      // These passes are grouped together and must run in this specific order.
      pm.addNestedPass<mlir::func::FuncOp>(CreateConvertTFQuantOpsToMHLOPass());
      pm.addNestedPass<mlir::func::FuncOp>(mhlo::createChloLegalizeToHloPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/testdata/issue49205.go

    }
    
    // other cases where the fix for this issue affects the error message
    
    const (
    	x int = 10 /* ERROR unexpected literal "foo" in grouped declaration; possibly missing semicolon or newline or \) */ "foo"
    )
    
    var _ = []int{1, 2, 3 /* ERROR unexpected name int in composite literal; possibly missing comma or } */ int }
    
    type _ struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 952 bytes
    - Viewed (0)
Back to top