Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 489 for Tiller (0.07 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

        val localName = mutableListOf<String>()
        val className = mutableListOf<String>()
    
        while (current != null) {
            when (current) {
                is KtPropertyAccessor -> {
                    // Filter out property accessors
                }
                is KtCallableDeclaration, is KtEnumEntry -> {
                    if (!allowLocal) {
                        return null
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

                }
                relocatedClassesConfiguration.files.forEach { classesDir ->
                    val classesDirPath = classesDir.toPath()
                    classesDir.walk().filter {
                        val relativePath = classesDirPath.relativePath(it)
                        classesToInclude.contains(relativePath)
                    }.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. ci/official/utilities/code_check_changed_files.bats

            # To get the as-merged branch during the CI tests
            git diff --diff-filter ACMRT --name-only pull_branch^ pull_branch > $BATS_FILE_TMPDIR/changed_files
        else
            # If the branch is not present, then diff against origin/master
            git diff --diff-filter ACMRT --name-only origin/master > $BATS_FILE_TMPDIR/changed_files
        fi
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         *
         * @param target Compilation target platform.
         *
         * @param allowedErrorFilter Filter for the allowed errors.
         * Compilation will be aborted if there are errors that this filter rejects.
         *
         * @return Compilation result.
         *
         * The function rethrows exceptions from the compiler, wrapped in [KaCodeCompilationException].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

        @Internal
        protected
        fun getContributorsInReleaseNotes(): Set<GitHubUser> {
            val (_, contributorLines, _) = parseReleaseNotes()
            return contributorLines
                .map { it.trim() }
                .filter { it.isNotEmpty() }
                .onEach { if (!contributorLineRegex.containsMatchIn(it)) throw IllegalStateException("Invalid contributor line: $it") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

      val sampleTestClass = SampleTest::class.java
    
      val lines =
        inputFile?.readLines() ?: sampleTestClass.getResource("/testlist.txt").readText().lines()
    
      val flatClassnameList =
        lines
          .filter { it.isNotBlank() }
    
      return flatClassnameList
        .mapNotNull {
          try {
            selectClass(Class.forName(it, false, sampleTestClass.classLoader))
          } catch (cnfe: ClassNotFoundException) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/packaging/common/systemd/fess.service

    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    # Shutdown delay in seconds, before process is tried to be killed with KILL (if configured)
    TimeoutStopSec=20
    
    [Install]
    WantedBy=multi-user.target
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/inputFiles/kotlin/build.gradle.kts

        // Using a closure to specify the source files.
        setSource({
            // Use the contents of each zip file in the src dir
            file("src").listFiles().filter { it.name.endsWith(".zip") }.map { zipTree(it) }
        })
    }
    // end::set-input-files[]
    
    // tag::add-input-files[]
    tasks.named<JavaCompile>("compile") {
        // Add some source directories use String paths
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolProvider.kt

            return packageViewDescriptor.memberScope.getContributedDescriptors(DescriptorKindFilter.ALL, nameFilter = { it == name })
                .asSequence()
                .filter { it.name == name }
                .mapNotNull { it.toKtSymbol(analysisContext) as? KaCallableSymbol }
        }
    
        override fun getPackageSymbolIfPackageExists(packageFqName: FqName): KaPackageSymbol? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/PropertyExtractor.kt

            }
        }
    
        private
        fun memberPropertiesOf(kClass: KClass<*>, propertyNamePredicate: (String) -> Boolean): List<CollectedPropertyInformation> = kClass.memberProperties
            .filter { property ->
                (includeMemberFilter.shouldIncludeMember(property) ||
                    kClass.primaryConstructor?.parameters.orEmpty().any { it.name == property.name && it.type == property.returnType })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top