Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 888 for Size (0.04 sec)

  1. android/guava/src/com/google/common/collect/CompactHashMap.java

        int size = this.size;
        if (size < requireEntries().length) {
          resizeEntries(size);
        }
        int minimumTableSize = CompactHashing.tableSize(size);
        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
          resizeTable(mask, minimumTableSize, UNSET, UNSET);
        }
      }
    
      @Override
      public void clear() {
        if (needsAllocArrays()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    bool IsIotaAttr(ArrayRef<int64_t> arr, int64_t size) {
      if (arr.size() != size) return false;
      int64_t iota = 0;
      for (auto s : arr) {
        if (s != iota) return false;
        ++iota;
      }
      return true;
    }
    
    PermutationAndShape GetPermutationAndTransposedShape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            dependencyAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
            mergeAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
    
            when:
            file("included/src/main/java/Bar.java").text = barContentOnChange
            run("tasks")
    
            then:
            typeHierarchyAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                roots.size() == 1
                with(roots[0]) {
                    path == file("a/src").absolutePath
                    children.size() == 4
                    with(children[0]) {
                        path == "a"
                        children.size() == 2
                        with(children[0]) {
                            path == "a"
                            children.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      ArrayRef<int64_t> shape_y1 =
          shape_lhs.drop_front(shape_b.size()).drop_back(shape_c.size());
    
      // Check %before shape, and extract Y2 from it.
      ArrayRef<int64_t> shape_before = reshape_before.getType().getShape();
      if (shape_before.take_front(shape_b.size()) != shape_b ||
          shape_before.take_back(shape_c.size()) != shape_c) {
        return failure();
      }
      ArrayRef<int64_t> shape_y2 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. cmd/encryption-v1.go

    		if err != nil {
    			err = errObjectTampered // assign correct error type
    		}
    		return int64(size), err
    	}
    
    	var size int64
    	for _, part := range o.Parts {
    		partSize, err := sio.DecryptedSize(uint64(part.Size))
    		if err != nil {
    			return 0, errObjectTampered
    		}
    		size += int64(partSize)
    	}
    	return size, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            with(realize) {
                progress.size() == 1
                with(progress[0]) {
                    detailsClassName == LogEvent.name
                    details.message.startsWith("create")
                }
    
                children.size() == 2
                with(children[0]) {
                    progress.size() == 1
                    progress[0].detailsClassName == LogEvent.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

          new_shape_array.size(), builder->getIntegerType(32));
    
      // This is to workaround the unnecessary cast i64 -> i32. :(
      // TODO(renjieliu): Revisit this later.
      SmallVector<int32_t, 4> new_shape_array_i32;
      for (auto size : new_shape_array) {
        new_shape_array_i32.push_back(
            ShapedType::isDynamic(size) ? -1 : static_cast<int32_t>(size));
      }
      auto new_shape_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            // verify a few typical parameters are not duplicated
            assertEquals(1, project.getTestCompileSourceRoots().size());
            assertEquals(1, project.getCompileSourceRoots().size());
            assertEquals(1, project.getMailingLists().size());
            assertEquals(1, project.getResources().size());
        }
    
        @Test
        void testPropertyInPluginManagementGroupId() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

    template <typename T>
    bool BroadcastVector(int target_size, SmallVectorImpl<T>& data) {
      const int size = data.size();
      if (size != target_size) {
        if (target_size % size != 0) return true;
        data.reserve(target_size);
        for (int i = 1; i < target_size / size; ++i) {
          data.insert(data.end(), data.begin(), data.begin() + size);
        }
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top