| /glassfish-3.1.2/common/mejb/src/test/java/org/glassfish/admin/mejb/test/ |
| H A D | MEJBTest.java | 263 final InitialContext initial = new InitialContext(); 264 final Object objref = initial.lookup(mejbName);
|
| /glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/ |
| H A D | ApplicationLifecycle.java | 1567 private ExtendedDeploymentContext getContext(ExtendedDeploymentContext initial, DeploymentContextBuilder builder) throws IOException { argument 1574 if (initial==null) { 1575 initial = new DeploymentContextImpl(copy, env); 1593 initial.getAppProps().put(ServerTags.DEFAULT_APP_NAME, 1622 archiveHandler.expand(archive, expandedArchive, initial); 1635 initial.setSource(archive); 1641 initial.setArchiveHandler(archiveHandler); 1642 return initial;
|
| /glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/client/ |
| H A D | RosterServlet.java | 109 Context initial = new InitialContext(); 110 Object objref = initial.lookup("java:comp/env/ejb/SimpleRoster");
|
| /glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/roster/ |
| H A D | RosterBean.java | 487 Context initial = new InitialContext(); 488 Object objref = initial.lookup("java:comp/env/ejb/SimplePlayer"); 494 Context initial = new InitialContext(); 495 Object objref = initial.lookup("java:comp/env/ejb/SimpleTeam"); 501 Context initial = new InitialContext(); 502 Object objref = initial.lookup("java:comp/env/ejb/SimpleLeague");
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/ |
| H A D | OutputBuffer.java | 117 private boolean initial = true; field in class:OutputBuffer 208 * Alternate constructor which allows specifying the initial buffer size. 298 initial = true; 369 if (initial){ 372 initial = false; 418 if (initial) { 420 initial = false; 657 initial = true; 817 if (!suspended && (initial || (bb.getLength() > 0))) {
|
| /glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/ |
| H A D | MutableAverageRangeStatisticImpl.java | 72 * The only parameter denotes the initial state of this statistic. It is 73 * guaranteed that the initial state is preserved internally, so that one 74 * can reset to the initial state. 75 * @param initial an instance of BoundedRangeStatistic that represents initial state 77 public MutableAverageRangeStatisticImpl(BoundedRangeStatistic initial) { argument 78 mutableBoundedRangeStat = new MutableBoundedRangeStatisticImpl(initial); 81 description = initial.getDescription();
|
| H A D | MutableBoundedRangeStatisticImpl.java | 59 private final BoundedRangeStatistic initial; field in class:MutableBoundedRangeStatisticImpl 67 * The only parameter denotes the initial state of this statistic. It is 68 * guaranteed that the initial state is preserved internally, so that one 69 * can reset to the initial state. 70 * @param initial an instance of BoundedRangeStatistic that represents initial state 72 public MutableBoundedRangeStatisticImpl(BoundedRangeStatistic initial) { argument 73 this.initial = initial; 74 this.current = initial [all...] |
| H A D | MutableCountStatisticImpl.java | 57 private final CountStatistic initial; field in class:MutableCountStatisticImpl 63 * The only parameter denotes the initial state of this statistic. It is 64 * guaranteed that the initial state is preserved internally, so that one 65 * can reset to the initial state. 66 * @param initial an instance of CountStatistic that represents initial state 68 public MutableCountStatisticImpl(CountStatistic initial) { argument 69 this.initial = initial; 70 this.count = initial [all...] |
| H A D | MutableTimeStatisticImpl.java | 54 private final TimeStatistic initial; field in class:MutableTimeStatisticImpl 68 public MutableTimeStatisticImpl(TimeStatistic initial) { argument 69 this.initial = initial; 70 methodCount = initial.getCount(); 71 min = initial.getMinTime(); 72 max = initial.getMaxTime(); 73 total = initial.getTotalTime(); 77 throw new IllegalArgumentException("Invalid initial values: " + min + ", " + max + ", " + total); 78 lastSampleTime = initial [all...] |
| /httpd/modules/filters/ |
| H A D | mod_reqtimeout.c | 515 int rate = 0, initial = 0, max = 0; local 545 ret = parse_int(p, initial_str, &initial); 550 ret = parse_int(p, val, &initial); 556 if (max && initial >= max) { 557 return "Maximum timeout must be larger than initial timeout"; 561 conf->header_timeout = initial; 568 conf->body_timeout = initial;
|