44 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
167
views
MRU structure with fixed number of elements, automatically adapting to LINQ queries
I have a folder containing huge numbers of files in many subfolders, and I want to select the files with a name that matches any of a specified list of patterns (regular expressions). My regular ...
2
votes
1
answer
59
views
C# MRUCache compiles on command line, but fails in Visual Studio
I found the following implementation of an MRUCache:
using System;
using System.Collections.Generic;
public class MRUCache<K, V>
{
private readonly int _capacity;
private readonly ...
1
vote
1
answer
106
views
Can't Select MRU Recent Files Item Twice
I have an application which uses a RibbonApplicationMenu which I've created using the example at WPF ObservableCollection not updating in ribbon view. This lists the most recently opened files. ...
0
votes
2
answers
919
views
Create WinUI3/MVVM Most Recently Used (MRU) List in Menu Bar
I would like to create a classic "Recent Files" list in my Windows app menu bar (similar to Visual Studio's menu bar -> File -> Recent Files -> see recent files list)
The MRU list (...
0
votes
1
answer
549
views
Where does VSCode store its Most Recently Used (MRU) list of .NET projects and solutions on Windows?
Where does VSCode store its Most Recently Used (MRU) list of .NET projects and solutions on Windows?
And also is there some open source code to fetch VSCode's MRUs?
I scanned all files in this dir (...
1
vote
0
answers
75
views
Update File Path in Most Recent Used Explorer List Which is Store in Binary
I'm having trouble understanding how to edit a file path of Binary Entry, what I'm trying to accomplish is to change the file path of the most recently used list after migrating from Folder ...
1
vote
1
answer
102
views
In Spyder, how can I disable MRU (most recently used) behavior when switching between file tabs?
In Spyder, how can I disable MRU (most recently used) behavior when switching between file tabs? I'd like the same behavior as in Chrome -- CTRL+TAB goes to the tab on the right, SHIFT+CTRL+TAB goes ...
0
votes
1
answer
228
views
How do you save the MRU List from Delphi's IDE?
I just upgraded from Delphi 10.3.1 to Delphi 10.3.2. I exported the migration settings so I could import them immediately after the upgrade was completed.
Unfortunately the "migration settings" does ...
1
vote
1
answer
212
views
WPF ObservableCollection not updating in ribbon view
I've created a C# WPF app with a RibbonApplicationMenu displaying a Most Recently Used (MRU) list. Unfortunately the display doesn't update when I select an existing file from the list or upload a new ...
2
votes
0
answers
125
views
vim insert-mode autocomplete using viminfo, recently opened files, sorted by word frequency
vim completion looks in dictionary, thesaurus and other buffers, but not the registers and mru files - I can do it by opening .viminfo and other most recently used files in background buffers. Can ...
5
votes
1
answer
1k
views
Programmatically finding the VS2017 Most Recently Used (MRU) solutions and projects
I know that Visual Studio 2017 now supports no-registry, side-by-side installations of all SKUs (Enterprise, Professional and Community) explanations here.
We need to access the list of VS2017 Most ...
1
vote
1
answer
237
views
Which cache algorithm is used in ccache?
I was trying to find any information about cache algorithm that are used in ccache, but didn't find anything. So, does anyone know how ccache evict elements when max_size is reached? LRU? MRU? "Ring ...
1
vote
2
answers
1k
views
Could someone help me to figure an example of MRU and CLOCK?
As title.
There is a buffer pool with 3 pages that receives requests for the following page numbers:
2,4,4,2,5,2,1,1,3,1
The replacement policies are MRU and CLOCK.
I am confused about how they ...
1
vote
0
answers
437
views
MFC: List of most recently used doesn't show up in the menu (aka some terribly stupid bug I'm doing)
This makes me feel bad about myself: I can't convince the MRU list to show up in my MFC app's menu despite the fact that I'm doing all the same things that I did with my last project in which I used ...
0
votes
0
answers
329
views
MRU with StringCollection
VB2012: I've taken the code from this site http://www.codeproject.com/Articles/88564/MRU-Menu-Class-Revisited#xx4295995xx to implement an MRU re-usable class for my project. All works great except ...