Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 474 for Region (0.14 sec)

  1. src/runtime/mem_aix.go

    	// AIX does not allow mapping a range that is already mapped.
    	// So, call mprotect to change permissions.
    	// Note that sysMap is always called with a non-nil pointer
    	// since it transitions a Reserved memory region to Prepared,
    	// so mprotect is always possible.
    	_, err := mprotect(v, n, _PROT_READ|_PROT_WRITE)
    	if err == _ENOMEM {
    		throw("runtime: out of memory")
    	}
    	if err != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir_wrapper/builders.cc

                                          llvm::ArrayRef<mlir::Type>(outputs));
               });
      py::class_<mlir::OpBuilder>(m, "OpBuilder")
          .def(py::init<mlir::MLIRContext*>())
          .def(py::init<mlir::Region&>())
          .def(py::init<mlir::Operation*>())
          .def(py::init<mlir::Block*, mlir::Block::iterator>())
          .def("getUnknownLoc", &mlir::OpBuilder::getUnknownLoc)
          .def("setInsertionPoint",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 08:44:55 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    	ntype := strings.Split(value, "~")[0]
    	return newOption("nodeType", ntype)
    }
    
    func XdsType(value string) Instance {
    	return newOption("xds_type", value)
    }
    
    func Region(value string) Instance {
    	return newOptionOrSkipIfZero("region", value)
    }
    
    func Zone(value string) Instance {
    	return newOptionOrSkipIfZero("zone", value)
    }
    
    func SubZone(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/runtime/mem_darwin.go

    	madvise(v, n, _MADV_FREE_REUSABLE)
    }
    
    func sysUsedOS(v unsafe.Pointer, n uintptr) {
    	// MADV_FREE_REUSE is necessary to keep the kernel's accounting
    	// accurate. If called on any memory region that hasn't been
    	// MADV_FREE_REUSABLE'd, it's a no-op.
    	madvise(v, n, _MADV_FREE_REUSE)
    }
    
    func sysHugePageOS(v unsafe.Pointer, n uintptr) {
    }
    
    func sysNoHugePageOS(v unsafe.Pointer, n uintptr) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/LocaleSupportDaemonIntegrationTest.groovy

            then:
            ranWithLocale changeLocale
            daemons.daemons.size() == 1
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4973")
        def "can use a locale without region (#overrideVersion)"() {
            Locale locale = Locale.ENGLISH
            buildScript """
                import org.gradle.util.GradleVersion
    
                task printLocale {
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top