Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for IsRoot (0.28 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/packages/KotlinStandalonePackageProvider.kt

                packages.computeIfAbsent(currentPackage) { mutableSetOf() }
            }
            packages
        }
    
        override fun doesKotlinOnlyPackageExist(packageFqName: FqName): Boolean {
            return packageFqName.isRoot || packageFqName in kotlinPackageToSubPackages
        }
    
        override fun getKotlinOnlySubPackagesFqNames(packageFqName: FqName, nameFilter: (Name) -> Boolean): Set<Name> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

                if (processedEntries.add(absolutePath) && getDirectorySensitivity().shouldFingerprint(snapshot)) {
                    FileSystemLocationFingerprint fingerprint;
                    if (relativePath.isRoot()) {
                        if (snapshot.getType() == FileType.RegularFile) {
                            fingerprint = fingerprint(snapshot.getName(), snapshot.getType(), snapshot);
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/FileSystemSnapshotFilter.java

            }
    
            @Override
            public SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, RelativePathSupplier relativePath) {
                boolean root = relativePath.isRoot();
                Iterable<String> relativePathForFiltering = root
                    ? ImmutableList.of(snapshot.getName())
                    : relativePath.getSegments();
                SnapshotVisitResult result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        private fun KaSession.getTypeQualifiedExtensions(fqName: FqName, contextElement: KtElement): Collection<ResolveResult> {
            if (fqName.isRoot) return emptyList()
            val extensionName = fqName.shortName()
    
            val receiverTypeName = fqName.parent()
            if (receiverTypeName.isRoot) return emptyList()
    
            val possibleExtensions = getExtensionCallableSymbolsByShortName(extensionName, contextElement)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetector.java

                    @Override
                    public Boolean visitMissing(MissingFileSnapshot missingSnapshot) {
                        // If the root has gone missing then we don't have overlaps
                        if (relativePath.isRoot()) {
                            return false;
                        }
                        // Otherwise check for newly added broken symlinks and unreadable files
                        return hasNewContent(relativePath, missingSnapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

            TaskProvider<? extends Task> lifecycleTask = getLifecycleTask();
            lifecycleTask.configure(withDescription("Generates XCode project files (pbxproj, xcworkspace, xcscheme)"));
    
            if (isRoot()) {
                DefaultXcodeRootExtension xcode = (DefaultXcodeRootExtension) project.getExtensions().create(XcodeRootExtension.class, "xcode", DefaultXcodeRootExtension.class, objectFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/edit.go

    // and returns the reason for the disqualification.
    func (t *dqTracker) require(m, r module.Version) (ok bool) {
    	rdq := t.dqReason[r]
    	rootPruning, isRoot := t.extendedRootPruning[r]
    	if isRoot && rdq.from(rootPruning).isDisqualified() {
    		// When we pull in m's dependencies, we will have an edge from m to r, and r
    		// is disqualified (it is a root, which causes its problematic dependencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            }
            if (isConstraint && !isVirtualDependency()) {
                List<NodeState> nodes = targetComponent.getNodes();
                for (NodeState node : nodes) {
                    if (node.isSelected() && !node.isRoot()) {
                        targetNodes.add(node);
                    }
                }
                if (targetNodes.isEmpty()) {
                    // There is a chance we could not attach target configurations previously
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

                    artifactResults.visitArtifacts(parent, node, artifacts.artifactSetId, artifacts.artifactSet);
                }
            }
    
            if (node.isRoot() || hasTransitiveIncomingEdge) {
                // Since file dependencies are not modeled as actual edges, we need to verify
                // there are edges to this node that would follow this file dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

            return root.accept(new RelativePathTracker(), (snapshot, relativePath) -> {
                if (relativePath.isRoot()) {
                    return SnapshotVisitResult.CONTINUE;
                }
                boolean shouldContinue = visitor.visitChange(
                    changeFactory.apply(relativePath, snapshot)
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top