代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/162614/5531960
c gnu_java_awt_peer_gtk_gtkchoicepeer.c
/* gtkchoicepeer.c -- Native implementation of GtkChoicePeer
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can re
www.eeworm.com/read/162519/5541492
c gnu_java_awt_peer_gtk_gtkchoicepeer.c
/* gtkchoicepeer.c -- Native implementation of GtkChoicePeer
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can re
www.eeworm.com/read/191079/8433972
cpp cfft3.cpp
//
// spectral toolkit
// copyright (c) 2005 university corporation for atmospheric research
// licensed under the gnu general public license
//
#include "cfft3.h"
#include "transpose.h"
#include "a
www.eeworm.com/read/191079/8434022
cpp group.cpp
//
// spectral toolkit
// copyright (c) 2005 university corporation for atmospheric research
// licensed under the gnu general public license
//
#include "group.h"
namespace spectral
{
/// Const
www.eeworm.com/read/388423/8610261
py refresh.py
"""MySQL REFRESH Constants
These constants seem to mostly deal with things internal to the
MySQL server. Forget you saw this.
"""
GRANT = 1
LOG = 2
TABLES = 4
HOSTS = 8
STATUS = 16
THREADS = 32
SLA
www.eeworm.com/read/285786/8817798
java threadlister.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/184255/9114282
c quiksort.c
#include
#include
#include
#define N 200
#define NUM_THREADS 2
int rand(void);
int partition(int b[],int,int);
void quicksort(int b[],int,int);
void main(){
int
www.eeworm.com/read/380352/9151884
cpp fdtd_3d_xyzpml_mpi_openmp.cpp
////////////////////////////////////////////////////////////////////////////////
//Parallel 3D FDTD algorithm with constant material parameters - eps_r, mu_r, sigma
// - MPI Non-Blocking communicat
www.eeworm.com/read/378188/9242668
xrun
#!/bin/sh
#
# Execute script for a module program of the EuroBen OpenMP Benchmark.
#
LOGDIR=Log.`hostname`
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
LOGFILE=${LOGDIR}/$1.p0${OMP_NUM_THREADS}.log
else
www.eeworm.com/read/175598/9540362
c rwlock7.c
/*
* rwlock7.c
*
* Hammer on a bunch of rwlocks to test robustness and fairness.
* Printed stats should be roughly even for each thread.
*/
#include "test.h"
#include
#ifdef __GNU