Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for RefCount (0.2 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

    #include "tensorflow/core/framework/op_requires.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/lib/core/refcount.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/tfrt/common/pjrt_util.h"
    #include "tsl/platform/errors.h"
    
    namespace tensorflow {
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	Flags   int32
    	Index   uint16
    	_       [2]byte
    }
    
    type IfmaMsghdr2 struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Addrs    int32
    	Flags    int32
    	Index    uint16
    	Refcount int32
    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. tensorflow/c/kernels_experimental.cc

    #include "tensorflow/core/platform/abi.h"
    #endif  // IS_MOBILE_PLATFORM
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mutex.h"
    #include "tensorflow/core/platform/refcount.h"
    
    using tensorflow::AllocatorAttributes;
    using tensorflow::mutex_lock;
    using tensorflow::ResourceBase;
    using tensorflow::Status;
    using tensorflow::Tensor;
    using tensorflow::TF_TensorFromTensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. pkg/kubelet/util/manager/watch_based_manager.go

    	key := objectKey{namespace: namespace, name: name}
    
    	// AddReference is called from RegisterPod thus it needs to be efficient.
    	// Thus, it is only increasing refCount and in case of first registration
    	// of a given object it starts corresponding reflector.
    	// It's responsibility of the first Get operation to wait until the
    	// reflector propagated the store.
    	c.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/get_compiler_ir.cc

    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/refcount.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. tensorflow/c/eager/gradients.cc

                   const GradientRegistry& registry) {
      TF_RETURN_IF_ERROR(op_->Execute(retvals, num_retvals));
      for (int i = 0; i < *num_retvals; i++) {
        // TODO(srbs): Manage refcount of ForwardOperation's inputs/outputs.
        forward_op_->outputs.push_back(retvals[i]);
      }
      // TODO(b/166669239): This is needed to support AttrBuilder::Get for string
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. pkg/volume/util/fsquota/quota_linux.go

    var devApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    
    // Directory -> applier
    var dirApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    var dirApplierLock sync.RWMutex
    
    // Pod -> refcount
    var podDirCountMap = make(map[types.UID]int)
    
    // ID -> size
    var quotaSizeMap = make(map[common.QuotaID]int64)
    var quotaLock sync.RWMutex
    
    var supportsQuotasMap = make(map[string]bool)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph.go

    	edgeCount := g.graph.Degree(n)
    	if edgeCount < g.destinationEdgeThreshold {
    		delete(g.destinationEdgeIndex, n.ID())
    		return
    	}
    
    	// decrement the nodeID->destinationID refcount in the index, if the index exists
    	index := g.destinationEdgeIndex[n.ID()]
    	if index == nil {
    		return
    	}
    	if destinationEdge, ok := e.(*destinationEdge); ok {
    		index.decrement(destinationEdge.DestinationID())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/refcount.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    namespace TF {
    using tensorflow::AbstractFunction;
    using tensorflow::AbstractOperation;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util_test.cc

    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/tensor_testutil.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/kernels/ops_testutil.h"
    #include "tensorflow/core/platform/refcount.h"
    #include "tensorflow/core/tfrt/common/create_pjrt_client_util.h"
    #include "tensorflow/core/tfrt/common/pjrt_util.h"
    #include "tsl/framework/allocator.h"
    #include "tsl/framework/device_id_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top