Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 195 for groupSet (0.23 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateReduceTypePrecisionPass();
    
    // Convervatively pushes transposes through elementwise ops to prepare
    // so redudant ones may be grouped and removed.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePushTransposeThroughEwisePass();
    
    // Creates a pass that brings operations into the same order as graph_info.cc.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/regexp/testdata/repetition.dat

    #:HA#117:E	X(.?){7,8}Y	X1234567Y	(0,9)(7,8)
    :HA#117:E	X(.?){7,8}Y	X1234567Y	(0,9)(8,8)	RE2/Go
    :HA#118:E	X(.?){8,8}Y	X1234567Y	(0,9)(8,8)
    
    # These test a fixed bug in my regex-tdfa that did not keep the expanded
    # form properly grouped, so right association did the wrong thing with
    # these ambiguous patterns (crafted just to test my code when I became
    # suspicious of my implementation).  The first subexpression should use
    # "ab" then "a" then "bcd".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,6,rep,name=shortNames"`
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all').
    	// Clients may use this to simplify acting on multiple resource types at once.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top