Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for region (0.19 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/closing-unknown-region

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 240 bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/trace/annotation.go

    	defer userRegion(id, regionEndCode, regionType)
    	fn()
    }
    
    // StartRegion starts a region and returns it.
    // The returned Region's [Region.End] method must be called
    // from the same goroutine where the region was started.
    // Within each goroutine, regions must nest. That is, regions started
    // after this region must be ended before this region can be ended.
    // Recommended usage is
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3RegionalResource.java

                String region = matcher.group(2);
                String key = matcher.group(4);
                Region derivedRegion;
                if (region.equals("external-1")) {
                    derivedRegion = Region.getRegion(Regions.US_EAST_1);
                } else {
                    derivedRegion = RegionUtils.getRegion(region);
                }
    
                this.region = Optional.of(derivedRegion);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

        // `tf.IfRegion` op and `scf_then_or_else_region` is the `then` or `else`
        // region of the new `scf.if` op. Further, `tf_if_region_return_type` is the
        // list of return types of the `tf.IfRegion` op.
        auto createScfThenOrElse = [](Region& tf_then_or_else_region,
                                      Region& scf_then_or_else_region,
                                      TypeRange tf_if_region_return_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

        // each resource type result
        func.walk([&](Operation* op) {
          // For all attached regions, assign ID to the region arguments.
          for (Region& region : op->getRegions()) {
            for (auto region_arg : TF::filter_resources(region.getArguments())) {
              InFlightDiagnostic diag = op->emitRemark("Region #")
                                        << region.getRegionNumber() << ", Arg #"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. cmd/signature-v4-parser.go

    	}
    
    	cred.scope.region = credElements[1]
    	// Verify if region is valid.
    	sRegion := cred.scope.region
    	// Region is set to be empty, we use whatever was sent by the
    	// request and proceed further. This is a work-around to address
    	// an important problem for ListBuckets() getting signed with
    	// different regions.
    	if region == "" {
    		region = sRegion
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. 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)
  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