代码搜索:usage
找到约 10,000 项符合「usage」的源代码
代码结果 10,000
www.eeworm.com/read/284258/8952357
rd qm.sm.rd
\name{qM.sM}
\alias{qM.sM}
\title{ Matrix Quantiles }
\description{
Computes quantiles along the third dimension of a 3-d array.
}
\usage{
qM.sM(sM, quantiles = c(0.025, 0.5, 0.975))
}
%- maybe als
www.eeworm.com/read/185783/8985739
c main.c
#include "call.h"
/* define global variables */
char escapec = '~';
char *src;
char *dst;
static void usage(char *);
int
main(int argc, char *argv[])
{
int c, remfd, debug;
char args[MAXLI
www.eeworm.com/read/185783/8986224
c main.c
#include "lprps.h"
static void usage(void);
int
main(int argc, char *argv[])
{
int c;
log_open("lprps", LOG_PID, LOG_LPR);
opterr = 0; /* don't want getopt() writing to stderr */
while ( (c
www.eeworm.com/read/382631/9014979
sh remove-markers.sh
#!/bin/bash
set -e
if [ "$#" -ne 1 ]; then
echo
echo "Usage:"
echo " $0 file.{h,cpp}"
echo
exit 1
fi
# remove opening markers
sed -i 's/ \/\/ {{{//g' $1
# remove closing markers
sed -i
www.eeworm.com/read/185374/9041206
c thumb.c
#include "common.h"
#include "string.h"
#include
#include
#include
static void usage(void) {
printf("Usage: thumb -i \n");
exit(0);
}
www.eeworm.com/read/185374/9041214
c newplaylist.c
#include "common.h"
#include "string.h"
#include
#include
#include
static void usage(void) {
printf("Usage: newplaylist -i -n \n");
www.eeworm.com/read/185152/9054981
m dsobjf.m
function f=dsobjf(x)
% Usage:
% f=dsobjf(x)
% Calculates the objective function value
% at a point for Shell Dual Problem
global A B C D E
x=x(:); f=2*D'*x(1:5).^3 + (C*x(1:5))'*x(1:5)
www.eeworm.com/read/185086/9057527
htm column.htm
#!/usr/bin/perl
# Mark Claypool
# Last significantly modified: December, 2001
# This program prints out fields of an indicated column.
# The columns are numbered 0, 1, 2, 3 ...
require 'getop
www.eeworm.com/read/184366/9107737
in nasl-config.in
#!/bin/sh
#
# Nessus libraries configuration script
#
# by Renaud Deraison -
#
# Thanks to the GTK team for the idea.
#
# Some code comes from gtk-config
#
#
PREFIX=@prefix
www.eeworm.com/read/281673/9142629
cpp progvals.cpp
//: C04:ProgVals.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "ProgVals.h"
using n