Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for filterValue (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                        // values doesn't matter.
                        snapshot[it] != ConfigurationCacheFingerprint.SystemPropertiesPrefixedBy.IGNORED
                    }
                    val snapshotWithoutIgnored = snapshot.filterValues {
                        // remove placeholders of modified properties to only compare relevant values.
                        it != ConfigurationCacheFingerprint.SystemPropertiesPrefixedBy.IGNORED
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                            isLeaf[superClass] = false
                            queue.addLast(superClass)
                        }
                    }
                }
            }
    
            return isLeaf.filterValues { it }.keys
        }
    
        private fun getBoundClass(type: KotlinType): ClassDescriptor? {
            return when (val declaration = type.constructor.declarationDescriptor) {
                is ClassDescriptor -> declaration
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top