Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for CONSTRUCTOR (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.util.Path
    import java.io.File
    import java.io.InputStream
    import java.io.OutputStream
    
    
    @ServiceScope(Scope.Build::class)
    class ConfigurationCacheIO internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
        private val host: DefaultConfigurationCache.Host,
        private val problems: ConfigurationCacheProblems,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

                        quantfork::QuantizationForkDialect>();
      }
    
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PreprocessOpPass)
    
      explicit PreprocessOpPass() = default;
    
      // Constructor used by manually creating the pass.
      explicit PreprocessOpPass(OpSet op_set, const QuantMethod quantization_method,
                                bool enable_per_channel_quantization) {
        op_set_ = op_set;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

            if (fir.realPsi != null) return fir.realPsi === psi
    
            if (fir is FirConstructor && psi is KtConstructor<*>) {
                if (psi is KtPrimaryConstructor && fir.isPrimary) return true // There can only be one primary constructor.
                if (psi is KtPrimaryConstructor || fir.isPrimary) return false
            }
    
            if (!modifiersMatch(psi, fir)) return false
            if (!receiverTypeMatches(psi, fir)) return false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

         */
        abstract override val name: Name
    
        /**
         * The corresponding [KaPropertySymbol] if the current value parameter is a `val` or `var` declared inside the primary constructor.
         */
        public open val generatedPrimaryConstructorProperty: KaKotlinPropertySymbol? get() = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.util.Path
    import java.io.File
    import java.util.Objects
    import java.util.function.Supplier
    
    
    class CrossProjectConfigurationReportingGradle private constructor(
        gradle: GradleInternal,
        private val referrerProject: ProjectInternal,
        private val crossProjectModelAccess: CrossProjectModelAccess,
        private val projectConfigurator: CrossProjectConfigurator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                is ConeLookupTagBasedType -> lookupTag.name.asString().toConstantValueKind()
                is ConeFlexibleType -> upperBound.toConstantValueKind()
                is ConeCapturedType -> lowerType?.toConstantValueKind() ?: constructor.supertypes!!.first().toConstantValueKind()
                is ConeDefinitelyNotNullType -> original.toConstantValueKind()
                is ConeIntersectionType -> intersectedTypes.first().toConstantValueKind()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

     *
     * This class is intentionally named similarly to {@link ArtifactVariantSelector}, as it has a
     * similar purpose.  An instance of {@link ResolutionFailureHandler} is injected in the constructor
     * to allow the caller to handle failures in a consistent way - all matching failures should be reported via
     * calls to that instance.
     */
    public class GraphVariantSelector {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

        propertyDelegateFor(serviceOf(), this, property)
    
    
    /**
     * Creates a container for managing named objects of the specified type.
     *
     * The specified type must have a public constructor which takes the name as a [String] parameter.
     *
     * All objects **MUST** expose their name as a bean property named `name`.
     * The name must be constant for the life of the object.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/Striped64.java

       */
      transient volatile long base;
    
      /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */
      transient volatile int busy;
    
      /** Package-private default constructor */
      Striped64() {}
    
      /** CASes the base field. */
      final boolean casBase(long cmp, long val) {
        return UNSAFE.compareAndSwapLong(this, baseOffset, cmp, val);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

    
    /**
     * Coordinates the writing and reading of the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheFingerprintController internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
        private val modelParameters: BuildModelParameters,
        private val workInputListeners: WorkInputListeners,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top