Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 596 for region (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

                               bool passthru_extra_args, int num_loop_carried,
                               const llvm::SetVector<Value>& extern_values,
                               const SmallVectorImpl<Type>& types, Location loc) {
      auto func = CreateOutlineFunc(name, region, passthru_extra_args,
                                    num_loop_carried, extern_values, types, loc);
      OpBuilder b(region);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/mem.go

    	return sysAllocOS(n)
    }
    
    // sysUnused transitions a memory region from Ready to Prepared. It notifies the
    // operating system that the physical pages backing this memory region are no
    // longer needed and can be reused for other purposes. The contents of a
    // sysUnused memory region are considered forfeit and the region must not be
    // accessed again until sysUsed is called.
    func sysUnused(v unsafe.Pointer, n uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top