Searched defs:size (Results 1 - 25 of 96) sorted by relevance

1234

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DAnnotationDetector.java152 protected boolean containsAnnotation(InputStream is, long size) argument
160 result = classFile.containsAnnotation(channel, size);
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/interceptors/
H A DCallbackChainImpl.java52 protected int size; field in class:CallbackChainImpl
56 this.size = (interceptors == null) ? 0 : interceptors.length;
64 if (index < size) {
86 size++;
88 CallbackInterceptor[] newArray = new CallbackInterceptor[size];
90 for(int i = 1; i < size; i++) {
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/pi/
H A DArrayListStack.java68 /** Creates a stack with the given initial size */
69 public ArrayListStack(int size) { argument
71 list = new ArrayList(size);
74 /** Creates a stack with a default size */
80 * Provides the current size of the stack.
81 * @return int return the current size.
83 public int size() { method in class:ArrayListStack
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DCacheEntry.java82 public int size = 1; field in class:CacheEntry
96 size = 1;
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/notification/
H A DSimpleQueue.java65 public int size() { method in class:SimpleQueue
66 return q.size();
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/results/
H A DOptionsResult.java91 public int size() { method in class:OptionsResult
92 return __metaData.size();
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/
H A DClassDependencyBuilder.java98 if ((nInfos != null) && (nInfos.size() > 0)) {
114 if ((set != null) && (set.size() > 0)) {
122 if ((intfs != null) && (intfs.size() > 0)) {
129 if (list.size() > 0) {
160 public int size() { method in class:ClassDependencyBuilder
161 return mappings.size();
194 if ((anns != null) && (anns.size() > 0)) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationResponse.java198 * @param size The buffer size
200 public void setBufferSize(int size) { argument
202 getResponse().setBufferSize(size);
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DTokenValueSet.java97 public int size() { method in class:TokenValueSet
98 return ( this.values.size() );
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/management/client/prefs/
H A DLoginInfoStore.java72 * Upon successful return, size of this store decreases by one.
83 * Upon successful return, the size of this store increases by one. An exception is thrown
94 * Upon successful return, the size of this store increases by one. An exception is thrown
128 public int size() throws StoreException; method in interface:LoginInfoStore
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/
H A DMonitorableFileCache.java125 protected void addHeapSize(long size) { argument
126 super.addHeapSize(size);
128 monitoringId, size);
132 protected void subHeapSize(long size) { argument
133 super.subHeapSize(size);
135 monitoringId, size);
139 protected void addMappedMemorySize(long size) { argument
140 super.addMappedMemorySize(size);
142 monitoringId, size);
146 protected void subMappedMemorySize(long size) { argument
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/probes/
H A DConnectionQueueProbeProvider.java75 @ProbeParam("size") int size) {}
73 setMaxTaskQueueSizeEvent( @robeParam�) String listenerName, @ProbeParam(�) int size) argument
H A DFileCacheProbeProvider.java80 @ProbeParam("size") long size) {}
84 @ProbeParam("size") long size) {}
89 @ProbeParam("size") long size) {}
94 @ProbeParam("size") long size) {}
79 addHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
83 subHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
87 addMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
92 subMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/stats/
H A DConnectionQueueStatsProviderGlobal.java85 @ProbeParam("size") int size) {
86 maxQueued.setCount(size);
83 setMaxTaskQueueSizeEvent( @robeParam�) String listenerName, @ProbeParam(�) int size) argument
H A DFileCacheStatsProviderGlobal.java105 @ProbeParam("size") long size) {
106 final long newSize = heapSize.addAndGet(size);
121 @ProbeParam("size") long size) {
122 heapSize.addAndGet(-size);
128 @ProbeParam("size") long size) {
129 final long newSize = mappedMemorySize.addAndGet(size);
145 @ProbeParam("size") lon
104 addHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
120 subHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
126 addMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
143 subMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/
H A DRuntimeDescriptor.java165 if (list!=null && list.size()>0) {
167 Object array = java.lang.reflect.Array.newInstance(c, list.size());
174 protected int size(String name) { method in class:RuntimeDescriptor
177 return list.size();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DContainerFactoryImpl.java189 * Creates a stack with the given initial size
191 public ArrayListStack(int size) { argument
192 super(size);
196 * Creates a stack with a default size
221 int sz = super.size();
232 return super.size() == 0;
243 int sz = size();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DCache.java62 public int size(); method in interface:Cache
/glassfish-3.1.2/extras/embedded/common/bootstrap/src/main/java/org/glassfish/uberjar/bootstrap/
H A DUtil.java145 static void copyWithoutClose(InputStream in, FileOutputStream out, long size) throws IOException { argument
149 outChannel.transferFrom(inChannel, 0, size);
153 static void copy(InputStream in, FileOutputStream out, long size) throws IOException { argument
156 copyWithoutClose(in, out, size);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DByteArrayOutputStream.java115 * initially 1024 bytes, though its size increases if necessary.
123 * the specified size, in bytes.
125 * @param size the initial size
126 * @throws IllegalArgumentException if size is negative
128 public ByteArrayOutputStream(int size) { argument
129 if (size < 0) {
131 "Negative initial size: " + size);
133 needNewBuffer(size);
258 public synchronized int size() { method in class:ByteArrayOutputStream
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/
H A DSSIFsize.java97 long size = ssiMediator.getFileSize(substitutedValue,
100 writer.write(formatSize(size, configSizeFmt));
106 ssiMediator.log("#fsize--Couldn't get size for file: "
139 protected String formatSize(long size, String format) { argument
143 retString = decimalFormat.format(size);
145 if (size < 0) {
147 } else if (size == 0) {
149 } else if (size < ONE_KILOBYTE) {
151 } else if (size < ONE_MEGABYTE) {
152 retString = Long.toString((size
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/
H A DBoundedMultiLruCache.java56 // upper bound on the cache size
72 long size = -1;
91 size = Long.parseLong(prop.trim());
96 if (size > 0)
97 maxSize = (size * multiplier);
119 // update the size
131 * @param oldSize size of the previous value that was refreshed
137 /** reduce the cache by the size of the size of the previous value
153 // update the size
168 incrementCurrentSize(int size) argument
174 decrementCurrentSize(int size) argument
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DInsnIInc.java136 int size() { method in class:InsnIInc
H A DInsnIntOp.java113 if (size() == 4) {
119 if (size() > 2)
126 /* return the size of the instruction in bytes */
128 int size() { method in class:InsnIntOp
H A DInsnInterfaceInvoke.java130 int size() { method in class:InsnInterfaceInvoke

Completed in 552 milliseconds

1234