代码搜索:Functionality
找到约 4,782 项符合「Functionality」的源代码
代码结果 4,782
www.eeworm.com/read/144216/5752490
strict-vars
Check strict vars functionality
__END__
# no strict, should build & run ok.
Fred ;
my $fred ;
$b = "fred" ;
$a = $$b ;
EXPECT
########
use strict qw(subs refs) ;
$fred ;
EXPECT
########
use stri
www.eeworm.com/read/144216/5752492
strict-refs
Check strict refs functionality
__END__
# no strict, should build & run ok.
my $fred ;
$b = "fred" ;
$a = $$b ;
$c = ${"def"} ;
$c = @{"def"} ;
$c = %{"def"} ;
$c = *{"def"} ;
$c = \&{"def"} ;
$c =
www.eeworm.com/read/144216/5752495
strict-subs
Check strict subs functionality
__END__
# no strict, should build & run ok.
Fred ;
my $fred ;
$b = "fred" ;
$a = $$b ;
EXPECT
########
use strict qw(refs vars);
Fred ;
EXPECT
########
use strict
www.eeworm.com/read/120487/6072072
sql plpython_test.sql
-- first some tests of basic functionality
--
-- better succeed
--
select stupid();
-- check static and global data
--
SELECT static_test();
SELECT static_test();
SELECT global_test_one();
SELECT glo
www.eeworm.com/read/481537/6642771
c main.c
/*
* kernel/power/main.c - PM subsystem core functionality.
*
* Copyright (c) 2003 Patrick Mochel
* Copyright (c) 2003 Open Source Development Lab
*
* This file is released under the GPLv2
*
www.eeworm.com/read/479792/6679004
c spi16.c
/*
spi16.c
SPI Interface Functions for PIC16 Devices
These functions were written to mimic the SPI library functions
as found in the MPLAB C18 library. The functionality is the same
as the P
www.eeworm.com/read/479375/6692810
doxygen driver_wrapper.doxygen
/**
\page driver_wrapper Driver wrapper implementation (driver.h, drivers.c)
All hardware and driver dependent functionality is in separate C files
that implement defined wrapper functions. Other par
www.eeworm.com/read/407914/11408621
m gfdemo02.m
% GFDEMO02 Demonstrate 2-D Gabor functionality
%
% References:
% [1] Kamarainen, J.-K., Kyrki, V., Kalviainen, H., Gabor
% Features for Invariant Object Recognition, Research
% repo
www.eeworm.com/read/251779/12320101
c test.c
/*
FILE NAME: test.c
FILE DESCRIPTION:
Test driver and library functionality.
Nothing should be connected to the board connectors during this
test.
PROJECT NAME: Linux DM7520 Driver, Libr
www.eeworm.com/read/232312/14198831
c ide-io.c
/*
* IDE I/O functions
*
* Basic PIO and command management functionality.
*
* This code was split off from ide.c. See ide.c for history and original
* copyrights.
*
* This program is free sof