代码搜索:Cache
找到约 10,000 项符合「Cache」的源代码
代码结果 10,000
www.eeworm.com/read/129351/14249969
s head.s
/*
* head.S
*
* Copyright (C) 2001-2002 Hayden Luo
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
www.eeworm.com/read/128997/14270319
c block.c
#include "vxd.h"
#include "shared\vxddebug.h"
#include "shared\blkdev.h"
#include "cache.h"
#include "block.h"
/*
* This module administrates all blocks loaded in memory.
* For each blo
www.eeworm.com/read/128648/14283544
aspx listing1405.aspx
sub Page_Load(obj as Object,e as EventArgs)
if not Page.IsPostBa
www.eeworm.com/read/128648/14283616
aspx listing1205.aspx
sub Page_Load(obj as Object, e as EventArgs)
if not
www.eeworm.com/read/229932/14311305
txt lucene.net-2.1.0-vs2005.csproj.filelist.txt
bin\Release\Lucene.Net.dll
bin\Release\Lucene.Net.xml
obj\Release\ResolveAssemblyReference.cache
obj\Release\Lucene.Net.dll
www.eeworm.com/read/229932/14311629
cs queryfilter.cs
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding c
www.eeworm.com/read/229932/14311673
cs hits.cs
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding c
www.eeworm.com/read/128088/14315591
s sysalib.s
/* Copyright 1984-1998 Wind River Systems, Inc. */
.data
.globl copyright_wind_river
.long copyright_wind_river
/*
modification history
*/
/*
DESCRIPTION
This module contains sy
www.eeworm.com/read/127767/14336990
txt e344. implementing a least-recently-used (lru) cache.txt
// Create cache
final int MAX_ENTRIES = 100;
Map cache = new LinkedHashMap(MAX_ENTRIES+1, .75F, true) {
// This method is called just after a new entry has been added
publi