Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,705 for grouped (0.11 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationCategory.java

        private final boolean grouped;
        private final boolean topLevelWorkItem;
        private final boolean showHeader;
    
        BuildOperationCategory(boolean grouped, boolean topLevelWorkItem, boolean showHeader) {
            this.grouped = grouped;
            this.topLevelWorkItem = topLevelWorkItem;
            this.showHeader = showHeader;
        }
    
        public boolean isGrouped() {
            return grouped;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/server/routes/openapi.go

    		klog.Fatalf("Failed to register versioned open api spec for root: %v", err)
    	}
    
    	grouped := make(map[string][]*restful.WebService)
    
    	for _, t := range c.RegisteredWebServices() {
    		// Strip the "/" prefix from the name
    		gvName := t.RootPath()[1:]
    		grouped[gvName] = []*restful.WebService{t}
    	}
    
    	for gv, ws := range grouped {
    		spec, err := builder3.BuildOpenAPISpecFromRoutes(restfuladapter.AdaptWebServices(ws), oa.V3Config)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 19:05:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        }
    
        private void consumeTransformOutput(Matcher matcher) {
            String initialSubjectType = matcher.group(1);
            String subject = matcher.group(2);
            String transformer = matcher.group(3);
            String transformOutput = StringUtils.strip(matcher.group(4), "\n");
    
            String key = initialSubjectType + ";" + subject + ";" + 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)
  6. pkg/test/framework/components/echo/instances.go

    			return false
    		}
    	}
    	return true
    }
    
    // Services groups the Instances by FQDN. Each returned element is an Instances
    // 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

        private static long sleepTimeout = GroupingProgressLogEventGenerator.HIGH_WATERMARK_FLUSH_TIMEOUT / 2 * 3
    
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        def "multi-project build tasks logs are grouped"() {
            server.start()
    
            given:
            createDirs("1", "2", "3")
            settingsFile << "include '1', '2', '3'"
    
            buildFile << """
                subprojects {
                    task log {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult.java

        }
    
        /**
         * Contains the types generated by isolating annotation processors, grouped by the type they were generated from.
         */
        public Map<String, Set<String>> getGeneratedTypesWithIsolatedOrigin() {
            return generatedTypesByOrigin;
        }
    
        /**
         * Contains the resources generated by isolating annotation processors, grouped by the type they were generated from.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.5K 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