代码搜索:Local

找到约 10,000 项符合「Local」的源代码

代码结果 10,000
www.eeworm.com/read/339483/12230637

sh twodim.sh

#!/bin/bash # twodim.sh: Simulating a two-dimensional array. # A one-dimensional array consists of a single row. # A two-dimensional array stores rows sequentially. Rows=5 Columns=5 # 5 X 5 Array.
www.eeworm.com/read/339465/12233118

c xirc2ps_cs.c

/* [xirc2ps_cs.c wk 03.11.99] (1.40 1999/11/18 00:06:03) * Xircom CreditCard Ethernet Adapter IIps driver * Xircom Realport 10/100 (RE-100) driver * * This driver supports various Xircom CreditCa
www.eeworm.com/read/252193/12294601

sh string.functions.sh

#!/bin/bash # function strcat # Usage: strcat s1 s2 function strcat () { local s1_val s2_val s1_val=${!1} # indirect variable expansion s2_val=${!2}
www.eeworm.com/read/338238/12317130

m simulatedannealing.m

function [stateFound] = simulatedAnnealing(adj,J,local,temperatures,schedule) % [stateFound] = simulatedAnnealing(adj,J,local,temperatures,schedule) % samples between states in the system, while cooli
www.eeworm.com/read/149995/12326656

c receiver.c

// 模块名: Receiver.c // // 描述: // 本例通过将套接字绑定到指定的网卡地址和端口号,然后调 // 用recvfrom()阻塞函数,来接收UDP数据报 // // 编译方法: // cl -o Receiver Receiver.c ws2_32.lib // // 命令行选项: // sender [-p:int] [-i:IP]
www.eeworm.com/read/338035/12327234

c time.c

# include # include int main() { struct tm *local; time_t tm; tm = time(NULL); local = localtime(&tm); printf("Local time and date: %s\n", asctime(local)); loca
www.eeworm.com/read/148578/12457186

c systffs.c

/* sysTffs.c - PC Pentium/Pentium2/Pentium3 system-dependent TrueFFS library */ /* Copyright 1984-1997 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* FAT-FTL Lite Software Development Kit
www.eeworm.com/read/132223/14103900

c usrnetboot.c

/* usrNetBoot.c - network initialization, phase 2: validate boot parameters */ /* Copyright 1992 - 2000 Wind River Systems, Inc. */ /* modification history -------------------- 06/09/2004, pcd Mod
www.eeworm.com/read/233424/14151434

c vxping.c

/* vxPing.c - send ICMP ECHO_REPLY packets to a particular network host*/ /* Copyright 1984-1997 Wind River Systems, Inc. */ /* modification history -------------------- 01i,14nov97,ns removed pac
www.eeworm.com/read/130965/14165223

c ftp.c

/* * Copyright (c) 1985, 1989, 1993, 1994 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modificatio