代码搜索:PATH
找到约 10,000 项符合「PATH」的源代码
代码结果 10,000
www.eeworm.com/read/287119/8719840
init_path
#!/bin/sh
# $Id: init_path,v 1.7 2002/11/10 12:29:04 crypt Rel-1.6-5 $
INIT_PATH=./
if [ -d $1/init.d/ ]; then
INIT_PATH=./init.d/
fi
if [ -d $1/../init.d/ ]; then
INIT_PATH=../init.d/
f
www.eeworm.com/read/287119/8719844
man_path
#!/bin/sh
# $Id: man_path,v 1.2 2002/10/29 07:11:45 crypt Rel-1.6-5 $
MAN_PATH=/usr/man/
if [ ! -d $MAN_PATH ]; then
MAN_PATH=/usr/share/man/
fi
echo $MAN_PATH
www.eeworm.com/read/287119/8719852
mod_path
#!/bin/sh
# $Id: mod_path,v 1.3 2003/12/24 08:16:36 nail Rel-1.6-5 $
KERNEL_VERSION=`uname -r|sed 's/\(.\..\).*/\1/'`
MOD_PATH=/lib/modules/`uname -r`/block/
if [ $KERNEL_VERSION = "2.4" ]; then
www.eeworm.com/read/287119/8720016
rc_path
#!/bin/sh
# $Id: rc_path,v 1.4 2002/10/29 07:11:45 crypt Rel-1.6-5 $
RC_PATH=/etc/rc.d/
if [ ! -d $RC_PATH ]; then
RC_PATH=/etc/
fi
echo $RC_PATH
www.eeworm.com/read/430342/8754969
h path.h
/*
*/
#define MAX_ITEM_COLLISION 100
#ifndef __PATH_H__
#define __PATH_H__
#include "dragon.h"
#include "char.h"
typedef struct tagSPNODE
{
int f, h, g;
int x, y;
www.eeworm.com/read/430342/8755331
cpp path.cpp
/*****************************************************************************\
* Copyright (c), Future Entertainment World / Seoul, Republic of Korea *
* All Rights Reserved.
www.eeworm.com/read/430317/8756742
java path.java
package fy;
import java.util.Vector;
public class Path {
public Vector links;
public String pathId;
public Vector nodes = new Vector();
public String name;
public stati
www.eeworm.com/read/386291/8757838
java path.java
// path.java
// demonstrates shortest path with weighted, directed graphs
// to run this program: C>java PathApp
////////////////////////////////////////////////////////////////
class DistPar
www.eeworm.com/read/429977/8775769
out path.out
Smallest:
------------------------------
0000000101 0000005621 1
0000005966 0000001996 2
0000001378 0000005047 3
0000000075 0000000909 3
0000004597 0000002210 5
0000002147 0000005953 6
0000001
www.eeworm.com/read/286115/8788144