Searched defs:priority (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/admingui/plugin-service/src/main/java/org/glassfish/admingui/plugin/
H A DIntegrationPoint.java77 * <li><code>priority</code> - A priority of this component, often used to
171 * <p> This specifies the relative priority of this
177 return priority;
181 * <p> Setter for the priority of the <code>IntegrationPoint</code>.</p>
184 void setPriority(int priority) { argument
185 this.priority = priority;
218 private int priority; field in class:IntegrationPoint
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/
H A DMonitorableThreadPool.java135 int priority) {
145 priority,
125 GrizzlyIntegrationThreadPoolConfig(String monitoringId, GrizzlyMonitoring monitoring, String poolName, int corePoolSize, int maxPoolSize, Queue<Runnable> queue, int queueLimit, long keepAliveTime, TimeUnit timeUnit, ThreadFactory threadFactory, int priority) argument
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava_md.unix.c425 /* Need to use nanosleep so that lower priority threads can run */
439 struct sched_param priority; local
556 /* Raise the thread's priority so that it is guaranteed a time slice */
557 if (pthread_getschedparam(tid, &policy, &priority) || (priority.sched_priority = sched_get_priority_max(policy)) == -1)
559 if (pthread_setschedparam(tid, policy, &priority))
906 * Search for a JRE giving priority to JDK installations

Completed in 22 milliseconds