代码搜索:instead
找到约 6,048 项符合「instead」的源代码
代码结果 6,048
www.eeworm.com/read/153733/12010400
hh assert.hh
#ifndef assert_hh_included
#define assert_hh_included
#include
// Some simple assertion support. The intent is to call assert() with
// assert(TODO) or assert(UNREACHABLE) instead of ju
www.eeworm.com/read/254742/12121095
m factorize.m
function Factors = factorize(polyn)
format long; Factors = [];
% Use threshold of 1e-8 instead of 0 to account for
% precision effects
THRESH = 1e-8;
%
proots = roots(polyn); % get the zeroes of
www.eeworm.com/read/253533/12216476
txt 3.8.txt
Listing 3.8 Manipulating an Internal String Buffer Instead of Returning New
String Objects
using System;
using System.Text;
namespace _7_StringBuilder
{
class Class1
{
[STAThread]
static void
www.eeworm.com/read/251835/12317768
m plotptri.m
function h = plotptri(w,Q,lab)
%PLOTPTRI Plot a polygon triangulation.
% PLOTPTRI(W,E) plots the polygon W and the edges of a triangulation
% whose edges are described by E. Instead of E, you m
www.eeworm.com/read/250756/12386516
in makefile.in
# Makefile.in for putty under Unix with Autoconf.
#
# This file was created by `mkfiles.pl' from the `Recipe' file.
# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.
#
# Extra
www.eeworm.com/read/249911/12447204
changelog
Version 2.2.7a (6th June 2004)
--------------
When using gtkmm-2.4:
Gtk::FileChooserDialog is used instead of Gtk::FileSelection as
the file selector dialog (dialogs.h, dialogs.cpp and
www.eeworm.com/read/123749/14614431
m mapax.m
function []=mapax(nminlong,ndiglong,nminlat,ndiglat,hdl,axis_opt);
% function []=mapax(nminlong,ndiglong,nminlat,ndiglat,hdl,axis_opt);
% puts degrees and minutes on map axes instead of decimal de
www.eeworm.com/read/123658/14618309
h gsyslimits.h
/* syslimits.h stands for the system's own limits.h file.
If we can use it ok unmodified, then we install this text.
If fixincludes fixes it, then the fixed version is installed
instead of th
www.eeworm.com/read/222244/14699760
sql add_xp.sql
-- ADD_XP.SQL sample script to install extended stored procedures
--
-- Michael Coles, MCDBA
-- 7/2005
--
-- Updated 1/19/2006 - AES UDFs modified to use VARBINARY instead of VARCHAR
--
USE mas
www.eeworm.com/read/120429/14803840
java workqueue.java
// HORRIBLE PROGRAM - uses busy-wait instead of Object.wait! - Page 204
import java.util.*;
public abstract class WorkQueue {
private final List queue = new LinkedList();
private boole