Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
252,700 | boolean (@Nullable OrderEntry orderEntry) { return orderEntry instanceof LibraryOrderEntry && ((LibraryOrderEntry)orderEntry).isModuleLevel(); } | isModuleLibraryOrderEntry |
252,701 | void (ModifiableRootModel @NotNull [] rootModels, @NotNull ModifiableModuleModel moduleModel) { multiCommit(Arrays.asList(rootModels), moduleModel); } | multiCommit |
252,702 | void (@NotNull Collection<? extends ModifiableRootModel> rootModels, @NotNull ModifiableModuleModel moduleModel) { Project project = moduleModel.getProject(); ModifiableModelCommitterService.getInstance(project).multiCommit(rootModels, moduleModel); } | multiCommit |
252,703 | void () { LOG.assertTrue(myRootTypeProvider == null, "Caching not supported for OrderRootsEnumerator with root type provider"); LOG.assertTrue(myCustomSdkRootProvider == null, "Caching not supported for OrderRootsEnumerator with 'usingCustomRootProvider' option"); LOG.assertTrue(!myWithoutSelfModuleOutput, "Caching not... | checkCanUseCache |
252,704 | Collection<VirtualFile> () { final Collection<VirtualFile> result = new LinkedHashSet<>(); myOrderEnumerator.forEach((orderEntry, customHandlers) -> { OrderRootType type = getRootType(orderEntry); if (orderEntry instanceof ModuleSourceOrderEntry) { collectModuleRoots(type, ((ModuleSourceOrderEntry)orderEntry).getRootMo... | computeRoots |
252,705 | Collection<String> () { final Collection<String> result = new LinkedHashSet<>(); myOrderEnumerator.forEach((orderEntry, customHandlers) -> { OrderRootType type = getRootType(orderEntry); if (orderEntry instanceof ModuleSourceOrderEntry) { boolean includeTests = !myOrderEnumerator.isProductionOnly(); collectModuleRootsU... | computeRootsUrls |
252,706 | PathsList () { final PathsList list = new PathsList(); collectPaths(list); return list; } | getPathsList |
252,707 | void (@NotNull PathsList list) { list.addVirtualFiles(getRoots()); } | collectPaths |
252,708 | OrderRootsEnumerator () { myUsingCache = true; return this; } | usingCache |
252,709 | OrderRootsEnumerator () { myWithoutSelfModuleOutput = true; return this; } | withoutSelfModuleOutput |
252,710 | OrderRootsEnumerator (@NotNull NotNullFunction<? super OrderEntry, VirtualFile[]> provider) { return usingCustomSdkRootProvider(provider); } | usingCustomRootProvider |
252,711 | OrderRootsEnumerator (@NotNull NotNullFunction<? super JdkOrderEntry, VirtualFile[]> provider) { myCustomSdkRootProvider = provider; return this; } | usingCustomSdkRootProvider |
252,712 | void (@NotNull OrderRootType type, ModuleRootModel rootModel, @NotNull Collection<? super VirtualFile> result, final boolean includeProduction, final boolean includeTests, @NotNull List<? extends OrderEnumerationHandler> customHandlers) { if (type.equals(OrderRootType.SOURCES)) { if (includeProduction) { Collections.ad... | collectModuleRoots |
252,713 | void (@NotNull OrderRootType type, @NotNull ModuleRootModel rootModel, @NotNull Collection<String> result, boolean includeProduction, boolean includeTests, @NotNull List<? extends OrderEnumerationHandler> customHandlers) { if (type.equals(OrderRootType.SOURCES)) { if (includeProduction) { Collections.addAll(result, roo... | collectModuleRootsUrls |
252,714 | OrderRootType (@NotNull OrderEntry e) { return myRootType != null ? myRootType : myRootTypeProvider.fun(e); } | getRootType |
252,715 | void (@NotNull Processor<? super Module> processor) { Module[] modules = myModulesProvider != null ? myModulesProvider.getModules() : ModuleManager.getInstance(myProject).getSortedModules(); for (Module each : modules) { processor.process(each); } } | processRootModules |
252,716 | void (@NotNull final PairProcessor<? super OrderEntry, ? super List<? extends OrderEnumerationHandler>> processor) { myRecursively = false; myWithoutDepModules = true; Set<Module> processed = new HashSet<>(); processRootModules(module -> { processEntries(getRootModel(module), processed, true, getCustomHandlers(module),... | forEach |
252,717 | void (@NotNull Processor<? super Module> processor) { processRootModules(processor); } | forEachModule |
252,718 | boolean (@NotNull ModuleRootModel rootModel) { return true; } | isRootModuleModel |
252,719 | boolean (@NotNull ContentIterator processor, @Nullable VirtualFileFilter filter) { Pair<Collection<VirtualFile>, Collection<VirtualFile>> rootsPair = ReadAction.nonBlocking(() -> { Project project = myModule.getProject(); if (project.isDisposed()) return null; WorkspaceFileIndexEx index = (WorkspaceFileIndexEx)Workspac... | iterateContent |
252,720 | void (@NotNull WorkspaceFileSet fileSet) { if (!(fileSet instanceof WorkspaceFileSetWithCustomData<?>) || !isInContent((WorkspaceFileSetWithCustomData<?>)fileSet)) { return; } VirtualFile root = fileSet.getRoot(); if (fileSet instanceof WorkspaceFileSetImpl && !((WorkspaceFileSetImpl)fileSet).getRecursive()) { nonRecur... | visitIncludedRoot |
252,721 | boolean (@NotNull VirtualFile root) { VirtualFile parent = root.getParent(); if (parent == null) { return false; } WorkspaceFileInternalInfo fileInfo = myWorkspaceFileIndex.getFileInfo(parent, false, true, false, false, false); return fileInfo.findFileSet(this::hasRecursiveRootFromModuleContent) != null; } | isNestedRootOfModuleContent |
252,722 | boolean (@NotNull WorkspaceFileSetWithCustomData<?> fileSet) { if (fileSet instanceof WorkspaceFileSetImpl && !((WorkspaceFileSetImpl)fileSet).getRecursive()) { return false; } return isInContent(fileSet); } | hasRecursiveRootFromModuleContent |
252,723 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSetWithCustomData<ModuleRelatedRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleRelatedRootData.class); return isFromThisModule(fileSet); } | isInContent |
252,724 | boolean (@Nullable WorkspaceFileSetWithCustomData<? extends ModuleRelatedRootData> fileSet) { return fileSet != null && fileSet.getData().getModule().equals(myModule); } | isFromThisModule |
252,725 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); return fileSet != null && isFromThisModule(fileSet); } | isInSourceContent |
252,726 | List<OrderEntry> (@NotNull VirtualFile fileOrDir) { return findAllOrderEntriesWithOwnerModule(myModule, myDirectoryIndex.getOrderEntries(fileOrDir)); } | getOrderEntriesForFile |
252,727 | OrderEntry (@NotNull VirtualFile fileOrDir) { return findOrderEntryWithOwnerModule(myModule, myDirectoryIndex.getOrderEntries(fileOrDir)); } | getOrderEntryForFile |
252,728 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); return fileSet != null && isFromThisModule(fileSet) && fileSet.getKind() == WorkspaceFileKind.... | isInTestSourceContent |
252,729 | boolean (@NotNull VirtualFile fileOrDir, @NotNull Set<? extends JpsModuleSourceRootType<?>> rootTypes) { WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); return isFromThisModule(fileSet)... | isUnderSourceRootOfType |
252,730 | boolean () { return myModule.isDisposed(); } | isScopeDisposed |
252,731 | OrderEntry (@NotNull Module ownerModule, @NotNull List<? extends OrderEntry> orderEntries) { if (orderEntries.size() < 10) { for (OrderEntry orderEntry : orderEntries) { if (orderEntry.getOwnerModule() == ownerModule) { return orderEntry; } } return null; } int index = Collections.binarySearch(orderEntries, new FakeOrd... | findOrderEntryWithOwnerModule |
252,732 | List<OrderEntry> (@NotNull Module ownerModule, @NotNull List<? extends OrderEntry> entries) { if (entries.isEmpty()) return Collections.emptyList(); if (entries.size() == 1) { OrderEntry entry = entries.get(0); return entry.getOwnerModule() == ownerModule ? new ArrayList<>(entries) : Collections.emptyList(); } int inde... | findAllOrderEntriesWithOwnerModule |
252,733 | String () { throw new IncorrectOperationException(); } | getPresentableName |
252,734 | boolean () { throw new IncorrectOperationException(); } | isValid |
252,735 | Module () { return myOwnerModule; } | getOwnerModule |
252,736 | int (@NotNull OrderEntry o) { throw new IncorrectOperationException(); } | compareTo |
252,737 | boolean () { throw new IncorrectOperationException(); } | isSynthetic |
252,738 | boolean (@NotNull WorkspaceFileSetWithCustomData<?> fileSet) { return fileSet.getData() instanceof ModuleRelatedRootData data && myModule.equals(data.getModule()); } | isInContent |
252,739 | boolean (@NotNull ContentIterator processor, @Nullable VirtualFileFilter filter) { Pair<List<VirtualFile>, List<VirtualFile>> rootsPair = ReadAction.compute(() -> { Set<VirtualFile> allRecursiveRoots = new LinkedHashSet<>(); List<VirtualFile> allNonRecursiveRoots = new ArrayList<>(); myWorkspaceFileIndex.visitFileSets(... | iterateContent |
252,740 | boolean (@NotNull VirtualFile file) { WorkspaceFileInternalInfo info = myWorkspaceFileIndex.getFileInfo(file, true, true, true, true, true); return info == WorkspaceFileInternalInfo.NonWorkspace.IGNORED || info == WorkspaceFileInternalInfo.NonWorkspace.EXCLUDED; } | isExcluded |
252,741 | boolean (@NotNull VirtualFile file) { WorkspaceFileInternalInfo info = myWorkspaceFileIndex.getFileInfo(file, true, true, true, true, true); return info == WorkspaceFileInternalInfo.NonWorkspace.IGNORED; } | isUnderIgnored |
252,742 | boolean (@NotNull VirtualFile file) { return myWorkspaceFileIndex.findFileSet(file, true, true, true, true, false) != null; } | isInProject |
252,743 | boolean (@NotNull VirtualFile file) { WorkspaceFileInternalInfo info = myWorkspaceFileIndex.getFileInfo(file, true, true, true, true, false); return info == WorkspaceFileInternalInfo.NonWorkspace.EXCLUDED || !(info instanceof WorkspaceFileInternalInfo.NonWorkspace); } | isInProjectOrExcluded |
252,744 | Module (@NotNull VirtualFile file) { return getModuleForFile(file, true); } | getModuleForFile |
252,745 | Module (@NotNull VirtualFile file, boolean honorExclusion) { WorkspaceFileSetWithCustomData<ModuleRelatedRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(file, honorExclusion, true, false, false, false, ModuleRelatedRootData.class); if (fileSet == null) return null; return fileSet.getData().getModule(... | getModuleForFile |
252,746 | List<OrderEntry> (@NotNull VirtualFile file) { return myDirectoryIndex.getOrderEntries(file); } | getOrderEntriesForFile |
252,747 | VirtualFile (@NotNull VirtualFile file) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSet(file, true, false, true, false, false); if (fileSet == null) return null; return fileSet.getRoot(); } | getClassRootForFile |
252,748 | boolean (@NotNull VirtualFile file) { WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(file, true, true, false, false, false, ModuleSourceRootData.class); return fileSet != null && fileSet.getData().getForGeneratedSources(); } | isInGeneratedSources |
252,749 | VirtualFile (@NotNull VirtualFile file) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(file, true, true, false, true, false, ModuleOrLibrarySourceRootData.class); if (fileSet == null) return null; return fileSet.getRoot(); } | getSourceRootForFile |
252,750 | VirtualFile (@NotNull VirtualFile file) { return getContentRootForFile(file, true); } | getContentRootForFile |
252,751 | VirtualFile (@NotNull VirtualFile file, final boolean honorExclusion) { WorkspaceFileSetWithCustomData<ModuleContentOrSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(file, honorExclusion, true, false, false, false, ModuleContentOrSourceRootData.class); if (fileSet == null) { if (!honorExclusion... | getContentRootForFile |
252,752 | String (@NotNull VirtualFile dir) { if (!dir.isDirectory()) LOG.error(dir.getPresentableUrl()); return myDirectoryIndex.getPackageName(dir); } | getPackageNameByDirectory |
252,753 | boolean (@NotNull VirtualFile file) { if (file.isDirectory()) return false; WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSet(file, true, false, true, false, false); return fileSet != null; } | isLibraryClassFile |
252,754 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, true, false, ModuleOrLibrarySourceRootData.class); return fileSet != null; } | isInSource |
252,755 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSet(fileOrDir, true, false, true, false, false); return fileSet != null; } | isInLibraryClasses |
252,756 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSet(fileOrDir, true, false, false, true, false); return fileSet != null; } | isInLibrarySource |
252,757 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSet(fileOrDir, true, false, true, true, false); return fileSet != null; } | isInLibrary |
252,758 | boolean (@NotNull VirtualFile fileOrDir) { return myWorkspaceFileIndex.isInContent(fileOrDir); } | isInContent |
252,759 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); return fileSet != null; } | isInSourceContent |
252,760 | boolean (@NotNull VirtualFile fileOrDir) { WorkspaceFileSet fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); return fileSet != null && fileSet.getKind() == WorkspaceFileKind.TEST_CONTENT; } | isInTestSourceContent |
252,761 | boolean (@NotNull VirtualFile fileOrDir, @NotNull Set<? extends JpsModuleSourceRootType<?>> rootTypes) { WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); return isSourceRootOfType(fileSe... | isUnderSourceRootOfType |
252,762 | boolean (@Nullable WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet, @NotNull Set<? extends JpsModuleSourceRootType<?>> rootTypes) { if (fileSet == null) return false; JpsModuleSourceRootType<?> type = SourceRootTypeRegistry.getInstance().findTypeById(fileSet.getData().getRootType()); return type != null &&... | isSourceRootOfType |
252,763 | SourceFolder (@NotNull VirtualFile fileOrDir) { WorkspaceFileSetWithCustomData<ModuleSourceRootData> fileSet = myWorkspaceFileIndex.findFileSetWithCustomData(fileOrDir, true, true, false, false, false, ModuleSourceRootData.class); if (fileSet == null) return null; for (ContentEntry contentEntry : ModuleRootManager.getI... | getSourceFolder |
252,764 | boolean () { return myProject.isDisposed(); } | isScopeDisposed |
252,765 | String () { return myProductionModulePointer != null ? myProductionModulePointer.getModuleName() : null; } | getProductionModuleName |
252,766 | Module () { return myProductionModulePointer != null ? myProductionModulePointer.getModule() : null; } | getProductionModule |
252,767 | void (@Nullable String moduleName) { myProductionModulePointer = moduleName != null ? ModulePointerManager.getInstance(myModule.getProject()).create(moduleName) : null; } | setProductionModuleName |
252,768 | TestModulePropertiesState () { TestModulePropertiesState state = new TestModulePropertiesState(); state.moduleName = getProductionModuleName(); return state; } | getState |
252,769 | void (@NotNull TestModulePropertiesState state) { setProductionModuleName(state.moduleName); } | loadState |
252,770 | ProjectModelExternalSource () { return ExternalProjectSystemRegistry.getInstance().getExternalSource(myModule); } | getExternalSource |
252,771 | void (@NotNull Processor<? super Module> processor) { processor.process(myRootModel.getModule()); } | processRootModules |
252,772 | void (@NotNull PairProcessor<? super OrderEntry, ? super List<? extends OrderEnumerationHandler>> processor) { processEntries(myRootModel, myRecursively ? CollectionFactory.createSmallMemoryFootprintSet() : null, true, getCustomHandlers(myRootModel.getModule()), processor); } | forEach |
252,773 | boolean (@NotNull ModuleRootModel rootModel) { return rootModel.getModule() == myRootModel.getModule(); } | isRootModuleModel |
252,774 | Library (final Library library, final String libraryName, final String libraryLevel) { return library; } | getLibrary |
252,775 | Sdk (final Sdk sdk, final String sdkName) { return sdk; } | getSdk |
252,776 | Module (final Module module, final String moduleName) { return module; } | getModule |
252,777 | Sdk (@NotNull Project project) { return ProjectRootManager.getInstance(project).getProjectSdk(); } | getProjectSdk |
252,778 | String (@NotNull final Project project) { return ProjectRootManager.getInstance(project).getProjectSdkName(); } | getProjectSdkName |
252,779 | RootInfo (@NotNull Project project) { if (LOG.isDebugEnabled()) { LOG.debug("Start building root info " + Thread.currentThread()); } final RootInfo info = new RootInfo(); ModuleManager moduleManager = ModuleManager.getInstance(project); boolean includeProjectJdk = true; for (final Module module : moduleManager.getModul... | buildRootInfo |
252,780 | Set<VirtualFile> (Set<? extends Sdk> sdks) { Set<VirtualFile> roots = new HashSet<>(); for (Sdk sdk : sdks) { roots.addAll(Arrays.asList(sdk.getRootProvider().getFiles(OrderRootType.CLASSES))); } return roots; } | collectSdkClasses |
252,781 | Set<Sdk> () { Set<Sdk> sdks = new HashSet<>(); for (Module m : ModuleManager.getInstance(myProject).getModules()) { Sdk sdk = ModuleRootManager.getInstance(m).getSdk(); if (sdk != null) { sdks.add(sdk); } } return sdks; } | collectSdks |
252,782 | void (RootInfo info, Object container, VirtualFile[] sourceRoots, VirtualFile[] classRoots) { // Init library sources for (final VirtualFile sourceRoot : sourceRoots) { if (!ensureValid(sourceRoot, container)) continue; info.classAndSourceRoots.add(sourceRoot); info.libraryOrSdkSources.add(sourceRoot); } // init librar... | fillIndexWithLibraryRoots |
252,783 | boolean (@NotNull VirtualFile file, @NotNull Object container) { return RootFileSupplier.ensureValid(file, container, null); } | ensureValid |
252,784 | OrderEntryGraph () { if (myOrderEntryGraph == null) { RootInfo rootInfo = buildRootInfo(myProject); Couple<MultiMap<VirtualFile, OrderEntry>> pair = initLibraryClassSourceRoots(); myOrderEntryGraph = new OrderEntryGraph(myProject, rootInfo, pair.first, pair.second); } return myOrderEntryGraph; } | getOrderEntryGraph |
252,785 | String () { return myOrderEntry.toString(); } | toString |
252,786 | String () { return myKey.toString(); } | toString |
252,787 | List<OrderEntry> (@NotNull VirtualFile key) { return collectOrderEntries(key); } | createValue |
252,788 | Set<String> (@NotNull Module key) { return collectDependentUnloadedModules(key); } | createValue |
252,789 | List<OrderEntry> (@NotNull VirtualFile file) { return myCache.get(file); } | getOrderEntries |
252,790 | List<OrderEntry> (@NotNull VirtualFile file) { List<VirtualFile> roots = getHierarchy(file, myAllRoots, myRootInfo); if (roots == null) { return Collections.emptyList(); } Stack<Node> stack = new Stack<>(roots.size()); for (VirtualFile root : roots) { Collection<Node> nodes = myRoots.get(root); for (Node node : nodes) ... | collectOrderEntries |
252,791 | Set<String> (@NotNull Module module) { Node start = myGraph.myNodes.get(module); if (start == null) return Collections.emptySet(); Deque<Node> stack = new ArrayDeque<>(); stack.push(start); Set<Node> seen = new HashSet<>(); Set<String> result = null; while (!stack.isEmpty()) { Node node = stack.pop(); if (!seen.add(nod... | collectDependentUnloadedModules |
252,792 | List<VirtualFile> (@NotNull VirtualFile deepDir, @NotNull Set<? extends VirtualFile> allRoots, @NotNull RootInfo info) { List<VirtualFile> hierarchy = new ArrayList<>(); boolean hasContentRoots = false; for (VirtualFile dir = deepDir; dir != null; dir = dir.getParent()) { hasContentRoots |= info.contentRootOf.get(dir) ... | getHierarchy |
252,793 | VirtualFile (@NotNull List<? extends VirtualFile> hierarchy) { Collection<Module> sourceRootOwners = null; boolean underExcludedSourceRoot = false; for (VirtualFile root : hierarchy) { Module module = contentRootOf.get(root); Module excludedFrom = excludedFromModule.get(root); if (module != null) { FileTypeAssocTable<B... | findNearestContentRoot |
252,794 | boolean (@NotNull VirtualFile contentRoot, @NotNull List<? extends VirtualFile> hierarchy, @NotNull FileTypeAssocTable<Boolean> table) { for (VirtualFile file : hierarchy) { if (table.findAssociatedFileType(file.getNameSequence()) != null) { return true; } if (file.equals(contentRoot)) { break; } } return false; } | isExcludedByPattern |
252,795 | int (Object object) { // reduce complexity of hashCode calculation to speed it up return Objects.hashCode(object instanceof Library ? ((Library)object).getName() : object); } | hashCode |
252,796 | boolean (Object o1, Object o2) { return Objects.equals(o1, o2); } | equals |
252,797 | Set<OrderEntry> (@NotNull List<? extends VirtualFile> hierarchy, @Nullable VirtualFile libraryClassRoot, @Nullable VirtualFile librarySourceRoot, @NotNull MultiMap<VirtualFile, OrderEntry> libClassRootEntries, @NotNull MultiMap<VirtualFile, OrderEntry> libSourceRootEntries) { Set<OrderEntry> orderEntries = new LinkedHa... | getLibraryOrderEntries |
252,798 | ModuleSourceOrderEntry (@NotNull List<? extends VirtualFile> hierarchy, @NotNull VirtualFile moduleContentRoot, @NotNull MultiMap<VirtualFile, OrderEntry> libClassRootEntries) { Module module = contentRootOf.get(moduleContentRoot); for (VirtualFile root : hierarchy) { if (sourceRootOf.get(root).contains(module)) { retu... | getModuleSourceEntry |
252,799 | V (K key) { V value; synchronized (myLock) { value = super.get(key); if (value != null) { return value; } } value = createValue(key); synchronized (myLock) { put(key, value); } return value; } | get |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.