Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for hasLink (0.57 sec)

  1. android/guava/src/com/google/common/cache/Striped64.java

       * holds the lock. If a hashed slot is empty, and lock is
       * available, a new Cell is created. Otherwise, if the slot
       * exists, a CAS is tried.  Retries proceed by "double hashing",
       * using a secondary hash (Marsaglia XorShift) to try to find a
       * free slot.
       *
       * The table size is capped because, when there are more threads
       * than CPUs, supposing that each thread were bound to a CPU,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/Striped64.java

       * holds the lock. If a hashed slot is empty, and lock is
       * available, a new Cell is created. Otherwise, if the slot
       * exists, a CAS is tried.  Retries proceed by "double hashing",
       * using a secondary hash (Marsaglia XorShift) to try to find a
       * free slot.
       *
       * The table size is capped because, when there are more threads
       * than CPUs, supposing that each thread were bound to a CPU,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. settings.gradle.kts

            subproject("build-cache-packaging")
            subproject("build-cache-spi")
            subproject("execution-e2e-tests")
            subproject("file-watching")
            subproject("execution")
            subproject("hashing")
            subproject("persistent-cache")
            subproject("snapshots")
            subproject("worker-main")
            subproject("workers")
        }
    }
    
    // Documentation Module
    module("documentation") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                moduleRegistry.getModule("gradle-file-temp").getImplementationClasspath().getAsURLs(),
                moduleRegistry.getModule("gradle-hashing").getImplementationClasspath().getAsURLs(),
                moduleRegistry.getModule("gradle-base-services").getImplementationClasspath().getAsURLs(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto input_ty = mlir::cast<ShapedType>(input.getType());
        auto min_ty = mlir::cast<ShapedType>(min.getType());
        auto max_ty = mlir::cast<ShapedType>(max.getType());
    
        if (!input_ty.hasRank() || !min_ty.hasRank() || !max_ty.hasRank()) {
          return failure();
        }
    
        auto shape = rewriter.create<TF::ShapeOp>(
            op.getLoc(),
            tensorflow::GetTypeFromTFTensorShape({input_ty.getRank()},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<int32_t> shape;
      if (tensor_type.hasRank()) {
        llvm::ArrayRef<int64_t> shape_ref = tensor_type.getShape();
        shape = std::vector<int32_t>(shape_ref.begin(), shape_ref.end());
      }
    
      variant_params.push_back(
          tflite::CreateVariantSubType(builder_, builder_.CreateVector(shape),
                                       tflite_element_type, tensor_type.hasRank()));
      return variant_params;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

    import static org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult.normalizeLambdaIds;
    import static org.gradle.internal.hash.Hashing.hashString;
    import static org.gradle.util.Matchers.normalizedLineSeparators;
    import static org.hamcrest.CoreMatchers.containsString;
    import static org.hamcrest.CoreMatchers.equalTo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Here we assume that the element_shape won't be changed before calling
        // the first `TensorListSetItemOp`.
        if (auto shaped_type = element_shape.getType().dyn_cast<ShapedType>()) {
          if (shaped_type.hasRank() && shaped_type.getRank() == 0) {
            bool element_shape_acquired = false;
            auto uses = op.getResult().getUses();
            for (auto &use : llvm::make_early_inc_range(uses)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Hashing of KeyID in Logs
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. RELEASE.md

            multi-hot, or tf-idf encoded representations
        *   `CategoryCrossing`: create new categorical features representing
            co-occurrences of previous categorical feature values
        *   `Hashing`: the hashing trick, for large-vocabulary categorical features
        *   `Discretization`: turn continuous numerical features into categorical
            features by binning their values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top