Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 570 for region3 (0.32 sec)

  1. 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)
  2. src/internal/trace/testdata/tests/go122-annotations-stress.test

    String id=28
    	data="do"
    String id=29
    	data="fanout"
    String id=30
    	data="region3"
    String id=31
    	data="region2"
    String id=32
    	data="fanout region3"
    String id=33
    	data="region0"
    String id=34
    	data="fanout region0"
    String id=35
    	data="region1"
    String id=36
    	data="fanout region1"
    String id=37
    	data="fanout region2"
    String id=38
    	data="before do"
    String id=39
    	data="do"
    String id=40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K 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. 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)
  6. src/internal/trace/oldtrace_test.go

    				if testName == "user_task_region_1_21_good" {
    					testedUserRegions = true
    					validRegions := map[string]struct{}{
    						"post-existing region": struct{}{},
    						"region0":              struct{}{},
    						"region1":              struct{}{},
    					}
    					// Check that we correctly convert user regions. These
    					// strings were generated by
    					// runtime/trace.TestUserTaskRegion, which is the basis for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    }
    
    // Returns all the external values referenced from the given regions. If the
    // external value is a constant, sink it into the region instead (and do not
    // add it to the returned vector).
    llvm::SmallVector<Value, 4> CollectExternValues(mlir::RegionRange regions) {
      llvm::SetVector<Value> extern_values;
    
      for (Region* region : regions) {
        llvm::SetVector<Value> region_extern_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K 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. src/cmd/vendor/golang.org/x/text/language/language.go

    func (r Region) IsGroup() bool {
    	return r.regionID.IsGroup()
    }
    
    // Contains returns whether Region c is contained by Region r. It returns true
    // if c == r.
    func (r Region) Contains(c Region) bool {
    	return r.regionID.Contains(c.regionID)
    }
    
    // TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
    // In all other cases it returns either the region itself or an error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    				} else if t.RegionID != 0 {
    					count := 0
    					goodScript := true
    					tt := t
    					for _, x := range list {
    						// We visit all entries for which the script was not
    						// defined, including the ones where the region was not
    						// defined. This allows for proper disambiguation within
    						// regions.
    						if x.flags&scriptInFrom == 0 && t.RegionID.Contains(Region(x.region)) {
    							tt.RegionID = Region(x.region)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top