代码搜索:Pool
找到约 5,820 项符合「Pool」的源代码
代码结果 5,820
www.eeworm.com/read/290343/3979707
java pool.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copy
www.eeworm.com/read/288961/3996840
java pool.java
package org.codehaus.xfire.util.factory;
/**
* Represents a pooling strategy for certain object instance.
*
* @author Ben Yu
*/
public interface Pool
extends java.io.Serializable
{
www.eeworm.com/read/285407/4052475
java pool.java
/*
* This file is part of JGAP.
*
* JGAP offers a dual license model containing the LGPL as well as the MPL.
*
* For licensing information please see the file license.txt included with JGAP
www.eeworm.com/read/283607/4077640
h pool.h
/*
(c) Copyright 2000-2002 convergence integrated media GmbH.
(c) Copyright 2002-2004 convergence GmbH.
All rights reserved.
Written by Denis Oliver Kropp ,
www.eeworm.com/read/283607/4077642
c pool.c
/*
(c) Copyright 2000-2002 convergence integrated media GmbH.
(c) Copyright 2002-2004 convergence GmbH.
All rights reserved.
Written by Denis Oliver Kropp ,
www.eeworm.com/read/282708/4088741
c pool.c
/* -*- c-file-style: "img" -*-
* Name : pool.c
* Title : Object Pool Memory Allocator
* Author : Marcus Shawcroft
* Created : 14 May 2003
*
* Copyright : 2
www.eeworm.com/read/282708/4088762
h pool.h
/* -*- c-file-style: "img" -*-
* Name : pool.h
* Title : Object Pool Memory Allocator
* Author : Marcus Shawcroft
* Created : 14 May 2003
*
* Copyright
www.eeworm.com/read/280962/4121092
py pool.py
# pool.py - Connection pooling for SQLAlchemy
# Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com
#
# This module is part of SQLAlchemy and is released under
# the MIT Licens
www.eeworm.com/read/280962/4121178
py pool.py
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from testlib import *
from sqlalchemy.pool import QueuePool
from sqlalchemy.databases import sqlite
class QueuePoolTest(TestBase
www.eeworm.com/read/280962/4121286
py pool.py
import testenv; testenv.configure_for_tests()
import threading, thread, time, gc
import sqlalchemy.pool as pool
import sqlalchemy.interfaces as interfaces
import sqlalchemy.exceptions as exceptions
fr