Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 552 for Region (0.2 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/closing-unknown-region

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 240 bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    				},
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    				},
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    			t.Errorf("wanted region start event %s, got %s", wantStart, kind)
    		}
    		if kind == trace.EventRegionBegin {
    			if region.Start.Region().Type != region.Name {
    				t.Errorf("region name mismatch: event has %s, summary has %s", region.Start.Region().Type, region.Name)
    			}
    		} else {
    			st := region.Start.StateTransition()
    			if st.Resource.Kind != trace.ResourceGoroutine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/cmd/trace/regions.go

      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
    period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

                               bool passthru_extra_args, int num_loop_carried,
                               const llvm::SetVector<Value>& extern_values,
                               const SmallVectorImpl<Type>& types, Location loc) {
      auto func = CreateOutlineFunc(name, region, passthru_extra_args,
                                    num_loop_carried, extern_values, types, loc);
      OpBuilder b(region);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/annotations.go

    		trace.WithRegion(ctx, "region0", func() {
    			// EvUserRegionBegin("region0", start)
    			trace.WithRegion(ctx, "region1", func() {
    				trace.Log(ctx, "key0", "0123456789abcdef") // EvUserLog("task0", "key0", "0....f")
    			})
    			// EvUserRegionEnd("region0", end)
    		})
    	}()
    	wg.Wait()
    
    	preExistingRegion.End()
    	postExistingRegion := trace.StartRegion(bgctx, "post-existing region")
    
    	// End of traced execution.
    	trace.Stop()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                if (!testCaseRegions.containsKey(testId)) {
                    TestCaseRegion region = new TestCaseRegion();
                    testCaseRegions.put(testId, region);
                }
    
                TestCaseRegion region = testCaseRegions.get(testId);
    
                Region streamRegion = isStdout ? region.stdOutRegion : region.stdErrRegion;
    
                long total = output.getWritePosition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      for (Region& region : case_or_if_op->getRegions())
        infos.push_back(&backtrack_analysis.GetAnalysisForRegion(region));
    
      // For region Case/If, the walk would have visited all branch regions before
      // visiting the Case/If op. Backtracking of each region results will either
      // give a value computed within these regions, or a region capture. If it is a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    // through a ToBoolOp) between the region yield and the call. Returns none if
    // the region does not conform to this pattern.
    std::optional<func::CallOp> IsSingleCallRegion(Region& region,
                                                   bool allow_to_bool = false) {
      if (!llvm::hasSingleElement(region)) return std::nullopt;
    
      Block& block = region.front();
      auto it = block.rbegin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

    // Inserts a `CalibrationStatisticsSaverOp` to the end of the region.
    LogicalResult InsertCalibrationStatisticsSaverOp(
        Region& region, MLIRContext& ctx, absl::string_view output_file_path,
        const std::unordered_set<std::string>& aggregator_ops_to_ignore) {
      SmallVector<Value> statistics_outputs;
      SmallVector<StringRef> ids;
      SmallVector<int32_t> calibration_methods;
      FindCustomAggregatorOps(region, aggregator_ops_to_ignore, statistics_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top