Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for CONSTRUCTOR (0.42 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

        private final ArrayBlockingQueue<Exchange> eventQueue;
    
        /**
         * Constructor that makes passed in delegate run on single thread, and will block on last event.
         */
        public SimplexTransferListener(TransferListener delegate) {
            this(delegate, QUEUE_SIZE, BATCH_MAX_SIZE, true);
        }
    
        /**
         * Constructor that may alter behaviour of this listener.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/KtKeywordsRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtKeywordToken
    
    public class KaKeywordsRenderer private constructor(
        public val keywordRenderer: KaKeywordRenderer,
        public val keywordFilter: KaRendererKeywordFilter,
    ) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinCompositePackageProvider.kt

    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.platform.TargetPlatform
    
    public class KotlinCompositePackageProvider private constructor(
        override val providers: List<KotlinPackageProvider>,
    ) : KotlinPackageProvider(), KotlinCompositeProvider<KotlinPackageProvider> {
        override fun doesPackageExist(packageFqName: FqName, platform: TargetPlatform): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ImplicitImports.kt

    import org.gradle.internal.service.scopes.ServiceScope
    
    
    /**
     * Holds the list of imports implicitly added to every Kotlin build script.
     */
    @ServiceScope(Scope.Global::class)
    class ImplicitImports internal constructor(
        @Transient
        private val importsReader: ImportsReader
    ) {
    
        val list by lazy {
            gradleImports() + gradleKotlinDslImports()
        }
    
        private
        fun gradleImports() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForReceiverParameter.kt

    import org.jetbrains.kotlin.fir.FirSession
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    import org.jetbrains.kotlin.name.ClassId
    
    internal class KaFirAnnotationListForReceiverParameter private constructor(
        private val firCallableSymbol: FirCallableSymbol<*>,
        private val receiverParameter: FirAnnotationContainer,
        private val builder: KaSymbolByFirBuilder,
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/SublistMerger.kt

    import org.jetbrains.kotlin.utils.addToStdlib.partitionIsInstance
    
    /**
     * With each call to [merge], [SublistMerger] can merge all elements of a specific (reified) type into a single element using a supplied
     * constructor and then add it to [destination]. Unmerged elements are added to [destination] using [finish].
     *
     * The purpose of [SublistMerger] is to merge multiple different types of elements from a single origin list without the need for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(
          LiftQuantizableSpotsAsFunctionsDRQPass)
    
      // Constructor used by the PassRegistration. This is only used by test.
      explicit LiftQuantizableSpotsAsFunctionsDRQPass() = default;
    
      // Constructor used by manually creating the pass.
      explicit LiftQuantizableSpotsAsFunctionsDRQPass(
          const QuantMethod quantization_method, const OpSet target_opset,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-configuration/src/main/java/org/gradle/buildconfiguration/tasks/UpdateDaemonJvm.java

     *
     * @since 8.8
     */
    @DisableCachingByDefault(because = "Not worth caching")
    @Incubating
    public abstract class UpdateDaemonJvm extends DefaultTask {
        /**
         * Constructor.
         *
         * @since 8.8
         */
        @Inject
        public UpdateDaemonJvm() {
    
        }
    
        @TaskAction
        void generate() {
            IncubationLogger.incubatingFeatureUsed("Daemon JVM criteria");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorFactory.kt

        }
        return analysisSession.substitutorFactory.buildSubstitutor(KaSubstitutorBuilder(token).apply(build))
    }
    
    
    public class KaSubstitutorBuilder
    @KaAnalysisApiInternals constructor(override val token: KaLifetimeToken) : KaLifetimeOwner {
        private val backingMapping = mutableMapOf<KaTypeParameterSymbol, KaType>()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Writer.java

     *
     * @deprecated Maven 3 compatability - please use {@link MetadataStaxWriter}
     */
    @Deprecated
    public class MetadataXpp3Writer {
    
        private final MetadataStaxWriter delegate;
    
        /**
         * Default constructor
         */
        public MetadataXpp3Writer() {
            delegate = new MetadataStaxWriter();
        }
    
        /**
         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top