Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for refcount (0.15 sec)

  1. tensorflow/compiler/jit/xla_launch_util.cc

    #include "tensorflow/core/framework/resource_mgr.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/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/tfrt/common/async_value_tensor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/refcount.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/stream_executor_no_cuda.h"
    #include "tensorflow/core/profiler/lib/traceme.h"
    #include "tensorflow/core/util/stream_executor_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	OBJ_VALID_ATTRIBUTES              = 0x00001FF2
    )
    
    type IO_STATUS_BLOCK struct {
    	Status      NTStatus
    	Information uintptr
    }
    
    type RTLP_CURDIR_REF struct {
    	RefCount int32
    	Handle   Handle
    }
    
    type RTL_RELATIVE_NAME struct {
    	RelativeName        NTUnicodeString
    	ContainingDirectory Handle
    	CurDirRef           *RTLP_CURDIR_REF
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multisets.java

      }
    
      /** An implementation of {@link Multiset#setCount(Object, int, int)}. */
      static <E extends @Nullable Object> boolean setCountImpl(
          Multiset<E> self, @ParametricNullness E element, int oldCount, int newCount) {
        checkNonnegative(oldCount, "oldCount");
        checkNonnegative(newCount, "newCount");
    
        if (self.count(element) == oldCount) {
          self.setCount(element, newCount);
          return true;
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multisets.java

      }
    
      /** An implementation of {@link Multiset#setCount(Object, int, int)}. */
      static <E extends @Nullable Object> boolean setCountImpl(
          Multiset<E> self, @ParametricNullness E element, int oldCount, int newCount) {
        checkNonnegative(oldCount, "oldCount");
        checkNonnegative(newCount, "newCount");
    
        if (self.count(element) == oldCount) {
          self.setCount(element, newCount);
          return true;
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TreeMultiset.java

              if (expectedCount == 0 && newCount > 0) {
                return addLeftChild(e, newCount);
              }
              return this;
            }
    
            left = initLeft.setCount(comparator, e, expectedCount, newCount, result);
    
            if (result[0] == expectedCount) {
              if (newCount == 0 && result[0] != 0) {
                this.distinctElements--;
              } else if (newCount > 0 && result[0] == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

          oldCount = 0;
          backingMap.put(element, new Count(occurrences));
        } else {
          oldCount = frequency.get();
          long newCount = (long) oldCount + (long) occurrences;
          checkArgument(newCount <= Integer.MAX_VALUE, "too many occurrences: %s", newCount);
          frequency.add(occurrences);
        }
        size += occurrences;
        return oldCount;
      }
    
      @CanIgnoreReturnValue
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/EnumMultiset.java

          return count(element);
        }
        int index = element.ordinal();
        int oldCount = counts[index];
        long newCount = (long) oldCount + occurrences;
        checkArgument(newCount <= Integer.MAX_VALUE, "too many occurrences: %s", newCount);
        counts[index] = (int) newCount;
        if (oldCount == 0) {
          distinctElements++;
        }
        size += occurrences;
        return oldCount;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Serialization.java

       * in a multiset serialized by {@link #writeMultiset(Multiset, ObjectOutputStream)}, or the number
       * of distinct keys in a multimap serialized by {@link #writeMultimap(Multimap,
       * ObjectOutputStream)}.
       */
      static int readCount(ObjectInputStream stream) throws IOException {
        return stream.readInt();
      }
    
      /**
       * Stores the contents of a map in an output stream, as part of serialization. It does not support
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/EnumMultiset.java

          return count(element);
        }
        int index = element.ordinal();
        int oldCount = counts[index];
        long newCount = (long) oldCount + occurrences;
        checkArgument(newCount <= Integer.MAX_VALUE, "too many occurrences: %s", newCount);
        counts[index] = (int) newCount;
        if (oldCount == 0) {
          distinctElements++;
        }
        size += occurrences;
        return oldCount;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top