Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for groupSet (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/signature.go

    	if list == nil {
    		return
    	}
    
    	var named, anonymous bool
    
    	var typ Type
    	var prev syntax.Expr
    	for i, field := range list {
    		ftype := field.Type
    		// type-check type of grouped fields only once
    		if ftype != prev {
    			prev = ftype
    			if t, _ := ftype.(*syntax.DotsType); t != nil {
    				ftype = t.Elem
    				if variadicOk && i == len(list)-1 {
    					variadic = true
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/deployment/builder.go

    	// if the Config passed to With does not explicitly choose a cluster.
    	clusters cluster.Clusters
    
    	// configs contains configurations to be built, expanded per-cluster and grouped by cluster Kind.
    	configs []echo.Config
    	// refs contains the references to assign built Instances to.
    	// The length of each refs slice should match the length of the corresponding cluster slice.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/pgen.go

    	if a.Type().Alignment() != b.Type().Alignment() {
    		return a.Type().Alignment() > b.Type().Alignment()
    	}
    
    	// Sort normal variables before open-coded-defer slots, so that the
    	// latter are grouped together and near the top of the frame (to
    	// minimize varint encoding of their varp offset).
    	if a.OpenDeferSlot() != b.OpenDeferSlot() {
    		return a.OpenDeferSlot()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

    // Graph based bridge in the TPUCompile op kernel.
    bool CanInlineFunctionsPostLegalization(llvm::StringRef device_type) {
      return device_type == DEVICE_TPU_XLA_JIT;
    }
    
    // These passes are grouped together and must run in this specific order.
    void AddLegalizationPasses(mlir::OpPassManager& pm, bool legalize_chlo,
                               llvm::StringRef device_type, bool enable_op_fallback,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

       *
       * <p>For streams with defined encounter order (as defined in the Ordering section of the {@link
       * java.util.stream} Javadoc), that order is preserved, but entries are <a
       * href="ImmutableMultimap.html#iteration">grouped by key</a>.
       *
       * <p>Example:
       *
       * <pre>{@code
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top