Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getDirs (0.14 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.repositories.FlatDirectoryArtifactRepository.getDirs()> does not have raw return type assignable to org.gradle.api.provider.Property in (FlatDirectoryArtifactRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          is_scalar_rhs = true;
        } else if (constant_val_type.getRank() > 1) {
          return failure();
        }
    
        Value filter = fc_op.getFilter();
        Value bias = fc_op.getBias();
        ElementsAttr bias_value;
        const bool is_none_bias = mlir::isa<NoneType>(bias.getType());
        if (fc_op.getFusedActivationFunction() != "NONE") return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/bootstrap.min.js.map

    ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Alert {\n  constructor(element) {\n    this._element = element\n  }\n\n  // Getters\n\n  static get VERSION() {\n    return VERSION\n  }\n\n  // Public\n\n  close(element) {\n    let rootElement = this._element\n    if (element) {\n      rootElement = this._getRootElement(element)\n    }\n\n    const customEvent = this._triggerC...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/bootstrap.min.js.map

    ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Alert {\n  constructor(element) {\n    this._element = element\n  }\n\n  // Getters\n\n  static get VERSION() {\n    return VERSION\n  }\n\n  // Public\n\n  close(element) {\n    let rootElement = this._element\n    if (element) {\n      rootElement = this._getRootElement(element)\n    }\n\n    const customEvent = this._triggerC...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Bias tensor is optional.
      const bool has_bias = !(!getBias() || getBias().getType().isa<NoneType>());
    
      // Get the tensors.
      DenseElementsAttr input_tensor, weights_tensor, bias_tensor;
      if (!matchPattern(getInput(), m_Constant(&input_tensor)) ||
          !matchPattern(getFilter(), m_Constant(&weights_tensor)) ||
          (has_bias && !matchPattern(getBias(), m_Constant(&bias_tensor)))) {
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

              "format");
      }
    
      if (!IsOfRankOrUnranked(op.getBias(), 1))
        return op.emitOpError("requires bias operand to have rank exactly one");
    
      RankedTensorType value_ty =
          mlir::dyn_cast<RankedTensorType>(op.getValue().getType());
      RankedTensorType bias_ty =
          mlir::dyn_cast<RankedTensorType>(op.getBias().getType());
      if (!bias_ty || !value_ty) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }
            }
    
            /**
             * Generates the init method with deprecation logging disabled.
             *
             * This is necessary because the initialization work invokes property getters on the decorated instance.
             */
            private void generateInitMethod() {
    
                // private void $gradleInit() { DeprecationLogger.whileDisabled(this::$gradleInitWork) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

            if (weight > 0) {
              return e;
            }
          }
          throw new AssertionError();
        }
    
        /** Returns first entry of bin for given hash. */
        ReferenceEntry<K, V> getFirst(int hash) {
          // read this volatile field only once
          AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
          return table.get(hash & (table.length() - 1));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

            if (weight > 0) {
              return e;
            }
          }
          throw new AssertionError();
        }
    
        /** Returns first entry of bin for given hash. */
        ReferenceEntry<K, V> getFirst(int hash) {
          // read this volatile field only once
          AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
          return table.get(hash & (table.length() - 1));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ShapedTypeComponents inferred = std::get<1>(result);
        TensorType inferred_type;
        if (inferred.hasRank()) {
          inferred_type =
              RankedTensorType::get(inferred.getDims(), inferred.getElementType());
    
        } else {
          inferred_type = UnrankedTensorType::get(inferred.getElementType());
        }
        inferred_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top