代码搜索:Simple
找到约 10,000 项符合「Simple」的源代码
代码结果 10,000
www.eeworm.com/read/304561/13791394
simple_load
#!/bin/sh
module="simple"
device="simple"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/304561/13791395
c simple.c
/*
* Simple - REALLY simple memory mapping demonstration.
*
* Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
* Copyright (C) 2001 O'Reilly & Associates
*
* The source code in this file
www.eeworm.com/read/304561/13791396
simple_unload
#!/bin/sh
module="simple"
device="simple"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device}[rn]
www.eeworm.com/read/303669/13810537
c simple.c
/*
* Copyright (c) 2001-2002 The Trustees of Indiana University.
* All rights reserved.
* Copyright (c) 1998-2001 University of Notre Dame.
* All
www.eeworm.com/read/303103/13821658
simple_load
#!/bin/sh
module="simple"
device="simple"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/303103/13821659
c simple.c
/*
* Simple - REALLY simple memory mapping demonstration.
*
* Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
* Copyright (C) 2001 O'Reilly & Associates
*
* The source code in this file
www.eeworm.com/read/303103/13821660
simple_unload
#!/bin/sh
module="simple"
device="simple"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device}[rn]
www.eeworm.com/read/301170/13864904
m simple.m
n=10;
A1=sparse(1:n,1:n,-2,n,n);
A2=sparse(1:n-1,2:n,1,n,n);
A=A1+A2+A2';
B1=ones(1,8);
B2=-1.5*B1;
B3=[-0.5];
B4=cat(2,B3,B2,B3);
B=(B4)';
x=A\B;
x
www.eeworm.com/read/152661/5671871
cxx simple.cxx
//==========================================================================
//
// simple.cxx
//
// Simple, non formatting trace and assert functions
//
//===================================