Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for toRepos (0.26 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                InternalSession iSession = new SimpleSession(mSession, repoSystem, null);
                InternalSession.associate(repoSession, iSession);
    
                List<RemoteRepository> repositories = RepositoryUtils.toRepos(request.getPluginArtifactRepositories());
                Interpolator interpolator = createInterpolator(request);
    
                return resolveCoreExtensions(repoSession, repositories, providedArtifacts, extensions, interpolator);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                    ArtifactRequest artifactRequest = new ArtifactRequest();
                    artifactRequest.setArtifact(RepositoryUtils.toArtifact(artifact));
                    artifactRequest.setRepositories(RepositoryUtils.toRepos(remoteRepositories));
    
                    // Maven 2.x quirk: an artifact always points at the local repo, regardless whether resolved or not
                    LocalRepositoryManager lrm = session.getLocalRepositoryManager();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        RepositoryUtils.overlay(request.getLocalRepository(), request.getRepositorySession(), repoSystem);
                InternalSession.from(session);
                this.repositories = RepositoryUtils.toRepos(request.getRemoteRepositories());
                this.executor = createExecutor(getParallelism(request));
                if (localProjects) {
                    this.modelPool = new ReactorModelPool();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/read.go

    func (sf *sourceFile) embedsOffset() int {
    	pos := sf.importsOffset()
    	n := sf.d.intAt(pos)
    	// each import is 5 uint32s (string + tokpos)
    	return pos + 4 + n*(4*5)
    }
    
    func (sf *sourceFile) directivesOffset() int {
    	pos := sf.embedsOffset()
    	n := sf.d.intAt(pos)
    	// each embed is 5 uint32s (string + tokpos)
    	return pos + 4 + n*(4*5)
    }
    
    func (sf *sourceFile) imports() []rawImport {
    	sf.onceReadImports.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/go/types/stmt.go

    				return
    			}
    			if s.Tok == token.DEFINE {
    				check.shortVarDecl(inNode(s, s.TokPos), s.Lhs, s.Rhs)
    			} else {
    				// regular assignment
    				check.assignVars(s.Lhs, s.Rhs)
    			}
    
    		default:
    			// assignment operations
    			if len(s.Lhs) != 1 || len(s.Rhs) != 1 {
    				check.errorf(inNode(s, s.TokPos), MultiValAssignOp, "assignment operation %s requires single-valued expressions", s.Tok)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

                    repositorySystem,
                    remoteRepositories,
                    remoteRepositories == null
                            ? map(session.getRequest().getRemoteRepositories(), RepositoryUtils::toRepo)
                            : null,
                    lookup);
            this.mavenSession = session;
            this.mavenRepositorySystem = mavenRepositorySystem;
            this.runtimeInformation = runtimeInformation;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 16 08:45:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/go/doc/reader.go

    						fake := &ast.GenDecl{
    							Doc: d.Doc,
    							// don't use the existing TokPos because it
    							// will lead to the wrong selection range for
    							// the fake declaration if there are more
    							// than one type in the group (this affects
    							// src/cmd/godoc/godoc.go's posLink_urlFunc)
    							TokPos: s.Pos(),
    							Tok:    token.TYPE,
    							Specs:  []ast.Spec{s},
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top