Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for Backend (0.14 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  <li>or as composite/multi-type codecs, backed by a set of bindings, via {@link org.gradle.internal.serialize.graph.codecs.Bindings#build()} - see below for more on Bindings.
     *  </ul>
     *
     * <h3>Building Composite Codecs using Bindings</h3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueCache.java

     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import java.util.Map;
    import java.util.function.Function;
    
    /**
     * A cache backed by calculated values. This map is thread-safe.
     */
    public interface CalculatedValueCache<K, V> {
    
        /**
         * @see Map#computeIfAbsent(Object, Function)
         */
        V computeIfAbsent(K key, Function<K, V> factory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1014 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtJvmTypeMapper.kt

            withValidityAssertion { analysisSession.jvmTypeMapper.mapTypeToJvmType(this, mode) }
    
        /**
         * Returns true if the type is backed by a single JVM primitive type
         */
        public val KaType.isPrimitiveBacked: Boolean
            get() = withValidityAssertion { analysisSession.jvmTypeMapper.isPrimitiveBacked(this) }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiSymbol.kt

    import com.intellij.psi.PsiElement
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin
    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    
    /**
     * A [KaFirSymbol] that is backed by some [PsiElement] and builds [firSymbol] lazily (by convention), allowing some properties to be
     * calculated without the need to build a [firSymbol].
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 881 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

         * <p>
         * For example, the value might have been restored from the configuration cache.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, T value);
    
        /**
         * Creates a cache backed by calculated values.
         */
        <K, V> CalculatedValueCache<K, V> createCache(DisplayName type);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

      // Insert/find if prefix is unique.
      auto prefix_it = name_to_count_.try_emplace(prefix, 0);
      if (prefix_it.second && IsUnique(prefix)) {
        // Name is unique, increment count and return string name backed by
        // `name_to_count_`.
        ++prefix_it.first->second;
        return prefix_it.first->first();
      }
    
      // Add increasing number (count) to end of prefix until it is determined
      // to be unique.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/runlit.cfg.py

        'mlir-hlo-opt',
        'mlir-opt',
        'mlir-tflite-runner',
        'mlir-translate',
        'odml-to-stablehlo-opt',
        'odml_to_stablehlo',
        'odml-converter',
        'stable-quant-opt',
        'tac-opt-all-backends',
        'tac-translate',
        'tf-mlir-translate',
        'tf-opt',
        'tf-quant-opt',
        'tf-reduce',
        'tf-tfrt-opt',
        'tf_tfjs_translate',
        'tf_tfl_translate',
        'tfcompile',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-nnapi.mlir

    // RUN: tac-opt-all-backends -tfl-device-transform-nnapi %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @mean_4d_keepdim(%arg0: tensor<1x48x48x512xf32>) -> tensor<1x1x1x512xf32> {
      %cst = arith.constant dense<[1, 2]> : tensor<2xi32>
      %0 = "tfl.mean"(%arg0, %cst) {keep_dims = true} : (tensor<1x48x48x512xf32>, tensor<2xi32>) -> tensor<1x1x1x512xf32>
      func.return %0 : tensor<1x1x1x512xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/LocalModuleComponentRepository.java

     * by {@link #getLocalAccess()} will attempt both local _and_ remote access operations on the delegate.
     *
     * This is used to wrap a file-backed ExternalResourceRepository instance, so that both 'local' and 'remote' operations will
     * be considered local.
     */
    public class LocalModuleComponentRepository<T> extends BaseModuleComponentRepository<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/JdkBackedImmutableBiMap.java

    import com.google.j2objc.annotations.WeakOuter;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Implementation of ImmutableBiMap backed by a pair of JDK HashMaps, which have smartness
     * protecting against hash flooding.
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top