Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 603 for Region (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        The `tf_executor.island` region allows implicit capture. If any value
        captured by a `tf_executor.island` is dead, the whole region does not
        execute and every produced value is marked as dead as well.
        An arbitrary number of `tf_executor.control` operands are accepted by a
        `tf_executor.island` operation.
        If any operand or implicitly captured value are dead, the region is not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

            }
            // Transfer the annotation to both region arguments
            for (Region* region : while_region.getRegions()) {
              BlockArgument arg = region->getArgument(output_index);
              LLVM_DEBUG(llvm::dbgs()
                         << "  Propagating device = '" << *device << "' to arg #"
                         << output_index << " of region #"
                         << region->getRegionNumber() << "\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cmd/signature-v4-parser_test.go

    	}
    	if expectedCredentials.scope.region != actualCredential.scope.region {
    		t.Errorf("Test %d: region mismatch:Expected \"%s\", got \"%s\"", testNum, expectedCredentials.scope.region, actualCredential.scope.region)
    	}
    	if expectedCredentials.scope.service != actualCredential.scope.service {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

    } PosixMemoryRegion;
    
    static void Cleanup(TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<PosixMemoryRegion*>(region->plugin_memory_region);
      munmap(const_cast<void*>(r->address), r->length);
      delete r;
    }
    
    static const void* Data(const TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<PosixMemoryRegion*>(region->plugin_memory_region);
      return r->address;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	for i, localityEndpoint := range loadAssignment.Endpoints {
    		// if region/zone/subZone all match, the priority is 0.
    		// if region/zone match, the priority is 1.
    		// if region matches, the priority is 2.
    		// if locality not match, the priority is 3.
    		priority := util.LbPriority(locality, localityEndpoint.Locality)
    		// region not match, apply failover settings when specified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      // Registered hook to check if the given region, which is attached to an
      // operation that is *not* isolated from above (i.e. no internal regions
      // reference values defined in an enclosing region), should be used when
      // materializing constants.
      // In the executor dialect we materialize inside an island.
      bool shouldMaterializeInto(Region *region) const final {
        return isa<tf_executor::IslandOp>(region->getParentOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Client.java

            if (endpoint.isPresent()) {
                amazonS3Client.setEndpoint(endpoint.get().toString());
            } else {
                Optional<Region> region = s3RegionalResource.getRegion();
                if (region.isPresent()) {
                    amazonS3Client.setRegion(region.get());
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top