• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java VcsKey类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.intellij.openapi.vcs.VcsKey的典型用法代码示例。如果您正苦于以下问题:Java VcsKey类的具体用法?Java VcsKey怎么用?Java VcsKey使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



VcsKey类属于com.intellij.openapi.vcs包,在下文中一共展示了VcsKey类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: createAction

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@NotNull
@Override
protected AnAction createAction(CheckoutProvider provider) {
  return new CheckoutAction(provider) {
    @Override
    protected CheckoutProvider.Listener getListener(Project project) {
      return new CheckoutProvider.Listener() {
        @Override
        public void directoryCheckedOut(File directory, VcsKey vcs) {
          final VirtualFile dir = LocalFileSystem.getInstance().refreshAndFindFileByIoFile(directory);
          if (dir != null) {
              PlatformProjectOpenProcessor.getInstance().doOpenProject(dir, null, false);
          }
        }

        @Override
        public void checkoutCompleted() {

        }
      };
    }
  };
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:24,代码来源:NewProjectFromVCSGroup.java


示例2: getProjectUsages

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@NotNull
@Override
public Set<UsageDescriptor> getProjectUsages(@NotNull Project project) throws CollectUsagesException {
  VcsLogManager logManager = VcsLogContentProvider.findLogManager(project);
  VisiblePack dataPack = getDataPack(logManager);
  if (dataPack != null) {
    PermanentGraph<Integer> permanentGraph = dataPack.getPermanentGraph();
    MultiMap<VcsKey, VirtualFile> groupedRoots = groupRootsByVcs(dataPack.getLogProviders());

    Set<UsageDescriptor> usages = ContainerUtil.newHashSet();
    usages.add(new UsageDescriptor("vcs.log.commit.count", permanentGraph.getAllCommits().size()));
    for (VcsKey vcs : groupedRoots.keySet()) {
      //noinspection StringToUpperCaseOrToLowerCaseWithoutLocale
      usages.add(new UsageDescriptor("vcs.log." + vcs.getName().toLowerCase() + ".root.count", groupedRoots.get(vcs).size()));
    }
    return usages;
  }
  return Collections.emptySet();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:20,代码来源:VcsLogRepoSizeCollector.java


示例3: createMockRepositoryCreator

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@NotNull
private VcsRepositoryCreator createMockRepositoryCreator() {
  return new VcsRepositoryCreator() {
    @NotNull
    @Override
    public VcsKey getVcsKey() {
      return myVcs.getKeyInstanceMethod();
    }

    @Nullable
    @Override
    public Repository createRepositoryIfValid(@NotNull VirtualFile root) {
      READY_TO_READ.countDown();
      try {
        //wait until reading thread gets existing info
        if (!CONTINUE_MODIFY.await(1, TimeUnit.SECONDS)) return null;
      }
      catch (InterruptedException e) {
        return null;
      }
      return new MockRepositoryImpl(myProject, root, myProject);
    }
  };
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:25,代码来源:VcsRepositoryManagerTest.java


示例4: isRecent

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@Override
@Nullable
public ThreeState isRecent(final VirtualFile vf,
                           final VcsKey vcsKey,
                           final VcsRevisionNumber number,
                           final TextRange range,
                           final long boundTime) {
  TreeMap<Integer, Long> treeMap;
  synchronized (myLock) {
    treeMap = myCache.get(new HistoryCacheWithRevisionKey(VcsContextFactory.SERVICE.getInstance().createFilePathOn(vf), vcsKey, number));
  }
  if (treeMap != null) {
    Map.Entry<Integer, Long> last = treeMap.floorEntry(range.getEndOffset());
    if (last == null || last.getKey() < range.getStartOffset()) return ThreeState.NO;
    Map.Entry<Integer, Long> first = treeMap.ceilingEntry(range.getStartOffset());
    assert first != null;
    final SortedMap<Integer,Long> interval = treeMap.subMap(first.getKey(), last.getKey());
    for (Map.Entry<Integer, Long> entry : interval.entrySet()) {
      if (entry.getValue() >= boundTime) return ThreeState.YES;
    }
    return ThreeState.NO;
  }
  return ThreeState.UNSURE;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:25,代码来源:ContentAnnotationCacheImpl.java


示例5: register

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@Override
public void register(final VirtualFile vf, final VcsKey vcsKey, final VcsRevisionNumber number, final FileAnnotation fa) {
  final HistoryCacheWithRevisionKey key = new HistoryCacheWithRevisionKey(VcsContextFactory.SERVICE.getInstance().createFilePathOn(vf), vcsKey, number);
  synchronized (myLock) {
    if (myCache.get(key) != null) return;
  }
  final long absoluteLimit = System.currentTimeMillis() - VcsContentAnnotationSettings.ourAbsoluteLimit;
  final TreeMap<Integer, Long> map = new TreeMap<Integer, Long>();
  final int lineCount = fa.getLineCount();
  for (int i = 0; i < lineCount; i++) {
    Date lineDate = fa.getLineDate(i);
    if (lineDate == null) return;
    if (lineDate.getTime() >= absoluteLimit) map.put(i, lineDate.getTime());
  }
  synchronized (myLock) {
    myCache.put(key, map);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:19,代码来源:ContentAnnotationCacheImpl.java


示例6: putIntoCurrentCache

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
private static VcsRevisionNumber putIntoCurrentCache(final ContentRevisionCache cache,
                                                                   FilePath path,
                                                                   @NotNull VcsKey vcsKey,
                                                                   final CurrentRevisionProvider loader) throws VcsException, IOException {
  VcsRevisionNumber loadedRevisionNumber;
  Pair<VcsRevisionNumber, Long> currentRevision;

  while (true) {
    loadedRevisionNumber = loader.getCurrentRevision();
    currentRevision = cache.getCurrent(path, vcsKey);
    if (loadedRevisionNumber.equals(currentRevision.getFirst())) return loadedRevisionNumber;

    if (cache.putCurrent(path, loadedRevisionNumber, vcsKey, currentRevision.getSecond())) {
      return loadedRevisionNumber;
    }
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:ContentRevisionCache.java


示例7: getOrLoadCurrentAsBytes

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
public static Pair<VcsRevisionNumber, byte[]> getOrLoadCurrentAsBytes(final Project project, FilePath path, @NotNull VcsKey vcsKey,
    final CurrentRevisionProvider loader) throws VcsException, IOException {
  ContentRevisionCache cache = ProjectLevelVcsManager.getInstance(project).getContentRevisionCache();

  VcsRevisionNumber currentRevision;
  Pair<VcsRevisionNumber, byte[]> loaded;
  while (true) {
    currentRevision = putIntoCurrentCache(cache, path, vcsKey, loader);
    final byte[] cachedCurrent = cache.getBytes(path, currentRevision, vcsKey, UniqueType.REPOSITORY_CONTENT);
    if (cachedCurrent != null) {
      return Pair.create(currentRevision, cachedCurrent);
    }
    checkLocalFileSize(path);
    loaded = loader.get();
    if (loaded.getFirst().equals(currentRevision)) break;
  }

  cache.put(path, currentRevision, vcsKey, UniqueType.REPOSITORY_CONTENT, loaded.getSecond());
  return loaded;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:21,代码来源:ContentRevisionCache.java


示例8: VcsAnnotationLocalChangesListenerImpl

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
public VcsAnnotationLocalChangesListenerImpl(Project project, final ProjectLevelVcsManager vcsManager) {
  myLock = new Object();
  myUpdateStuff = createUpdateStuff();
  myUpdater = new ZipperUpdater(ApplicationManager.getApplication().isUnitTestMode() ? 10 : 300, Alarm.ThreadToUse.POOLED_THREAD, project);
  myConnection = project.getMessageBus().connect();
  myLocalFileSystem = LocalFileSystem.getInstance();
  VcsAnnotationRefresher handler = createHandler();
  myDirtyPaths = new HashSet<String>();
  myDirtyChanges = new HashMap<String, VcsRevisionNumber>();
  myDirtyFiles = new HashSet<VirtualFile>();
  myFileAnnotationMap = MultiMap.createSet();
  myVcsManager = vcsManager;
  myVcsKeySet = new HashSet<VcsKey>();

  myConnection.subscribe(VcsAnnotationRefresher.LOCAL_CHANGES_CHANGED, handler);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:17,代码来源:VcsAnnotationLocalChangesListenerImpl.java


示例9: createUpdateStuff

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
private Runnable createUpdateStuff() {
  return new Runnable() {
    @Override
    public void run() {
      final Set<String> paths = new HashSet<String>();
      final Map<String, VcsRevisionNumber> changes = new HashMap<String, VcsRevisionNumber>();
      final Set<VirtualFile> files = new HashSet<VirtualFile>();
      Set<VcsKey> vcsToRefresh;
      synchronized (myLock) {
        vcsToRefresh = new HashSet<VcsKey>(myVcsKeySet);

        paths.addAll(myDirtyPaths);
        changes.putAll(myDirtyChanges);
        files.addAll(myDirtyFiles);
        myDirtyPaths.clear();
        myDirtyChanges.clear();
        myVcsKeySet.clear();
        myDirtyFiles.clear();
      }

      closeForVcs(vcsToRefresh);
      checkByDirtyScope(paths, changes, files);
    }
  };
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:26,代码来源:VcsAnnotationLocalChangesListenerImpl.java


示例10: addChangeToIdx

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
private void addChangeToIdx(final Change change, final VcsKey key) {
  final ContentRevision afterRevision = change.getAfterRevision();
  final ContentRevision beforeRevision = change.getBeforeRevision();
  if (afterRevision != null) {
    add(afterRevision.getFile(), change.getFileStatus(), key, beforeRevision == null ? VcsRevisionNumber.NULL : beforeRevision.getRevisionNumber());
  }
  if (beforeRevision != null) {
    if (afterRevision != null) {
      if (! Comparing.equal(beforeRevision.getFile(), afterRevision.getFile())) {
        add(beforeRevision.getFile(), FileStatus.DELETED, key, beforeRevision.getRevisionNumber());
      }
    } else {
      add(beforeRevision.getFile(), change.getFileStatus(), key, beforeRevision.getRevisionNumber());
    }
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:17,代码来源:ChangeListsIndexes.java


示例11: createUpdateSessionAdapter

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
private UpdateSessionAdapter createUpdateSessionAdapter(final UpdatedFiles updatedFiles, final CvsResult result) {
  return new UpdateSessionAdapter(result.getErrorsAndWarnings(), result.isCanceled()) {
    public void onRefreshFilesCompleted() {
      final FileGroup mergedWithConflictsGroup = updatedFiles.getGroupById(FileGroup.MERGED_WITH_CONFLICT_ID);
      final FileGroup binaryMergedGroup = updatedFiles.getGroupById(CvsUpdatePolicy.BINARY_MERGED_ID);
      if (!mergedWithConflictsGroup.isEmpty() || !binaryMergedGroup.isEmpty()) {
        Collection<String> paths = new ArrayList<String>();
        paths.addAll(mergedWithConflictsGroup.getFiles());
        paths.addAll(binaryMergedGroup.getFiles());

        final List<VirtualFile> list = invokeManualMerging(paths, myProject);
        FileGroup mergedGroup = updatedFiles.getGroupById(FileGroup.MERGED_ID);
        final VcsKey vcsKey = CvsVcs2.getKey();
        for(VirtualFile mergedFile: list) {
          String path = FileUtil.toSystemDependentName(mergedFile.getPresentableUrl());
          mergedWithConflictsGroup.remove(path);
          binaryMergedGroup.remove(path);
          mergedGroup.add(path, vcsKey, null);
        }
      }
    }
  };
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:24,代码来源:CvsUpdateEnvironment.java


示例12: execute

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
public void execute(final UpdatedFiles updatedFiles) {
  if (myConflictedVirtualFiles.isEmpty()) {
    return;
  }
  final AbstractVcsHelper vcsHelper = AbstractVcsHelper.getInstance(myProject);

  List<VirtualFile> mergedFiles = vcsHelper.showMergeDialog(myConflictedVirtualFiles, new SvnMergeProvider(myProject));

  final FileGroup mergedGroup = updatedFiles.getGroupById(FileGroup.MERGED_ID);
  final FileGroup conflictedGroup = updatedFiles.getGroupById(FileGroup.MERGED_WITH_CONFLICT_ID);
  final VcsKey vcsKey = SvnVcs.getKey();

  for (final VirtualFile mergedFile : mergedFiles) {
    String path = FileUtil.toSystemDependentName(mergedFile.getPresentableUrl());
    conflictedGroup.remove(path);
    mergedGroup.add(path, vcsKey, null);

    mergedFile.refresh(false, false);
    // for additionally created files removal to be detected
    mergedFile.getParent().refresh(false, false);

    if (myChangesUnderProjectRoot) {
      myDirtyScopeManager.fileDirty(mergedFile);
    }
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:27,代码来源:ResolveWorker.java


示例13: testUpdateDirectories_FilesStale

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@Test
public void testUpdateDirectories_FilesStale() {
    SyncResults syncResults = new SyncResults(false, ImmutableList.of("/path/to/file1", "/path/to/directory"), ImmutableList.of("/path/to/newFile"),
            ImmutableList.of("/path/to/file2"), ImmutableList.of(new SyncException("test exception")));
    FilePath[] filePaths = setupUpdate(syncResults);

    UpdateSession session = updateEnvironment.updateDirectories(filePaths, mockUpdatedFiles, mockProgressIndicator, mockUpdatesContext);
    verify(mockFileGroupRemove).add(eq("/path/to/file2"), any(VcsKey.class), isNull(VcsRevisionNumber.class));
    verify(mockFileGroupCreate).add(eq("/path/to/newFile"), any(VcsKey.class), isNull(VcsRevisionNumber.class));
    verify(mockFileGroupUpdate).add(eq("/path/to/file1"), any(VcsKey.class), isNull(VcsRevisionNumber.class));
    verify(mockFileGroupUpdate).add(eq("/path/to/directory"), any(VcsKey.class), isNull(VcsRevisionNumber.class));
    verifyNoMoreInteractions(mockFileGroupRemove, mockFileGroupCreate, mockFileGroupUpdate, mockConflictsHandler);
    verifyNoMoreInteractions(mockConflictsHandler);
    assertEquals(1, session.getExceptions().size());
    verifyStatic(times(1));
    TfsFileUtil.refreshAndInvalidate(mockProject, filePaths, false);
}
 
开发者ID:Microsoft,项目名称:vso-intellij,代码行数:18,代码来源:TFSUpdateEnvironmentTest.java


示例14: getOrLoadCurrentAsBytes

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
public static Pair<VcsRevisionNumber, byte[]> getOrLoadCurrentAsBytes(final Project project, FilePath path, @NotNull VcsKey vcsKey,
    final CurrentRevisionProvider loader) throws VcsException, IOException {
  ContentRevisionCache cache = ProjectLevelVcsManager.getInstance(project).getContentRevisionCache();

  VcsRevisionNumber currentRevision;
  Pair<VcsRevisionNumber, byte[]> loaded;
  while (true) {
    currentRevision = putIntoCurrentCache(cache, path, vcsKey, loader);
    final byte[] cachedCurrent = cache.getBytes(path, currentRevision, vcsKey, UniqueType.REPOSITORY_CONTENT);
    if (cachedCurrent != null) {
      return new Pair<VcsRevisionNumber, byte[]>(currentRevision, cachedCurrent);
    }
    checkLocalFileSize(path);
    loaded = loader.get();
    if (loaded.getFirst().equals(currentRevision)) break;
  }

  cache.put(path, currentRevision, vcsKey, UniqueType.REPOSITORY_CONTENT, loaded.getSecond());
  return loaded;
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:21,代码来源:ContentRevisionCache.java


示例15: getProjectUsages

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@Nonnull
@Override
public Set<UsageDescriptor> getProjectUsages(@Nonnull Project project) throws CollectUsagesException {
  VcsProjectLog projectLog = VcsProjectLog.getInstance(project);
  VcsLogData logData = projectLog.getDataManager();
  if (logData != null) {
    DataPack dataPack = logData.getDataPack();
    if (dataPack.isFull()) {
      PermanentGraph<Integer> permanentGraph = dataPack.getPermanentGraph();
      MultiMap<VcsKey, VirtualFile> groupedRoots = groupRootsByVcs(dataPack.getLogProviders());

      Set<UsageDescriptor> usages = ContainerUtil.newHashSet();
      usages.add(StatisticsUtilKt.getCountingUsage("data.commit.count", permanentGraph.getAllCommits().size(),
                                                   asList(0, 1, 100, 1000, 10 * 1000, 100 * 1000, 500 * 1000)));
      for (VcsKey vcs : groupedRoots.keySet()) {
        usages.add(StatisticsUtilKt.getCountingUsage("data." + vcs.getName().toLowerCase() + ".root.count", groupedRoots.get(vcs).size(),
                                                     asList(0, 1, 2, 5, 8, 15, 30, 50, 100, 500, 1000)));
      }
      return usages;
    }
  }
  return Collections.emptySet();
}
 
开发者ID:consulo,项目名称:consulo,代码行数:24,代码来源:VcsLogRepoSizeCollector.java


示例16: putIntoCurrentCache

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
private static VcsRevisionNumber putIntoCurrentCache(final ContentRevisionCache cache,
                                                     FilePath path,
                                                     @Nonnull VcsKey vcsKey,
                                                     final CurrentRevisionProvider loader) throws VcsException, IOException {
  VcsRevisionNumber loadedRevisionNumber;
  Pair<VcsRevisionNumber, Long> currentRevision;

  while (true) {
    loadedRevisionNumber = loader.getCurrentRevision();
    currentRevision = cache.getCurrent(path, vcsKey);
    if (loadedRevisionNumber.equals(currentRevision.getFirst())) return loadedRevisionNumber;

    if (cache.putCurrent(path, loadedRevisionNumber, vcsKey, currentRevision.getSecond())) {
      return loadedRevisionNumber;
    }
  }
}
 
开发者ID:consulo,项目名称:consulo,代码行数:18,代码来源:ContentRevisionCache.java


示例17: getOrLoadCurrentAsBytes

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
public static Pair<VcsRevisionNumber, byte[]> getOrLoadCurrentAsBytes(final Project project, FilePath path, @Nonnull VcsKey vcsKey,
                                                                      final CurrentRevisionProvider loader) throws VcsException, IOException {
  ContentRevisionCache cache = ProjectLevelVcsManager.getInstance(project).getContentRevisionCache();

  VcsRevisionNumber currentRevision;
  Pair<VcsRevisionNumber, byte[]> loaded;
  while (true) {
    currentRevision = putIntoCurrentCache(cache, path, vcsKey, loader);
    final byte[] cachedCurrent = cache.getBytes(path, currentRevision, vcsKey, UniqueType.REPOSITORY_CONTENT);
    if (cachedCurrent != null) {
      return Pair.create(currentRevision, cachedCurrent);
    }
    checkLocalFileSize(path);
    loaded = loader.get();
    if (loaded.getFirst().equals(currentRevision)) break;
  }

  cache.put(path, currentRevision, vcsKey, UniqueType.REPOSITORY_CONTENT, loaded.getSecond());
  return loaded;
}
 
开发者ID:consulo,项目名称:consulo,代码行数:21,代码来源:ContentRevisionCache.java


示例18: processChangeInList

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
@Override
public void processChangeInList(final Change change, @Nullable final ChangeList changeList, final VcsKey vcsKey) {
  checkIfDisposed();

  LOG.debug("[processChangeInList-1] entering, cl name: " + ((changeList == null) ? null : changeList.getName()) +
            " change: " + ChangesUtil.getFilePath(change).getPath());
  final String fileName = ChangesUtil.getFilePath(change).getName();
  if (FileTypeManager.getInstance().isFileIgnored(fileName)) {
    LOG.debug("[processChangeInList-1] file type ignored");
    return;
  }

  if (ChangeListManagerImpl.isUnder(change, myScope)) {
    if (changeList != null) {
      LOG.debug("[processChangeInList-1] to add change to cl");
      myChangeListWorker.addChangeToList(changeList.getName(), change, vcsKey);
    }
    else {
      LOG.debug("[processChangeInList-1] to add to corresponding list");
      myChangeListWorker.addChangeToCorrespondingList(change, vcsKey);
    }
  }
  else {
    LOG.debug("[processChangeInList-1] not under scope");
  }
}
 
开发者ID:consulo,项目名称:consulo,代码行数:27,代码来源:UpdatingChangeListBuilder.java


示例19: createUpdateStuff

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
private Runnable createUpdateStuff() {
  return new Runnable() {
    @Override
    public void run() {
      final Set<String> paths = new HashSet<>();
      final Map<String, VcsRevisionNumber> changes = new HashMap<>();
      final Set<VirtualFile> files = new HashSet<>();
      Set<VcsKey> vcsToRefresh;
      synchronized (myLock) {
        vcsToRefresh = new HashSet<>(myVcsKeySet);

        paths.addAll(myDirtyPaths);
        changes.putAll(myDirtyChanges);
        files.addAll(myDirtyFiles);
        myDirtyPaths.clear();
        myDirtyChanges.clear();
        myVcsKeySet.clear();
        myDirtyFiles.clear();
      }

      closeForVcs(vcsToRefresh);
      checkByDirtyScope(paths, changes, files);
    }
  };
}
 
开发者ID:consulo,项目名称:consulo,代码行数:26,代码来源:VcsAnnotationLocalChangesListenerImpl.java


示例20: run

import com.intellij.openapi.vcs.VcsKey; //导入依赖的package包/类
/**
 * @param canUseLastRevision
 */
@Override
public void run(boolean isRefresh, boolean canUseLastRevision) {
  myIsRefresh = isRefresh;
  mySessionPartner.beforeRefresh();
  VcsHistoryProviderBackgroundableProxy proxy = new VcsHistoryProviderBackgroundableProxy(myVcs, myVcsHistoryProvider,
                                                                                          myVcs.getDiffProvider());
  VcsKey key = myVcs.getKeyInstanceMethod();
  if (myVcsHistoryProvider instanceof VcsHistoryProviderEx && myStartingRevisionNumber != null) {
    proxy.executeAppendableSession(key, myPath, myStartingRevisionNumber, mySessionPartner, null);
  }
  else {
    proxy.executeAppendableSession(key, myPath, mySessionPartner, null, myCanUseCache, canUseLastRevision);
  }
  myCanUseCache = false;
}
 
开发者ID:consulo,项目名称:consulo,代码行数:19,代码来源:FileHistoryRefresher.java



注:本文中的com.intellij.openapi.vcs.VcsKey类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java DateUtils类代码示例发布时间:1970-01-01
下一篇:
Java ContinueStatement类代码示例发布时间:1970-01-01
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap