Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 968 for Region (0.22 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/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // multiple TPU clusters.
      Region* region = (*forward_pass_ops.begin())->getParentRegion();
      StringAttr replication_attr = GetReplicationAttr(*forward_pass_ops.begin());
      llvm::SmallVector<Operation*> checkset(forward_pass_ops.getArrayRef());
      checkset.append(backward_pass_ops.begin(), backward_pass_ops.end());
      for (Operation* op : checkset) {
        if (op->getParentRegion() != region) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        return a->isBeforeInBlock(b);
      });
    }
    
    void SideEffectAnalysisInfo::AnalyzeRegion(Region* region) {
      // We explicitly iterate through the regions and blocks in order to handle
      // different nested regions separately.
      for (Block& block : *region) {
        for (Operation& op : block) {
          for (Region& child_region : op.getRegions()) {
            SideEffectAnalysisInfo child_analysis(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. 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)
  5. src/internal/fuzz/sys_windows.go

    		0,             // offsetLow
    		uintptr(size), // length
    	)
    	if err != nil {
    		syscall.CloseHandle(mapObj)
    		return nil, err
    	}
    
    	region := unsafe.Slice((*byte)(unsafe.Pointer(addr)), size)
    	return &sharedMem{
    		f:             f,
    		region:        region,
    		removeOnClose: removeOnClose,
    		sys:           sharedMemSys{mapObj: mapObj},
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/text/language/match.go

    func isParadigmLocale(lang language.Language, r language.Region) bool {
    	for _, e := range paradigmLocales {
    		if language.Language(e[0]) == lang && (r == language.Region(e[1]) || r == language.Region(e[2])) {
    			return true
    		}
    	}
    	return false
    }
    
    // regionGroupDist computes the distance between two regions based on their
    // CLDR grouping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      return subgraph.name;
    }
    
    // Adds a CallOp in `region` to call the `func` and returns the results of
    // CallOp.
    void AddCallOpInWhileOpRegion(mlir::Region& region, mlir::func::FuncOp func) {
      OpBuilder op_builder{region};
      region.push_back(new mlir::Block());
      Location loc = region.getLoc();
      auto inputs = func.getFunctionType().getInputs();
      region.addArguments(inputs, mlir::SmallVector<Location>(inputs.size(), loc));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top