Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for groupSet (0.38 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. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    func (rdm *resourceDiscoveryManager) addGroupVersionLocked(source Source, groupName string, value apidiscoveryv2.APIVersionDiscovery) {
    
    	if rdm.apiGroups == nil {
    		rdm.apiGroups = make(map[groupKey]*apidiscoveryv2.APIGroupDiscovery)
    	}
    
    	key := groupKey{
    		source: source,
    		name:   groupName,
    	}
    
    	if existing, groupExists := rdm.apiGroups[key]; groupExists {
    		// If this version already exists, replace it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableMultiset.java

       * described in the class documentation.
       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 6.0
       */
      public static <E> ImmutableMultiset<E> copyOf(E[] elements) {
        return copyFromElements(elements);
      }
    
      /**
       * Returns an immutable multiset containing the given elements, in the "grouped iteration order"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableMultiset.java

       * described in the class documentation.
       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 6.0
       */
      public static <E> ImmutableMultiset<E> copyOf(E[] elements) {
        return copyFromElements(elements);
      }
    
      /**
       * Returns an immutable multiset containing the given elements, in the "grouped iteration order"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top