Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,007 for grouped (0.16 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. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// for this resource across all versions in the API group.
    	// Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
    	// Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
    	Resource string `json:"resource" protobuf:"bytes,1,opt,name=resource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            settingsFile << "rootProject.name = 'test'"
            buildFile << twoGroupsTasks()
    
            when:
            succeeds "tasks", "--group=Group 1", "--groups=Group 2"
    
            then:
            output.contains("$GROUP_1 tasks")
            output.contains("$GROUP_2 tasks")
            !output.contains("Build Setup")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// for this resource across all versions in the API group.
    	// Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
    	// Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
    	Resource string `json:"resource" protobuf:"bytes,1,opt,name=resource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. 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)
  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. 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)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_configuration]]
    == Configuration
    
    A configuration is a named set of <<#sub:terminology_dependency,dependencies>> grouped together for a specific goal.
    Configurations provide access to the underlying, resolved <<#sub:terminology_module,modules>> and their artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top