代码搜索:sync
找到约 6,244 项符合「sync」的源代码
代码结果 6,244
www.eeworm.com/read/229812/4753180
cpp zfstream.cpp
#include "zfstream.h"
gzfilebuf::gzfilebuf() :
file(NULL),
mode(0),
own_file_descriptor(0)
{ }
gzfilebuf::~gzfilebuf() {
sync();
if ( own_file_descriptor )
close();
}
www.eeworm.com/read/229403/4756571
in config.in
config BR2_PACKAGE_OPENNTPD
bool "OpenNTPD"
default n
help
OpenNTPD is an easy to use implementation of the Network Time
Protocol. It provides the ability to sync t
www.eeworm.com/read/324136/3505770
readme
The files in this directory are for testing modules of RAT. They do
not necessarily stay in sync with source code. However, if you add a
codec, renderer, whatever, the test applications should provi
www.eeworm.com/read/313170/3645357
cpp zfstream.cpp
#include "zfstream.h"
gzfilebuf::gzfilebuf() :
file(NULL),
mode(0),
own_file_descriptor(0)
{ }
gzfilebuf::~gzfilebuf() {
sync();
if ( own_file_descriptor )
close();
}
www.eeworm.com/read/302096/3827527
sh apply-patches.sh
#!/bin/sh
# This program is intended to help keep the XORP modified version of
# OSPFD in sync with the ftp site and patches. We keep track of the
# applied patches in the file imaginatively titled
www.eeworm.com/read/381490/2644404
cpp zfstream.cpp
#include "zfstream.h"
gzfilebuf::gzfilebuf() :
file(NULL),
mode(0),
own_file_descriptor(0)
{ }
gzfilebuf::~gzfilebuf() {
sync();
if ( own_file_descriptor )
close();
}
www.eeworm.com/read/366359/2890981
cpp zfstream.cpp
#include "zfstream.h"
gzfilebuf::gzfilebuf() :
file(NULL),
mode(0),
own_file_descriptor(0)
{ }
gzfilebuf::~gzfilebuf() {
sync();
if ( own_file_descriptor )
close();
}
www.eeworm.com/read/173430/9658716
testcases
# testcases
#
# This file should be filled with test cases to test applets that:
#
# - can somehow produce output (we can't test sync or sleep)
# - have a GNU (or other) counterpart
# - are not int
www.eeworm.com/read/366926/9792632
java objectfifotest.java
public class ObjectFIFOTest extends Object {
private static void fullCheck(ObjectFIFO fifo) {
try {
// Sync'd to allow messages to print while
// condition is still true.
synchron