Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 125 for groupSet (0.17 sec)

  1. src/runtime/metrics.go

    func (s *statDepSet) has(d statDep) bool {
    	return s[d/64]&(1<<(d%64)) != 0
    }
    
    // heapStatsAggregate represents memory stats obtained from the
    // runtime. This set of stats is grouped together because they
    // depend on each other in some way to make sense of the runtime's
    // current heap memory use. They're also sharded across Ps, so it
    // makes sense to grab them all at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

        }
    
        public static <K, V> Map<K, Collection<V>> groupBy(Iterable<? extends V> iterable, InternalTransformer<? extends K, V> grouper) {
            ImmutableListMultimap.Builder<K, V> builder = ImmutableListMultimap.builder();
    
            for (V element : iterable) {
                K key = grouper.transform(element);
                builder.put(key, element);
            }
    
            return builder.build().asMap();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. hack/tools/go.mod

    	github.com/kyoh86/exportloopref v0.1.11 // indirect
    	github.com/ldez/gomoddirectives v0.2.3 // indirect
    	github.com/ldez/tagliatelle v0.5.0 // indirect
    	github.com/leonklingele/grouper v1.1.1 // indirect
    	github.com/lufeee/execinquery v1.2.1 // indirect
    	github.com/macabu/inamedparam v0.1.3 // indirect
    	github.com/magiconair/properties v1.8.6 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/cmd/trace/pprof.go

    	}
    	if len(res) == 0 {
    		return nil, fmt.Errorf("failed to find matching goroutines for name: %s", name)
    	}
    	return res, nil
    }
    
    // pprofMatchingRegions returns the time intervals of matching regions
    // grouped by the goroutine id. If the filter is nil, returns nil without an error.
    func pprofMatchingRegions(filter *regionFilter, t *parsedTrace) (map[trace.GoID][]interval, error) {
    	if filter == nil {
    		return nil, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

        }
    
        public static <K, V> Map<K, Collection<V>> groupBy(Iterable<? extends V> iterable, Transformer<? extends K, V> grouper) {
            logDeprecation(7);
            ImmutableListMultimap.Builder<K, V> builder = ImmutableListMultimap.builder();
    
            for (V element : iterable) {
                K key = grouper.transform(element);
                builder.put(key, element);
            }
    
            return builder.build().asMap();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/html/template/js_test.go

    		// (g++/h/i) where ++ is a postfix operator on g is much more
    		// common.
    		{jsCtxDivOp, "--"},
    		{jsCtxDivOp, "++"},
    		{jsCtxDivOp, "x--"},
    		// When we have many dashes or pluses, then they are grouped
    		// left to right.
    		{jsCtxRegexp, "x---"}, // A postfix -- then a -.
    		// return followed by a slash returns the regexp literal or the
    		// slash starts a regexp literal in an expression statement that
    		// is dead code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/generate-clients.md

    ### Generate a TypeScript Client with Tags
    
    If you generate a client for a FastAPI app using tags, it will normally also separate the client code based on the tags.
    
    This way you will be able to have things ordered and grouped correctly for the client code:
    
    <img src="/img/tutorial/generate-clients/image06.png">
    
    In this case you have:
    
    * `ItemsService`
    * `UsersService`
    
    ### Client Method Names
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/runtime/mcache.go

    //
    // mcaches are allocated from non-GC'd memory, so any heap pointers
    // must be specially handled.
    type mcache struct {
    	_ sys.NotInHeap
    
    	// The following members are accessed on every malloc,
    	// so they are grouped here for better caching.
    	nextSample uintptr // trigger heap sample after allocating this many bytes
    	scanAlloc  uintptr // bytes of scannable heap allocated
    
    	// Allocator cache for tiny objects w/o pointers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    b
    """) == rendersTasks
    
            where:
            tasks                      | rendersTasks
            TASKS_REPORT_TASK          | false
            TASKS_DETAILED_REPORT_TASK | true
        }
    
        def "renders grouped task with dependencies in detailed report running #tasks"() {
            given:
            buildFile << """
                task a {
                    group = '$GROUP'
                }
    
                task b {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/trace/regions.go

      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    </style>
    <body>
    <h1>Regions</h1>
    
    Below is a table containing a summary of all the user-defined regions in the trace.
    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top