Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for upperBound (0.22 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org/apache/maven/artifact/versioning/Restriction.class package org.apache.maven.artifact.versioning; public synchronized class Restriction { private final ArtifactVersion lowerBound; private final boolean lowerBoundInclusive; private final ArtifactVersion upperBound; private final boolean upperBoundInclusive; static final Restriction EVERYTHING; public void Restriction(ArtifactVersion, boolean, ArtifactVersion, boolean); public ArtifactVersion getLowerBound(); public boolean isLowerBoundInclusiv(); public ArtifactVersion...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org/apache/maven/artifact/versioning/Restriction.class package org.apache.maven.artifact.versioning; public synchronized class Restriction { private final ArtifactVersion lowerBound; private final boolean lowerBoundInclusive; private final ArtifactVersion upperBound; private final boolean upperBoundInclusive; static final Restriction EVERYTHING; public void Restriction(ArtifactVersion, boolean, ArtifactVersion, boolean); public ArtifactVersion getLowerBound(); public boolean isLowerBoundInclusiv(); public ArtifactVersion...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 160.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/TypeMetaData.java

                }
            }
        }
    
        public TypeMetaData setWildcard() {
            wildcard = true;
            return this;
        }
    
        public TypeMetaData setUpperBounds(TypeMetaData upperBounds) {
            this.upperBounds = upperBounds;
            return this;
        }
    
        public TypeMetaData setLowerBounds(TypeMetaData lowerBounds) {
            this.lowerBounds = lowerBounds;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescTypeParameterSymbol.kt

    ) : KaTypeParameterSymbol(), KaFe10DescSymbol<TypeParameterDescriptor> {
        override val name: Name
            get() = withValidityAssertion { descriptor.name }
    
        override val upperBounds: List<KaType>
            get() = withValidityAssertion { descriptor.upperBounds.filterNot { it.isNullableAny() }.map { it.toKtType(analysisContext) } }
    
        override val variance: Variance
            get() = withValidityAssertion { descriptor.variance }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.h

     private:
      // Expands the histogram so the lower_bound and upper_bound can fit in the
      // histogram. Returns the indexes associated to those values.
      std::pair<int32_t, int32_t> ExpandHistogramIfNeeded(float lower_bound,
                                                          float upper_bound);
    
      // hist_freq_[i] saves frequency of range [bins[i], bins[i + 1]).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtTypeParametersRenderer.kt

                    )
                    if (typeParameter.upperBounds.size == 1) {
                        append(" : ")
                        val kaType = typeParameter.upperBounds.single()
                        val type = declarationRenderer.declarationTypeApproximator.approximateType(analysisSession, kaType, Variance.OUT_VARIANCE)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/passes/canonicalize.cc

        Location loc = for_op.getLoc();
        APInt lower_bound, upper_bound, step;
        if (!matchPattern(for_op.getLowerBound(), m_ConstantInt(&lower_bound)) ||
            !matchPattern(for_op.getUpperBound(), m_ConstantInt(&upper_bound)) ||
            !matchPattern(for_op.getStep(), m_ConstantInt(&step))) {
          return failure();
        }
        uint64_t trip_count = (upper_bound - lower_bound).sdiv(step).getZExtValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/AsmClassGeneratorUtils.java

            Type[] upperBounds = type.getUpperBounds();
            if (upperBounds.length == 1 && upperBounds[0].equals(Object.class)) {
                if (type.getLowerBounds().length == 0) {
                    builder.append('*');
                    return;
                }
            } else {
                visitTypesWithPrefix('+', upperBounds, builder);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/classifiers/KtSingleTypeParameterSymbolRenderer.kt

                        {
                            if (symbol.upperBounds.isNotEmpty()) {
                                withPrefix(": ") {
                                    printCollection(symbol.upperBounds) {
                                        val approximatedType = declarationRenderer.declarationTypeApproximator
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiTypeParameterSymbol.kt

        }
    
        override val variance: Variance
            get() = withValidityAssertion { psi.variance }
    
        override val upperBounds: List<KaType>
            get() = withValidityAssertion {
                descriptor?.upperBounds?.filterNot { it.isNullableAny() }?.map { it.toKtType(analysisContext) } ?: emptyList()
            }
    
        override val isReified: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top