Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 357 for region3 (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func Make(t language.Tag) (tag Tag) {
    	if region := t.TypeForKey("rg"); len(region) == 6 && region[2:] == "zzzz" {
    		if r, err := language.ParseRegion(region[:2]); err == nil {
    			tFull := t
    			t, _ = t.SetTypeForKey("rg", "")
    			// TODO: should we not consider "va" for the language tag?
    			var exact1, exact2 bool
    			tag.language, exact1 = FromTag(t)
    			t.RegionID = r
    			tag.locale, exact2 = FromTag(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    }
    
    // IsGroup returns whether this region defines a collection of regions. This
    // includes non-standard definitions from CLDR.
    func (r Region) IsGroup() bool {
    	if r == 0 {
    		return false
    	}
    	return int(regionInclusion[r]) < len(regionContainment)
    }
    
    // Contains returns whether Region c is contained by Region r. It returns true
    // if c == r.
    func (r Region) Contains(c Region) bool {
    	if r == c {
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      // Given a Region associated with the callee and operands from the
      // corresponding callOp, propagate the potentially written decision to the
      // callOp's operands, if the corresponding region's arguments are potentially
      // written resources.
      void PropagatePotentiallyWrittenUpFromCallee(
          Region& region, Operation::operand_range propagate_to);
    
      // Marks 'resource' as written.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    		locality := localityLbEndpoint.Locality
    		if locality.Region == "region1" && locality.Zone == "zone1" && locality.SubZone == "subzone1" {
    			g.Expect(localityLbEndpoint.Priority).To(Equal(uint32(0)))
    		} else if locality.Region == "region1" && locality.Zone == "zone1" && locality.SubZone == "subzone2" {
    			g.Expect(localityLbEndpoint.Priority).To(Equal(uint32(1)))
    		} else if locality.Region == "region2" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/coverage.go

    type allSubtags struct{}
    
    // Regions returns the list of supported regions. As all regions are in a
    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" region is not returned.
    func (s allSubtags) Regions() []Region {
    	reg := make([]Region, language.NumRegions)
    	for i := range reg {
    		reg[i] = Region{language.Region(i + 1)}
    	}
    	return reg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          // If the user is not in one of the regions, we are not interested in it.
          // Since all the sub-regions within this region (i.e., regions attached to
          // op's in this region) have themselves gone through lifting, all resource
          // users are expected to be operations in this region and not embedded
          // within other sub-regions attached to ops in this region. So the check
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        must represent separate sets of instructions to execute concurrently. In
        order to represent concurrently executed regions with dependencies, multiple
        ParallelExecute ops can be used instead. As so, regions within
        ParallelExecute op must not have control/data dependencies.
    
        While explicit dependencies between regions are disallowed, ParallelExecute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    func (r Region) String() string {
    	if r < isoRegionOffset {
    		if r == 0 {
    			return "ZZ"
    		}
    		return fmt.Sprintf("%03d", r.M49())
    	}
    	r -= isoRegionOffset
    	return regionISO.Elem(int(r))[:2]
    }
    
    // ISO3 returns the 3-letter ISO code of r.
    // Note that not all regions have a 3-letter ISO code.
    // In such cases this method returns "ZZZ".
    func (r Region) ISO3() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/internal/trace/summary.go

    		task.Regions = append(task.Regions, region)
    		task.Goroutines[g.ID] = g
    	case EventRegionEnd:
    		g := s.gs[ev.Goroutine()]
    		r := ev.Region()
    		var sd *UserRegionSummary
    		if regionStk := g.activeRegions; len(regionStk) > 0 {
    			// Pop the top region from the stack since that's what must have ended.
    			n := len(regionStk)
    			sd = regionStk[n-1]
    			regionStk = regionStk[:n-1]
    			g.activeRegions = regionStk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    		{
    			name: "invalid LocalityLoadBalancerSetting specify both failoverPriority and region in failover",
    			in: &networking.LocalityLoadBalancerSetting{
    				Failover: []*networking.LocalityLoadBalancerSetting_Failover{
    					{
    						From: "region1",
    						To:   "region2",
    					},
    				},
    				FailoverPriority: []string{"topology.kubernetes.io/region"},
    			},
    			outlier: &networking.OutlierDetection{},
    			err:     true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top