代码搜索:usage
找到约 10,000 项符合「usage」的源代码
代码结果 10,000
www.eeworm.com/read/349916/10782798
m l.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = l(x)
%
%
out = log(x);
www.eeworm.com/read/349916/10782962
m p.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = p(u)
%
%
out=exp(u);
www.eeworm.com/read/349916/10783264
m e.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = e(x)
%
%
out=exp(x);
www.eeworm.com/read/349916/10783293
m s.m
%
% routine to get the square of a number
%
% usage: via tree structured GA
%
function out = s(x)
%
%
out=x.^2.0;
www.eeworm.com/read/349916/10783489
m r.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = r(x)
%
%
out=sqrt(abs(x));
www.eeworm.com/read/419922/10829078
java annotationusage.java
package com.langsin.annotation;
public class AnnotationUsage
{
public void method()
{
System.out.println("usage of annotation");
}
public static void main(String[] args)
{
Anno
www.eeworm.com/read/418779/10897516
flowbits readme.flowbits
Flowbits Detection Capability
-----------------------------
The flowbits detection plugin uses the flow preprocessor to track rule state
across transport protocol sessions. This is most useful for T
www.eeworm.com/read/271450/10993689
cpp progvals.cpp
//: C20:ProgVals.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
#include "ProgVals.h"
u