Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 596 for region (0.17 sec)

  1. cluster/gce/delete-stranded-load-balancers.sh

    	gcloud compute --project="${PROJECT}" forwarding-rules delete "${x}" --region="${REGION}" -q
    	gcloud compute --project="${PROJECT}" addresses delete "${x}" --region="${REGION}" -q
    	gcloud compute --project="${PROJECT}" target-pools delete "${x}" --region="${REGION}" -q
            result=1
        fi
    done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 18 05:42:46 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/trace/gen.go

    	if region.Start != nil {
    		startStack = region.Start.Stack()
    		startTime = region.Start.Time()
    		goroutine = region.Start.Goroutine()
    	}
    	if region.End != nil {
    		endStack = region.End.Stack()
    		endTime = region.End.Time()
    		goroutine = region.End.Goroutine()
    	}
    	if goroutine == trace.NoGoroutine {
    		return
    	}
    	arg := struct {
    		TaskID uint64 `json:"taskid"`
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    		}
    		return true
    	})
    
    	// Check for t.Forbidden() calls within each region r that is a
    	// callee in some go r() or a t.Run("name", r).
    	//
    	// Also considers a special case when r is a go t.Forbidden() call.
    	for _, region := range regions {
    		ast.Inspect(region, func(n ast.Node) bool {
    			if n == region {
    				return true // always descend into the region itself.
    			} else if asyncs[n] != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

      // Create a stand-alone region to hold all instructions in the cluster.
      Region region;
      region.push_back(new Block);
    
      // Move all operations in cluster to newly created region, stripping their
      // "device" attribute since launch op already carries device information.
      Block* block = &region.front();
      for (Operation* op : c.ops) {
        op->moveBefore(block, block->end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. cmd/signature-v4_test.go

    	now := UTCNow()
    	credentialTemplate := "%s/%s/%s/s3/aws4_request"
    
    	region := globalSite.Region()
    	accessKeyID := globalActiveCred.AccessKey
    	testCases := []struct {
    		queryParams map[string]string
    		headers     map[string]string
    		region      string
    		expected    APIErrorCode
    	}{
    		// (0) Should error without a set URL query.
    		{
    			region:   globalMinioDefaultRegion,
    			expected: ErrInvalidQueryParams,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3RegionalResourceTest.groovy

    import com.amazonaws.regions.RegionUtils
    import com.amazonaws.regions.Regions
    import com.amazonaws.services.s3.model.Region
    import com.google.common.base.Optional
    import spock.lang.Specification
    
    import static com.amazonaws.regions.Region.getRegion
    
    class S3RegionalResourceTest extends Specification {
    
        def "should determine the aws region from virtual hosted urls"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/node_tree_test.go

    				"region-1:\x00:zone-2": {"node-3", "node-4"},
    				"region-1:\x00:zone-3": {"node-5"},
    				"region-2:\x00:zone-2": {"node-6"},
    			},
    		},
    		{
    			name:       "nodes also using deprecated zone/region label",
    			nodesToAdd: allNodes[9:],
    			expectedTree: map[string][]string{
    				"region-2:\x00:zone-2": {"node-9"},
    				"region-2:\x00:zone-3": {"node-10"},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          SetPotentiallyWritten(operand->get());
        }
      });
    }
    
    void ResourceAnalyzer::PropagatePotentiallyWrittenUpFromCallee(
        Region& region, Operation::operand_range propagate_to) {
      (void)AnalyzeRegion(region);
      for (auto t : llvm::zip(region.getArguments(), propagate_to)) {
        if (!IsResource(std::get<0>(t))) {
          continue;
        }
        if (IsPotentiallyWritten(std::get<0>(t))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top