Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for upperBound (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeParameterSymbolBase.kt

            get() = withValidityAssertion {
                KaFirAnnotationListForDeclaration.create(firSymbol, builder)
            }
    
        @OptIn(UnexpandedTypeCheck::class)
        override val upperBounds: List<KaType> by cached {
            firSymbol.resolvedBounds.mapNotNull { type ->
                if (type.isNullableAny) return@mapNotNull null
                builder.typeBuilder.buildKtType(type)
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

      return statistics;
    }
    
    std::pair<int32_t, int32_t>
    CalibrationStatisticsCollectorHistogram::ExpandHistogramIfNeeded(
        const float lower_bound, const float upper_bound) {
      int32_t lower_idx = CalculateBinIndex(lower_bound, lower_bound_, bin_width_);
      // If lower_idx < 0, then expand the histogram to the left.
      if (lower_idx < 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeResolver.java

        }
    
        TypeVariable<?> captureAsTypeVariable(Type[] upperBounds) {
          String name =
              "capture#" + id.incrementAndGet() + "-of ? extends " + Joiner.on('&').join(upperBounds);
          return Types.newArtificialTypeVariable(WildcardCapturer.class, name, upperBounds);
        }
    
        private WildcardCapturer forTypeVariable(TypeVariable<?> typeParam) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeResolver.java

        }
    
        TypeVariable<?> captureAsTypeVariable(Type[] upperBounds) {
          String name =
              "capture#" + id.incrementAndGet() + "-of ? extends " + Joiner.on('&').join(upperBounds);
          return Types.newArtificialTypeVariable(WildcardCapturer.class, name, upperBounds);
        }
    
        private WildcardCapturer forTypeVariable(TypeVariable<?> typeParam) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtClassLikeSymbol.kt

        final override val typeParameters: List<KaTypeParameterSymbol>
            get() = withValidityAssertion { emptyList() }
    
        public abstract val upperBounds: List<KaType>
        public abstract val variance: Variance
        public abstract val isReified: Boolean
    }
    
    public typealias KtTypeParameterSymbol = KaTypeParameterSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                    return;
                }
                referencedTypes.add(type.toErasure());
                if (type instanceof JavaTypeVariable) {
                    List<JavaType> upperBounds = ((JavaTypeVariable<?>) type).getUpperBounds();
                    upperBounds.forEach(bound -> unpackJavaType(bound, referencedTypes, visited));
                } else if (type instanceof JavaGenericArrayType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

      // incomplete reads may still go undetected.
      if (block->data.size() < block_size_) {
        Key fmax = std::make_pair(key.first, std::numeric_limits<size_t>::max());
        auto fcmp = block_map_.upper_bound(fmax);
        if (fcmp != block_map_.begin() && key < (--fcmp)->first) {
          return TF_SetStatus(status, TF_INTERNAL,
                              "Block cache contents are inconsistent.");
        }
      }
    
      Trim();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            // Type parameters cannot act as receiver types in KDoc
            if (actualReceiverType is KaTypeParameterType) return false
    
            if (type is KaTypeParameterType) {
                return type.symbol.upperBounds.all { isPossiblySuperTypeOf(it, actualReceiverType) }
            }
    
            val receiverExpanded = actualReceiverType.expandedSymbol
            val expectedExpanded = type.expandedSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedOperandTypeAttr Tnumsegments = TF_DerivedOperandTypeAttr<2>;
    
      let hasVerifier = 1;
    }
    
    def TF_UpperBoundOp : TF_Op<"UpperBound", [Pure]> {
      let summary = [{
    Applies upper_bound(sorted_search_values, values) along each row.
      }];
    
      let description = [{
    Each set of rows with the same index in (sorted_inputs, values) is treated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisLibrarySourceModuleResolveCallTestGenerated.java

          }
    
          @Test
          @TestMetadata("upperBound1.kt")
          public void testUpperBound1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/functionCall/upperBound1.kt");
          }
    
          @Test
          @TestMetadata("upperBound2.kt")
          public void testUpperBound2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 175.8K bytes
    - Viewed (0)
Back to top