Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for IsRoot (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                for (NodeState ns : nodes) {
                    if (ns.isSelected()) {
                        candidatesForConflict.add(ns);
                        if (ns.isRoot()) {
                            rootId = ns.getComponent().getId().getModule();
                        }
                    }
                }
                if (rootId != null && candidatesForConflict.size() > 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/MessageBuilderHelper.java

                    List<EdgeState> otherPath = Lists.newArrayList(currentPath);
                    pathTo(dependent, otherPath, accumulator, alreadySeen);
                }
                if (component.getFrom().isRoot()) {
                    accumulator.add(currentPath);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    type converter func(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error)
    
    func defaultConverter(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error) {
    	structural, err := structuralschema.NewStructural(schema)
    	if err != nil {
    		return nil, err
    	}
    	declType := model.SchemaDeclType(structural, isRoot)
    	if declType == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top