代码搜索:Behavior
找到约 3,820 项符合「Behavior」的源代码
代码结果 3,820
www.eeworm.com/read/233448/4671040
c ellipsis1.c
// PR c++/15142
// Bug: We were aborting after giving a warning about passing a non-POD.
// Suppress the warning about undefined behavior.
// { dg-options "-w" }
struct B {
B() throw() { }
www.eeworm.com/read/233448/4686095
c paste2.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do run } */
/* { dg-options "-std=c99 -pedantic-errors" } */
/* Test ## behavior and corner cases thoroughly. The macro expander
www.eeworm.com/read/222917/4816168
readme
!!Caution: DO NOT ADD/CHANGE MBSTRING CODE!!
New mbstring is under development, anyone who would like
add new feature/change behavior should access to development
source.
http://cvs.sourceforge.jp/c
www.eeworm.com/read/222307/4820526
java icache.java
package com.cache.behavior;
import java.util.Map;
public interface ICache {
public Object get( Object key );
public void put( Object key , Object value );
public void remove( Object na
www.eeworm.com/read/209559/4973372
txt zero.txt
dm-zero
=======
Device-Mapper's "zero" target provides a block-device that always returns
zero'd data on reads and silently drops writes. This is similar behavior to
/dev/zero, but as a block-device
www.eeworm.com/read/207991/4998378
mils id.602271.mils
# Date: 2002-08-30 00:57
# Priority: 5
# Submitted By: Alex van Ballegooij (bally)
# Assigned To: Niels Nes (nielsnes)
# Category: None
# Status: Closed
# Summary:
# oid v.s. void bat behavior
#
#
www.eeworm.com/read/204325/5032665
java focuslistener.java
package org.j3de.behavior;
import java.util.EventListener;
import javax.media.j3d.Node;
public interface FocusListener extends EventListener {
public void focusChanged(FocusEvent eve
www.eeworm.com/read/193974/5138293
py test_fork1.py
"""This test checks for correct fork() behavior.
We want fork1() semantics -- only the forking thread survives in the
child after a fork().
On some systems (e.g. Solaris without posix threads) we fi
www.eeworm.com/read/180408/5286269
java parseerrorhandler.java
// $Id: ParseErrorHandler.java,v 1.6 2004/12/11 16:31:17 pgmjsd Exp $
package org.hibernate.hql.ast;
import org.hibernate.QueryException;
/**
* Defines the behavior of an error handler for the HQ
www.eeworm.com/read/179906/5301385
java transmogrify.java
//: c07:Transmogrify.java
// Dynamically changing the behavior of an object
// via composition (the "State" design pattern).
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEc