代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/195013/5119164
h ipt_state.h
#ifndef _IPT_STATE_H
#define _IPT_STATE_H
#define IPT_STATE_BIT(ctinfo) (1
www.eeworm.com/read/195013/5122071
h llc_state.h
char *state_names[] = {
"ADM","CONN","RESET_WAIT","RESET_CHECK","SETUP",
"RESET","D_CONN","ERROR","NORMAL"
};
www.eeworm.com/read/195013/5123329
c ipt_state.c
/* Kernel module to match connection tracking information.
* GPL (C) 1999 Rusty Russell (rusty@rustcorp.com.au).
*/
#include
#include
#include
www.eeworm.com/read/189320/5196182
dsp state_static.dsp
# Microsoft Developer Studio Project File - Name="State_Static" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/188906/5205044
rb state_test.rb
require File.dirname(__FILE__) + '/../test_helper'
class StateTest < Test::Unit::TestCase
fixtures :states
# Replace this with your real tests.
def test_truth
assert_kind_of State, states(
www.eeworm.com/read/188906/5205048
rb state_controller.rb
class StateController < ApplicationController
before_filter :set_charset
def set_charset
@headers["Content-Type"] = "text/html; charset=GB2312"
end
scaffold :state
end
www.eeworm.com/read/188906/5205092
rb state_test.rb
require File.dirname(__FILE__) + '/../test_helper'
class StateTest < Test::Unit::TestCase
fixtures :states
# Replace this with your real tests.
def test_truth
assert true
end
end