Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 785 for emptyRest (0.18 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

            if (kotlinFile.packageFqName != packageFqName) {
                return emptyList()
            }
    
            return listOf(kotlinFile)
        }
    
        override fun findFilesForFacade(facadeFqName: FqName): Collection<KtFile> {
            if (kotlinFile.javaFileFacadeFqName != facadeFqName) return emptyList()
    
            for (declaration in topLevelDeclarations) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

            fe10Annotations.hasAnnotation(classId.asSingleFqName())
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
            if (classId in ignoredAnnotations) return@withValidityAssertion emptyList()
    
            fe10Annotations.mapIndexedNotNull { index, annotation ->
                if (annotation.classIdForAnnotation != classId) {
                    return@mapIndexedNotNull null
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/EmptySchema.java

            return disambiguationRule;
        }
    
        @Override
        public List<AttributeDescriber> getConsumerDescribers() {
            return Collections.emptyList();
        }
    
        @Override
        public void addConsumerDescriber(AttributeDescriber describer) {
            throw new UnsupportedOperationException();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KtEmptyAnnotationsList.kt

            return false
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
            return emptyList()
        }
    
        override val classIds: Set<ClassId>
            get() = withValidityAssertion { emptySet() }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                is ErrorType -> return emptySet()
                is CapturedType, is NewCapturedType -> return constructor.supertypes.flatMapTo(mutableSetOf()) { it.collectLowerBounds() }
                is SimpleType -> {
                    val typeParameterDescriptor = TypeUtils.getTypeParameterDescriptorOrNull(this)
                    if (typeParameterDescriptor != null) {
                        return emptySet()
                    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/action/BuildActionSerializerTest.groovy

            def action = new TestExecutionRequestAction(new BuildEventSubscriptions([OperationType.TASK] as Set), startParameter, Collections.emptySet(), Collections.emptySet(), Collections.emptySet(), new DefaultDebugOptions(), Collections.emptyMap(), false, Collections.emptyList())
    
            expect:
            def result = serialize(action, BuildActionSerializer.create())
            result instanceof TestExecutionRequestAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessIndexPageGenerator.java

                }
    
                @Override
                protected List<PerformanceReportScenario> getCrossBuildScenarios() {
                    return Collections.emptyList();
                }
    
                @Override
                protected String determineScenarioBackgroundColorCss(PerformanceReportScenario scenario) {
                    return isFlaky(scenario) ? "alert-warning" : "alert-info";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

                val constraint = readBoolean()
                LocalComponentDependencyMetadata(
                    selector,
                    null,
                    emptyList(),
                    emptyList(),
                    false,
                    false,
                    true,
                    constraint,
                    false,
                    null
                )
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

            return target == null ? Collections.<ModelNodeInternal>emptyList() : target.getLinks();
        }
    
        @Override
        public Iterable<? extends MutableModelNode> getLinks(Predicate<? super MutableModelNode> predicate) {
            return target == null ? Collections.<MutableModelNode>emptyList() : target.getLinks(predicate);
        }
    
        @Override
        public int getLinkCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

            } catch (MissingRegistryEntryException | NativeIntegrationUnavailableException e) {
                // Ignore
                return Collections.emptyList();
            }
        }
    
        private List<String> getVersions(String sdkSubkey) {
            return windowsRegistry.getSubkeys(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, sdkSubkey);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top