代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/291160/3970070
py domstart.py
#! /usr/bin/python
# domstart - make sure a given domU is running, if not start it
import libvirt
import sys
import os
import libxml2
import pdb
# Parse the XML description of domU from FNAME
# and
www.eeworm.com/read/290228/3983403
awk bw.awk
#
# bw.awk
# awk script to parse the output of a ns trace file,
# and produce mean bandwidth vs time-interval
#
# Usage:
# awk -f bw.awk OP= [args] tracefile
#
# [a
www.eeworm.com/read/290083/3985266
java parseexception.java
/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */
package com.laoer.bbscs.lucene.html;
/**
* This exception is thrown when parse errors are encountered.
* You can ex
www.eeworm.com/read/287090/4030469
java parseexception.java
/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */
package org.apache.lucene.demo.html;
/**
* This exception is thrown when parse errors are encountered.
* You can ex
www.eeworm.com/read/284986/4058883
s ncrtso.s
! This is the C run-time start-off routine. It's job is to take the
! arguments as put on the stack by EXEC, and to parse them and set them up the
! way _main expects them.
! It also initializes _
www.eeworm.com/read/284986/4058970
s crtso.s
! This is the C run-time start-off routine. It's job is to take the
! arguments as put on the stack by EXEC, and to parse them and set them up the
! way _main expects them.
! It also initializes _
www.eeworm.com/read/284576/4061888
s ncrtso.s
! This is the C run-time start-off routine. It's job is to take the
! arguments as put on the stack by EXEC, and to parse them and set them up the
! way _main expects them.
! It also initializes _
www.eeworm.com/read/284576/4061975
s crtso.s
! This is the C run-time start-off routine. It's job is to take the
! arguments as put on the stack by EXEC, and to parse them and set them up the
! way _main expects them.
! It also initializes _
www.eeworm.com/read/283915/4073514
lib subparseform.lib
sub Parse_Form
{
if ($ENV{'REQUEST_METHOD'} eq 'GET')
{
@pairs = split(/&/, $ENV{'QUERY_STRING'});
}
elsif ($ENV{'REQUEST_METHOD'} eq 'POST')
{
read (STDIN, $buffer, $ENV{'CONT
www.eeworm.com/read/283915/4073520
pl increment.pl
#!/usr/bin/perl
require "subparseform.lib";
&Parse_Form;
print "Content-type: text/html\n\n";
$counter = $formdata{'counter'};
++$counter;
print "Your number incremented by 1 is $counter";