Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 3,162 for Fun (0.02 sec)

  1. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DefaultProblemFactory.kt

                override fun exception(message: String): ProblemFactory.Builder {
                    exceptionMessage = message
                    return this
                }
    
                override fun exception(): ProblemFactory.Builder {
                    exceptionMessage = message.toString().capitalized()
                    return this
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPluginsTest.kt

        private
        fun String.replacedBySpaces() = repeat(' ', length)
    }
    
    
    private
    fun repeat(char: Char, count: Int) = String(CharArray(count) { char })
    
    
    private
    fun doesNotExist(): Matcher<in File> = object : TypeSafeMatcher<File>() {
    
        override fun describeTo(description: Description) {
            description.appendText("nonexistent file")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

        override fun canBuild(modelName: String): Boolean =
            modelName == "org.gradle.kotlin.dsl.tooling.builders.internal.IsolatedScriptsModel"
    
        override fun buildAll(modelName: String, project: Project): IsolatedScriptsModel {
            return isolatedScriptsModelFor(project as ProjectInternal)
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/context.kt

        private
        val typeRefContext = SchemaTypeRefContext(schema)
    
        override fun resolveRef(dataTypeRef: DataTypeRef): DataType = typeRefContext.resolveRef(dataTypeRef)
    
        fun enterScope(newScope: AnalysisScope) {
            mutableScopes.add(newScope)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/scopes/KtCompositeTypeScope.kt

        val subScopes: List<KaTypeScope>,
        override val token: KaLifetimeToken
    ) : KaTypeScope {
        override fun getAllPossibleNames(): Set<Name> = withValidityAssertion {
            buildSet {
                subScopes.flatMapTo(this) { it.getAllPossibleNames() }
            }
        }
    
        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            buildSet {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

     */
    internal fun FirBasedSymbol<*>.isInvokeFunction() =
        (this as? FirNamedFunctionSymbol)?.fir?.name == OperatorNameConventions.INVOKE
    
    fun FirFunctionCall.getCalleeSymbol(): FirBasedSymbol<*>? =
        calleeReference.getResolvedSymbolOfNameReference()
    
    fun FirFunctionCall.getCandidateSymbols(): Collection<FirBasedSymbol<*>> =
        calleeReference.getCandidateSymbols()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/FakeRoutePlanner.kt

      override val deferredPlans = ArrayDeque<RoutePlanner.Plan>()
    
      override val address = factory.newAddress("example.com")
    
      fun addPlan(): FakePlan {
        return FakePlan(nextPlanId++).also {
          plans += it
        }
      }
    
      override fun isCanceled() = canceled
    
      override fun plan(): FakePlan {
        // Return deferred plans preferentially. These don't require addPlan().
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

        companion object {
            fun <T : Any> of(container: NamedDomainObjectContainer<T>) =
                NamedDomainObjectContainerScope(container)
        }
    
        override fun <U : T> register(name: String, type: Class<U>, configurationAction: Action<in U>): NamedDomainObjectProvider<U> =
            polymorphicDomainObjectContainer().register(name, type, configurationAction)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Headers.kt

        level = DeprecationLevel.ERROR,
      )
      fun size(): Int = size
    
      /** Returns the field at `position`. */
      fun name(index: Int): String = commonName(index)
    
      /** Returns the value at `index`. */
      fun value(index: Int): String = commonValue(index)
    
      /** Returns an immutable case-insensitive set of header names. */
      fun names(): Set<String> {
        val result = TreeSet(String.CASE_INSENSITIVE_ORDER)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DecoratedPropertyProblem.kt

    )
    
    
    class FailureDecorator {
    
        private
        val stringBuilder = StringBuilder()
    
        fun decorate(failure: Failure): DecoratedFailure {
            return DecoratedFailure(
                exceptionSummaryFor(failure),
                partitionedTraceFor(failure)
            )
        }
    
        private
        fun partitionedTraceFor(failure: Failure): List<StackTracePart> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top