Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 596 for region (0.17 sec)

  1. tests/integration/pilot/locality_test.go

    }
    
    const localityFailover = `
    failover:
    - from: region
      to: nearregion`
    
    const failoverPriority = `
    failoverPriority:
    - "topology.kubernetes.io/region"
    - "topology.kubernetes.io/zone"
    - "topology.istio.io/subzone"`
    
    const localityDistribute = `
    distribute:
    - from: region
      to:
        nearregion: 80
        region: 20`
    
    func TestLocality(t *testing.T) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/utils/utils.cc

    // include `end`. The operations might be across multiple  blocks.
    void AddAttributes(Block::iterator begin, Block::iterator end,
                       const NamedAttrList& attrs) {
      if (begin->getBlock() == end->getBlock()) {
        AddAttributesInSameBlock(begin, end, attrs);
      } else {
        Region::iterator begin_block = Region::iterator(begin->getBlock());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. cmd/handler-utils.go

    	if location == "" {
    		location = globalSite.Region()
    	}
    	if !isValidLocation(location) {
    		return location, ErrInvalidRegion
    	}
    
    	return location, ErrNone
    }
    
    // Validates input location is same as configured region
    // of MinIO server.
    func isValidLocation(location string) bool {
    	region := globalSite.Region()
    	return region == "" || region == location
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/internal/trace/trace_test.go

    			{trace.EventRegionBegin, trace.TaskID(1), []string{"region0"}},
    			{trace.EventRegionBegin, trace.TaskID(1), []string{"region1"}},
    			{trace.EventLog, trace.TaskID(1), []string{"key0", "0123456789abcdef"}},
    			{trace.EventRegionEnd, trace.TaskID(1), []string{"region1"}},
    			{trace.EventRegionEnd, trace.TaskID(1), []string{"region0"}},
    			{trace.EventTaskEnd, trace.TaskID(1), []string{"task0"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. cmd/api-headers.go

    	// Set the "Server" http header.
    	w.Header().Set(xhttp.ServerInfo, MinioStoreName)
    
    	// Set `x-amz-bucket-region` only if region is set on the server
    	// by default minio uses an empty region.
    	if region := globalSite.Region(); region != "" {
    		w.Header().Set(xhttp.AmzBucketRegion, region)
    	}
    	w.Header().Set(xhttp.AcceptRanges, "bytes")
    
    	// Remove sensitive information
    	crypto.RemoveSensitiveHeaders(w.Header())
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 04:44:00 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact.go

    // different language, region, and script values.
    func GetCompactCore(t Tag) (cci CompactCoreInfo, ok bool) {
    	if t.LangID > langNoIndexOffset {
    		return 0, false
    	}
    	cci |= CompactCoreInfo(t.LangID) << (8 + 12)
    	cci |= CompactCoreInfo(t.ScriptID) << 12
    	cci |= CompactCoreInfo(t.RegionID)
    	return cci, true
    }
    
    // Tag generates a tag from c.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 853 bytes
    - Viewed (0)
  7. tools/packaging/common/gcp_envoy_bootstrap.json

        {{ else }}
          "id": "projects/{{ .gcp_project_number }}/networks/default/nodes/{{ .nodeID}}",
        {{ end }}
        "cluster": "{{ .cluster }}",
        "locality": {
          {{ if .region }}
          "region": "{{ .region }}",
          {{ end }}
          {{ if .zone }}
          "zone": "{{ .zone }}",
          {{ end }}
          {{ if .sub_zone }}
          "sub_zone": "{{ .sub_zone }}",
          {{ end }}
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    					if regionZoneSubZoneMap[region][zone]["*"] {
    						return fmt.Errorf("locality %s overlap with previous specified ones", locality)
    					}
    					if regionZoneSubZoneMap[region][zone][subZone] {
    						return fmt.Errorf("locality %s overlap with previous specified ones", locality)
    					}
    					regionZoneSubZoneMap[region][zone][subZone] = true
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pkg/model/proxy_test.go

    		{
    			name:     "with label",
    			label:    "region/zone/subzone-1",
    			expected: "region/zone/subzone-1",
    		},
    		{
    			name:     "label with k8s label separator",
    			label:    "region" + k8sSeparator + "zone" + k8sSeparator + "subzone-2",
    			expected: "region/zone/subzone-2",
    		},
    		{
    			name:     "label with both k8s label separators and slashes",
    			label:    "region/zone/subzone.2",
    			expected: "region/zone/subzone.2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. cmd/bucket-notification-handlers.go

    	}
    
    	config, err := globalBucketMetadataSys.GetNotificationConfig(bucketName)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	region := globalSite.Region()
    	config.SetRegion(region)
    	if err = config.Validate(region, globalEventNotifier.targetList); err != nil {
    		arnErr, ok := err.(*event.ErrARNNotFound)
    		if ok {
    			for i, queue := range config.QueueList {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top