Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Larentis (0.19 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.id())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.id());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            final List<Vertex> parents = new ArrayList<>();
    
            Vertex(String label) {
                this.label = label;
            }
    
            String getLabel() {
                return label;
            }
    
            List<Vertex> getChildren() {
                return children;
            }
    
            List<Vertex> getParents() {
                return parents;
            }
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

    import org.jetbrains.kotlin.platform.has
    import org.jetbrains.kotlin.platform.jvm.JvmPlatform
    import org.jetbrains.kotlin.psi
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.psi.psiUtil.parents
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    
    internal class KtFirSymbolContainingDeclarationProvider(
        override val analysisSession: KtFirAnalysisSession,
        override val token: KtLifetimeToken,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

        // or containing declaration is inside the local type, e.g., a member of the local class
        return localPsi == context ||
                localPsi.parents.any { it == context } ||
                context.parents.any { it == localPsi }
    }
    
    private fun ConeKotlinType.asPsiTypeElement(
        session: FirSession,
        mode: TypeMappingMode,
        useSitePosition: PsiElement,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 12 13:29:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  5. cmd/os-reliable.go

    	if err = checkPathLength(dirPath); err != nil {
    		return err
    	}
    
    	if err = reliableRemoveAll(dirPath); err != nil {
    		switch {
    		case isSysErrNotDir(err):
    			// File path cannot be verified since one of
    			// the parents is a file.
    			return errFileAccessDenied
    		case isSysErrPathNotFound(err):
    			// This is a special case should be handled only for
    			// windows, because windows API does not return "not a
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                        .getProject();
                            } catch (ProjectBuildingException e) {
                                // MNG-4488 where let invalid parents slide on by
                                if (logger.isDebugEnabled()) {
                                    // Message below is checked for in the MNG-2199 core IT.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

                goToNthParent(symbol, goBackSteps)?.let { return it }
            }
    
            return getPackageSymbolIfPackageExists(selectedFqName)
        }
    
        /**
         * N.B. Works only for [KtClassOrObjectSymbol] parents chain.
         */
        private fun KtAnalysisSession.goToNthParent(symbol: KtDeclarationSymbol, steps: Int): KtDeclarationSymbol? {
            var currentSymbol = symbol
    
            repeat(steps) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                else -> unexpectedElementError<PsiElement>(type)
            } ?: unexpectedElementError<PsiElement>(type)
    
            val ktTypeElementFromFirType = unwrapType(fir.psi)
    
            val classifiersToSkip = expression.parents.takeWhile { it != ktTypeElementFromFirType }.count()
            var classifier: FirClassLikeSymbol<*>? = fir.type.toRegularClassSymbol(session)
            repeat(classifiersToSkip) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    		return nil, osErrToFileErr(err)
    	}
    
    	w, err := OpenFile(filePath, mode, 0o666)
    	if err != nil {
    		// File path cannot be verified since one of the parents is a file.
    		switch {
    		case isSysErrIsDir(err):
    			return nil, errIsNotRegular
    		case osIsPermission(err):
    			return nil, errFileAccessDenied
    		case isSysErrNotDir(err):
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top