Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,303 for Region (0.1 sec)

  1. src/runtime/runtime_mmap_test.go

    	}
    }
    
    func TestPhysPageSize(t *testing.T) {
    	// Mmap fails if the address is not page aligned, so we can
    	// use this to test if the page size is the true page size.
    	ps := runtime.GetPhysPageSize()
    
    	// Get a region of memory to play with. This should be page-aligned.
    	b, err := runtime.Mmap(nil, 2*ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE, -1, 0)
    	if err != 0 {
    		t.Fatalf("Mmap: %v", err)
    	}
    
    	if runtime.GOOS == "aix" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_inline_device_ops.cc

    namespace mlir {
    
    namespace {
    
    #define GEN_PASS_DEF_XLAINLINEDEVICEOPSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.h.inc"
    
    // XlaInlineDeviceOps Pass will inline cluster op based in the parent region.
    struct XlaInlineDeviceOpsPass
        : public impl::XlaInlineDeviceOpsPassBase<XlaInlineDeviceOpsPass> {
      void runOnOperation() override;
    };
    
    void InlineDeviceOp(tf_device::ClusterOp cluster_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 00:59:46 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.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 TFLite dialect we materialize inside a while regions as slightly
      // more efficient computationally.
      bool shouldMaterializeInto(Region* region) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyConstraintFactory.java

            if (dependency instanceof DefaultDependencyConstraint) {
                ((DefaultDependencyConstraint) dependency).setAttributesFactory(attributesFactory);
            }
        }
    
        // region DependencyConstraintFactory methods
    
        @Override
        public DependencyConstraint create(CharSequence dependencyNotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.h

    //   case. If successful, the following invariants will hold true:
    //   (a) For if/case, any resource type results will be deleted.
    //   (b) For while, any resource type results will be unused.
    // - Canonicalize region based control flow. Again, any resource outputs are
    //   expected to be resolved to be one of the captured resource inputs. Fails
    //   if this is not the case. If successful, the following invariants will hold
    //   true:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      std::unique_ptr<ReadOnlyMemoryRegion> region;
      status = env_->NewReadOnlyMemoryRegionFromFile(filepath, &region);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
      if (!status.ok())
        GTEST_SKIP() << "NewReadOnlyMemoryRegionFromFile() not supported: "
                     << status;
      EXPECT_EQ(region->length(), test_data.size());
      EXPECT_STREQ(reinterpret_cast<const char*>(region->data()),
                   test_data.c_str());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	if accessKeyID == "" || secretAccessKey == "" {
    		return errors.New("Presign cannot be generated without access and secret keys")
    	}
    
    	region := globalSite.Region()
    	date := UTCNow()
    	scope := getScope(date, region)
    	credential := fmt.Sprintf("%s/%s", accessKeyID, scope)
    
    	// Set URL query.
    	query := req.URL.Query()
    	query.Set("X-Amz-Algorithm", signV4Algorithm)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. pkg/model/proxy.go

    func ConvertLocality(locality string) *core.Locality {
    	if locality == "" {
    		return &core.Locality{}
    	}
    
    	region, zone, subzone := label.SplitLocalityLabel(locality)
    	return &core.Locality{
    		Region:  region,
    		Zone:    zone,
    		SubZone: subzone,
    	}
    }
    
    // ALPNH2Only advertises that Proxy is going to use HTTP/2 when talking to the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-annotations.test

    String id=21
    	data="start trace"
    String id=22
    	data="task0"
    String id=23
    	data="task0 region"
    String id=24
    	data="unended region"
    String id=25
    	data="region0"
    String id=26
    	data="region1"
    String id=27
    	data="key0"
    String id=28
    	data="0123456789abcdef"
    String id=29
    	data="post-existing region"
    String id=30
    	data="main.main.func1.1"
    String id=31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    		// against C code, it's possible global constructors
    		// have called malloc and adjusted the process' brk.
    		// Query the brk so we can avoid trying to map the
    		// region over it (which will cause the kernel to put
    		// the region somewhere else, likely at a high
    		// address).
    		procBrk := sbrk0()
    
    		// If we ask for the end of the data segment but the
    		// operating system requires a little more space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top