代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/415759/11054631
news
Changes in version 1.25.2:
=========================
*
*Fixes: #562204, #505445, #361757, #478620, #560156, #477708, #478595, #478583
#480126.
*Translation update.
Changes in version 1.24.0:
========
www.eeworm.com/read/415537/11065574
txt how to save windows xp updates.txt
Go to the Windows Update web site.
In the left pane, under Other Options, select 揚ersonalize Windows Update
www.eeworm.com/read/414661/11107009
txt 15.txt
set transaction read only;
update emp
set ename = lower(ename);
select object_id
from all_objects
where rownum
www.eeworm.com/read/267675/11169135
cpp gameapp.cpp
//-------------------------------------------------------------------------------------
//
// JGE++ is a hardware accelerated 2D game SDK for PSP/Windows.
//
// Licensed under the BSD license, see
www.eeworm.com/read/412508/11195251
cc normal.cc
#include "h/normal.h"
Define_Module_Like(Normal,Mobility);
bool Normal::torus(int &x, int &y)
{
bool update=false;
d("toru");
if( x < minX)
{
x = maxX;
update=true;
}
if( x > maxX)
{
www.eeworm.com/read/412508/11195304
cc randomwalk.cc
#include "h/randomWalk.h"
Define_Module_Like(RandomWalk,Mobility);
bool RandomWalk::rebound(int& x, int &y)
{
bool update=false;
d("rebound");
if( x < minX)
{
dX *= (-1); // change the sign
www.eeworm.com/read/412508/11195314
cc pursuit.cc
#include "h/pursuit.h"
Define_Module_Like(Pursuit,Mobility);
bool Pursuit::rebound(int x, int y)
{
bool update = false;
if( (x = maxX) )
{
dX *= (-1); // change the sign
u