Searched refs:from (Results 1 - 25 of 39) sorted by relevance

12

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/io/
H A DSmartFile.java65 * elements from the path.
191 int from, to;
192 for (from = 0, to = 0; from < p.length; from++) {
193 if (p[from] == '/' &&
194 ((from + 3 < p.length &&
195 p[from+1] == '.' && p[from+2] == '.' && p[from
[all...]
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/registry/
H A DMonitoringLevelListener.java45 * be received for change in monitoring level from a prior
67 * @param from the MonitoringLevel before the change
72 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
95 * @param from the MonitoringLevel before the change
99 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jtsxa/
H A DXID.java92 private int gtrid_length; // Value from 1 through 64
97 private int bqual_length; // Value from 1 through 64
157 * @param from the XID to initialize this XID from
160 public void copy(XID from) { argument
164 if (from == null) // If source is physically null
169 if (from.formatID == (-1)) // If source is a NULL transaction
174 gtrid_length= from.gtrid_length;
175 bqual_length= from.bqual_length;
177 if (data != null && from
195 copy(otid_t from) argument
[all...]
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/webapp/javascripts/
H A Dmoo.fx.js72 this.now = this.compute(this.from, this.to);
75 compute: function(from, to){
76 var change = to - from;
77 return this.options.transition(this.cTime, from, change, this.options.duration);
86 _start: function(from, to){
90 this.from = from;
97 custom: function(from, to){
98 return this._start(from, to);
147 for (p in this.from) thi
[all...]
H A Dmoo.fx.pack.js76 custom: function(from, to){
77 return this._start(from.hexToRgb(true), to.hexToRgb(true));
82 this.now[i] = Math.round(this.compute(this.from[i], this.to[i]));
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/io/
H A DWindowsRemoteFile.java241 * Copies from sin to this WindowsRemoteFile
298 public final void copyFrom(File from, WindowsRemoteFileCopyProgress progress) argument
302 if (from == null || !from.isFile())
303 throw new IllegalArgumentException("copyFrom file arg is bad: " + from);
305 long filesize = from.length();
306 BufferedInputStream sin = new BufferedInputStream(new FileInputStream(from));
318 * Use this for tiny files -- like scripts that are created on-the-fly from a String
320 public final void copyFrom(Collection<String> from) throws WindowsException { argument
321 if (from
336 copyFrom(String from) argument
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DVirtualServerPipeline.java162 * @param from URI prefix to match
168 void addRedirect(String from, String url, String urlPrefix, argument
175 redirects.add(new RedirectParameters(from, url, urlPrefix, escape));
218 // Determine the longest 'from' URI prefix match
222 String elemFromWithTrailingSlash = elem.from;
226 if (requestURI.equals(elem.from) ||
229 if (elem.from.length() > redirectMatch.from.length()) {
242 redirectMatch.from.length());
243 if ("/".equals(redirectMatch.from)) {
326 private String from; field in class:VirtualServerPipeline.RedirectParameters
344 RedirectParameters(String from, String url, String urlPrefix, boolean isEscape) argument
[all...]
/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/sql/
H A Dcreate_derby.sql15 select city from web_customer where cust_id=1;
16 select * from web_customer where custname Like 'Alice_1';
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/jmx/
H A DAttributeListUtils.java208 private static String[] getCamelCaseArray(final String[] from) { argument
209 final String[] humps = new String[from.length];
210 for (int i = 0 ; i < from.length ; i++) {
211 final StringBuffer sb = new StringBuffer(from[i]);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/factory/
H A DSendMailFactory.java99 * &lt;parameter>&lt;name>mail.from&lt;/name>
154 String from = (String)Ref.get("mail.from").getContent();
155 message.setFrom(new InternetAddress(from));
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/config/
H A DMailResourceConfigTest.java130 final String from,
132 return ss.getResourcesConfig().createMailResourceConfig(name, host, user, from, optional);
125 createInstance( final DomainConfig ss, final String name, final String host, final String user, final String from, Map<String, String> optional) argument
/glassfish-3.1.2/admin/jmx-remote/server/src/main/java/com/sun/enterprise/admin/jmx/remote/server/
H A DMBeanServerRequestHandler.java78 /** Handles the request that is received from the servlet. Responsible for
169 * come from deployment descriptor, but for now I am hardcoding it -- 08/04/03.
204 private MBeanServerRequestMessage removeVersion(MBeanServerRequestMessage from) { argument
205 final int id = from.getMethodId();
206 final Subject s = from.getDelegationSubject();
207 final Shifter sh = new Shifter(from.getParams());
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DOrderingDescriptor.java274 private static Edge getEdge(Node from, Node to, Map<Node, Map<Node, Edge>> map) { argument
276 Map<Node, Edge> node2Edge = map.get(from);
279 map.put(from, node2Edge);
284 edge = new Edge(from, to);
349 // remove corresponding incoming edge from the outNode
522 private Edge(Node from, Node to) { argument
523 fromNode = from;
H A DMethodDescriptor.java136 /** Construct an exact method descriptor from the given method object, classloader and ejb descriptor.
144 /** Construct an method descriptor from the given method object.
423 * Performs a conversion from the style1 style2 and style3 (no interface symbol) to
669 private String[] xmlFormat2JavaClassNames (String[] from) { argument
670 String[] to = new String[from.length];
671 for (int i=0; i<from.length; i++) {
672 to[i] = xmlFormat2JavaClassNames (from[i]);
677 // Convert arrays from form int[][][] to [[[L form.
725 // Convert arrays from [[[I form to int[][][] form.
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DTypeUtil.java253 * @param from the array of strings to convert
256 public static String arrayToString(String[] from, String separator) { argument
259 for (int i = 0; i < from.length; i++) {
261 sb.append(from[i]);
271 * @param from the string to convert
274 public static String[] stringToArray(String from, String separator) { argument
275 if (from == null) {
281 StringTokenizer toks = new StringTokenizer(from, separator);
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/
H A DLogViewHandlers.java131 Date from = null, to = null;
141 from = convertDateTime(handlerCtx, fromDate, fromTime);
143 if ((from == null)) {
146 if (to != null && from != null) {
147 if (from.after(to)) {
153 // Date not enabled, ignore from/to dates
154 from = null;
224 if (from != null)
225 notNullStringPut(attMap,"fromTime", Long.valueOf(from.getTime()));
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Deffects.js102 from: 0.0,
243 this.fromToDelta = this.options.to-this.options.from;
263 pos = (this.options.transition(pos) * this.fromToDelta) + this.options.from;
333 initialize: function(object, from, to) {
340 this.start(Object.extend({ from: from, to: to }, options || { }));
362 from: this.element.getOpacity() || 0.0,
536 from: element.getOpacity() || 1.0,
549 from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
556 effect.element.setOpacity(effect.options.from)
[all...]
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Deffects.js269 from: 0.0,
316 pos *= (this.options.to-this.options.from);
317 pos += this.options.from;
379 from: this.element.getOpacity() || 0.0,
569 from: element.getOpacity() || 1.0,
581 from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
588 effect.element.setOpacity(effect.options.from).show();
654 from: 0,
836 [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
895 [ new Effect.Opacity(element, { sync: true, to: 0.0, from
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/connector/extension/
H A DGrizzlyConfig.java198 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
213 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
/glassfish-3.1.2/admingui/full/src/main/resources/
H A DmailResourceAttr.inc70 <sun:textField id="from" styleClass="required" text="#{pageSession.valueMap['from']}" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.javaMail.returnAddr']}" required="#{true}" />
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/antlr/
H A DJDOQLCodeGeneration.g169 * Extracts the name of the candidate class of the JDOQL query from the
170 * select- and from-clause of the EJBQL query.
175 EJBQLAST from = (EJBQLAST)query.getFirstChild();
176 EJBQLAST select = (EJBQLAST)from.getNextSibling();
179 var = getIdentificationVarDecl(from, var.getText());
186 * Calculates the parameter declarations of the JDOQL query from the
202 // cannot be determined from query.
237 private EJBQLAST getIdentificationVarDecl(EJBQLAST from, String varName)
241 for (EJBQLAST varDecl = (EJBQLAST)from.getFirstChild();
255 return getIdentificationVarDecl(from,
[all...]
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/commands/
H A DCollectLogFiles.java128 // getting log file values from logging.propertie file.
153 "collectlogfiles.errInstanceDownloading", "Error while downloading log files from {0}.", target);
203 // getting log file values from logging.propertie file.
227 "collectlogfiles.errInstanceDownloading", "Error while downloading log files from {0}.", instanceName);
274 // getting log file values from logging.propertie file.
299 "collectlogfiles.errInstanceDownloading", "Error while downloading log files from {0}.", target);
324 // getting log file values from logging.propertie file.
349 "collectlogfiles.errInstanceDownloading", "Error while downloading log files from {0}.", instanceName);
419 FileInputStream from = null;
424 from
[all...]
/glassfish-3.1.2/packager/nucleus-base/config/
H A Dasenv.bat46 REM from another script to define these variables. Rather, this file is read
58 REM correctly unless the script happens to be run from the GlassFish installation
/glassfish-3.1.2/packager/glassfish-nucleus/src/main/resources/bin/
H A Dasadmin.bat43 REM Depends on Java from ..\glassfish\config\asenv.bat
/glassfish-3.1.2/packager/nucleus-base/bin/
H A Dasadmin.bat43 REM Depends on Java from ..\config\asenv.bat

Completed in 75 milliseconds

12