Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for set_f (0.71 sec)

  1. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

    class OrtModelBuilder : ToolingModelBuilder {
        private val repositories: MutableMap<String, String> = mutableMapOf()
    
        private val platformCategories: Set<String> = setOf("platform", "enforced-platform")
    
        private val visitedDependencies: MutableSet<ModuleComponentIdentifier> = mutableSetOf()
        private val visitedProjects: MutableSet<ModuleVersionIdentifier> = mutableSetOf()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                            description = "Experimental declarative plugin for the JVM ecosystem"
                            implementationClass = "org.gradle.api.experimental.jvm.JvmEcosystemPlugin"
                            tags = setOf("declarative-gradle", "java", "jvm")
                        }
                    }
                }
            """
    
            def jvmSourceDir = new File(jvmPluginDir, 'src/main/java/org/gradle/api/experimental/jvm')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                        is NewTypeVariableConstructor -> emptySet()
                        is IntersectionTypeConstructor -> typeConstructor.supertypes.flatMapTo(mutableSetOf()) { it.collectLowerBounds() }
                        else -> setOf(this)
                    }
    
                }
                else -> return emptySet()
            }
        }
    
        private fun KotlinType.collectUpperBounds(): Set<KotlinType> {
            when (this) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

            override val externalFunctionsByFqName: Map<FqName, DataTopLevelFunction> = mapOf()
            override val externalObjectsByFqName: Map<FqName, ExternalObjectProviderKey> = mapOf()
            override val defaultImports: Set<FqName> = setOf()
    
            private
            fun readResolve(): Any = Empty
        }
    }
    
    
    @Serializable
    @SerialName("data")
    data class DefaultDataClass(
        override val name: FqName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLDiagnosticConverter.kt

                    "org.jetbrains.kotlin.psi",
                    "org.jetbrains.kotlin.KtPsiSourceElement"
                )
            )
        )
    
        private val allowedTypesWithoutTypeParams = setOf(
            Boolean::class,
            String::class,
            Int::class,
            Name::class,
            EventOccurrencesRange::class,
            KtKeywordToken::class,
            KtModifierKeywordToken::class,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val ANY: ClassId = ClassId.topLevel(StandardNames.FqNames.any.toSafe())
        public val NOTHING: ClassId = ClassId.topLevel(StandardNames.FqNames.nothing.toSafe())
        public val PRIMITIVES: Set<ClassId> = setOf(INT, LONG, SHORT, BYTE, FLOAT, DOUBLE, CHAR, BOOLEAN)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            return dsl == GROOVY ? "((${type}) ${variable})" : "(${variable} as ${type})"
        }
    
        String setOf(String expression, GradleDsl dsl = GROOVY) {
            return dsl == GROOVY ? "[$expression]" : "setOf($expression)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // value here because FunctionDef instantiation does not allow placeholder
        // value for attributes.
        AttrValue device_ordinal_attr;
        device_ordinal_attr.set_i(0);
        protobuf::Map<string, AttrValue> attrs;
        attrs["_device_ordinal"] = device_ordinal_attr;
        std::unique_ptr<FunctionBody> host_fbody;
        const FunctionDef* host_fdef = fld->Find(host_func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

    fun determineScenariosFor(performanceTestSpec: PerformanceTestSpec, performanceTestConfigurations: List<PerformanceTestConfiguration>): List<PerformanceScenario> {
        val performanceTestTypes = if (performanceTestSpec.performanceTestType in setOf(PerformanceTestType.historical, PerformanceTestType.flakinessDetection)) {
            listOf(PerformanceTestType.per_commit, PerformanceTestType.per_day)
        } else {
            listOf(performanceTestSpec.performanceTestType)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

         * fails.
         */
        open fun getAllowedContainingFiles(mainFile: KtFile, testServices: TestServices): Set<KtFile> = setOf(mainFile)
    
        private fun RegisteredDirectives.doNotCheckSymbolRestoreDirective(): Directive? = findSpecificDirective(
            commonDirective = DO_NOT_CHECK_SYMBOL_RESTORE,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top