代码搜索:Behavior
找到约 3,820 项符合「Behavior」的源代码
代码结果 3,820
www.eeworm.com/read/316450/13522550
vhd 36_gcd.vhd
entity gcd is
port(start: in bit;
clk : in bit;
din : in bit;
xi,yi: in integer;
dout : out bit;
output:out integer);
end gcd;
architecture behavior of gcd is
begin
process
www.eeworm.com/read/136989/5838946
readme
README,v 1.4 2001/09/18 00:05:29 irfan Exp
Description:
This performance test measures the predictable behavior achieved from
employing different RT policies and their combinations.
www.eeworm.com/read/121316/6068244
java testdirectorynode.java
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2003 The Apache Software Foundation. All rights
* reserved.
www.eeworm.com/read/492369/6422064
vb myapplication.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.40527.0
'
' Changes to thi
www.eeworm.com/read/484542/6579558
m nodevisitor.m
classdef NodeVisitor < handle
% Inheriting from handle class provides reference behavior
methods
function visit(self,node,depth)
if ~isempty(node.val)
www.eeworm.com/read/409813/11311159
java quack.java
package DP.Chapter1.Behavior;
public class Quack implements QuackBehavior {
public void quack() {
System.out.print("quack");
}
}
www.eeworm.com/read/409813/11311161
java mutequack.java
package DP.Chapter1.Behavior;
public class MuteQuack implements QuackBehavior {
public void quack() {
System.out.print("mutequack");
}
}