Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NewSession (0.41 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

                mss = new MavenSession(repoSession, ms.getRequest(), ms.getResult());
            } else {
                mss = ms;
            }
            return newSession(mss, repositories);
        }
    
        protected Session newSession(MavenSession mavenSession, List<RemoteRepository> repositories) {
            return new DefaultSession(
                    nonNull(mavenSession),
                    getRepositorySystem(),
                    repositories,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSessionFactory.java

            this.mavenRepositorySystem = mavenRepositorySystem;
            this.lookup = lookup;
            this.runtimeInformation = runtimeInformation;
        }
    
        public InternalSession newSession(MavenSession mavenSession) {
            InternalSession session = new DefaultSession(
                    mavenSession, repositorySystem, null, mavenRepositorySystem, lookup, runtimeInformation);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

            MavenSession session = new MavenSession(
                    getContainer(), repoSession, new DefaultMavenExecutionRequest(), new DefaultMavenExecutionResult());
            session.setSession(defaultSessionFactory.newSession(session));
    
            new DefaultSession(session, null, null, null, null, null);
    
            repoSession.setCache(new DefaultRepositoryCache());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        protected void initRepoSession(ProjectBuildingRequest request) {
            File localRepo = new File(request.getLocalRepository().getBasedir());
            DefaultRepositorySystemSession session = MavenRepositorySystemUtils.newSession();
            session.setLocalRepositoryManager(new LegacyLocalRepositoryManager(localRepo));
            request.setRepositorySession(session);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_internal.h

      // string is empty, no mutation has occurred. Otherwise the string is a
      // description of the mutation suitable for returning to the user.
      //
      // Sessions are added to this map in TF_NewSession, and removed in
      // TF_DeleteSession.
      // TF_Graph may only / must be deleted when
      //   sessions.size() == 0 && delete_requested == true
      //
      // TODO(b/74949947): mutations currently trigger a warning instead of a bad
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
Back to top