Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for set_f (0.09 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/ConventionsInterpretationSequenceStep.kt

    
    internal
    fun conventionsDefinitionInterpretationSequenceStep(softwareTypeRegistry: SoftwareTypeRegistry) = SimpleInterpretationSequenceStep(
        "settingsConventions",
        features = setOf(ConventionDefinition()),
        buildEvaluationAndConversionSchema = { conventionsEvaluationSchema(softwareTypeRegistry) }
    )
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. native-image-tests/src/main/kotlin/okhttp3/GenerateClassList.kt

    package okhttp3
    
    import java.io.File
    import org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor
    import org.junit.platform.engine.discovery.DiscoverySelectors
    
    // TODO move to junit5 tags
    val avoidedTests =
      setOf(
        "okhttp3.BouncyCastleTest",
        "okhttp3.ConscryptTest",
        "okhttp3.CorrettoTest",
        "okhttp3.OpenJSSETest",
        "okhttp3.internal.platform.Jdk8WithJettyBootPlatformTest",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/base/KtFe10Type.kt

            get() = withValidityAssertion {
                KaFe10AnnotationList.create(
                    fe10Type.annotations,
                    analysisContext,
                    ignoredAnnotations = setOf(
                        StandardClassIds.Annotations.ExtensionFunctionType,
                        StandardClassIds.Annotations.ContextFunctionTypeParams,
                    )
                )
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. hack/make-rules/make-help.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    red=$(tput setaf 1)
    reset=$(tput sgr0)
    readonly red reset
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    ALL_TARGETS=$(make -C "${KUBE_ROOT}" PRINT_HELP=y -rpn | sed -n -e '/^$/ { n ; /^[^ .#][^ ]*:/ { s/:.*$// ; p ; } ; }' | sort)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

            def taskOutput = getTaskOutput(result)
            taskOutput.contains('Starting test: MyTest > testExpectation')
            taskOutput.contains('Finishing test: MyTest > testExpectation')
        }
    
        def "can use setOf() in Kotlin DSL to configure logging no events"() {
            given:
            buildKotlinFile << testLoggingStandardStreamWithEmptyEventSet()
    
            file(JAVA_TEST_FILE_PATH) << javaTestClass {
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/build.gradle.kts

    shadedJar {
        shadedConfiguration.exclude(mapOf("group" to "org.slf4j", "module" to "slf4j-api"))
        keepPackages = listOf("org.gradle.tooling")
        unshadedPackages = listOf("org.gradle", "org.slf4j", "sun.misc")
        ignoredPackages = setOf("org.gradle.tooling.provider.model")
    }
    
    errorprone {
        disabledChecks.addAll(
            "EqualsUnsafeCast", // 1 occurrences
            "FutureReturnValueIgnored", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

        }
    
        fun renderAnnotationsWithMeta(analysisSession: KaSession, annotations: KaAnnotationList) = buildString {
            renderAnnotationsRecursive(analysisSession, annotations, currentMetaAnnotations = setOf(), indent = 0)
        }
    
        private fun StringBuilder.renderAnnotationsRecursive(
            analysisSession: KaSession,
            annotations: KaAnnotationList,
            currentMetaAnnotations: Set<ClassId>?,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsDslSchema.kt

        softwareTypeRegistry: SoftwareTypeRegistry
    ): InterpretationSequence =
        DefaultInterpretationSequence(
            listOf(
                SimpleInterpretationSequenceStepWithConversion("settingsPluginManagement", features = setOf(SettingsBlocksCheck.feature)) { pluginManagementEvaluationSchema() },
                PluginsInterpretationSequenceStep("settingsPlugins", targetScope, scriptSource) { settings.services },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

    private
    fun KotlinLexer.hasFurtherTokens() = tokenType != null
    
    
    private
    fun KotlinLexer.packageDefinitionFound() = tokenType == KtTokens.PACKAGE_KEYWORD
    
    
    private
    val packageParsingAbortIdentifiers = setOf("import", "buildscript", "plugins", "pluginManagement", "initscript")
    
    
    private
    fun KotlinLexer.tooLateForPackageStatement(): Boolean {
        // based on https://kotlinlang.org/docs/reference/grammar.html#script
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/psiUtils.kt

    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    import org.jetbrains.kotlin.fir.unwrapFakeOverridesOrDelegated
    
    private val allowedFakeElementKinds = setOf(
        KtFakeSourceElementKind.FromUseSiteTarget,
        KtFakeSourceElementKind.PropertyFromParameter,
        KtFakeSourceElementKind.ItLambdaParameter,
        KtFakeSourceElementKind.EnumGeneratedDeclaration,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:46:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top