Searched defs:version (Results 51 - 75 of 310) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/misc/Version/
H A DVersion.java6 * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
26 * @summary Check the JDK and JVM version returned by sun.misc.Version
38 VersionInfo jdk = jdkVersionInfo(System.getProperty("java.runtime.version"));
45 System.out.println("JDK version = " + jdk + " " + v1);
47 throw new RuntimeException("Unmatched version: " + jdk + " vs " + v1);
49 VersionInfo jvm = jvmVersionInfo(System.getProperty("java.vm.version"));
56 System.out.println("JVM version = " + jvm + " " + v2);
58 throw new RuntimeException("Unmatched version
100 jdkVersionInfo(String version) argument
139 jvmVersionInfo(String version) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpGenericPacket.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
42 * Current version of protocol. Any implementation of this protocol has to
69 * Validate protocol header version field
71 * @param version - value to validate
74 public static void checkVersion(short version) argument
77 if (version > PROTOCOL_VERSION) {
78 throw new JdpException("Unsupported protocol version: " + version);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMImplementationImpl.java78 * @param version The version number of the feature being tested.
83 * specified feature and version.
85 public boolean hasFeature(String feature, String version) { argument
87 boolean result = super.hasFeature(feature, version);
89 boolean anyVersion = version == null || version.length() == 0;
95 && (anyVersion || version.equals("2.0")))
97 && (anyVersion || version.equals("2.0")))
99 && (anyVersion || version
[all...]
H A DPSVIDOMImplementationImpl.java74 * @param version The version number of the feature being tested.
79 * feature and version.
81 public boolean hasFeature(String feature, String version) { argument
82 return super.hasFeature(feature, version) ||
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSImplementationImpl.java75 * @param version The version number of the feature being tested.
80 * feature and version.
82 public boolean hasFeature(String feature, String version) { argument
84 return (feature.equalsIgnoreCase("XS-Loader") && (version == null || version.equals("1.0")) ||
85 super.hasFeature(feature, version));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerFactory.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
51 // The next two methods allow creation of BufferManagers based on GIOP version.
55 GIOPVersion version, byte encodingVersion, ORB orb) {
65 switch (version.intValue())
76 throw new INTERNAL("Unknown GIOP version: "
77 + version);
131 GIOPVersion version, byte encodingVersion, ORB orb) {
136 orb.getORBData().getGIOPBuffMgrStrategy(version),
54 newBufferManagerRead( GIOPVersion version, byte encodingVersion, ORB orb) argument
130 newBufferManagerWrite( GIOPVersion version, byte encodingVersion, ORB orb) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DJavaSerializationComponent.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
38 * serialization version supported by the ORB.
47 private byte version; field in class:JavaSerializationComponent
61 public JavaSerializationComponent(byte version) { argument
62 this.version = version;
66 return this.version;
70 os.write_octet(version);
[all...]
H A DMaxStreamFormatVersionComponentImpl.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
49 private byte version; field in class:MaxStreamFormatVersionComponentImpl
62 return version == other.version ;
67 return version ;
72 return "MaxStreamFormatVersionComponentImpl[version=" + version + "]" ;
77 version
[all...]
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DAttributeDescription.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
30 * Generated by the IDL-to-Java compiler (portable), version "3.0"
40 public String version = null; field in class:AttributeDescription
53 version = _version;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DIDLID.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
49 public IDLID (String prefix, String name, String version) argument
53 _version = version;
90 public String version () method in class:IDLID
93 } // version
95 void version (String version) argument
97 if (version
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DValueMember.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
64 * The version of the <code>value</code> in which this member is defined.
67 public String version; field in class:ValueMember
105 *@param __version The version of the <code>value</code> in which this member is defined.
116 version = __version;
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc_audit.cpp6 * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
44 la_version(uint_t version) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpAccessControlModel.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
40 * @param version The SNMP protocol version number.
48 public void checkAccess(int version, argument
59 * @param version The SNMP protocol version number.
67 public void checkPduAccess(int version, argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DSimpleClientId.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
44 SimpleClientId(int version, String hostname, int port, argument
48 super(version, hostname, port, protocol, bindCtls, trace,
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DClient.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
54 * @param version the NTLM version to use, which can be:
73 * or {@code version} is illegal.
76 public Client(String version, String hostname, String username, argument
78 super(version);
88 debug("NTLM Client: (h,u,t,version(v)) = (%s,%s,%s,%s(%s))\n",
89 hostname, username, domain, version,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DRC2Parameters.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
44 * version RC2Version,
62 // size to/from encoded version number
101 // the version number
102 private int version = 0; field in class:RC2Parameters
126 version = EKB_TABLE[effectiveKeySize];
128 version = effectiveKeySize;
140 version
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReaderSpi.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
41 private static final String version = "1.0"; field in class:GIFImageReaderSpi
58 version,
H A DGIFImageWriterSpi.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
41 private static final String version = "1.0"; field in class:GIFImageWriterSpi
58 version,
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DAdobeMarkerSegment.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
42 int version; field in class:AdobeMarkerSegment
50 version = 101;
59 version = (buffer.buf[buffer.bufPtr++] & 0xff) << 8;
60 version |= buffer.buf[buffer.bufPtr++] & 0xff;
76 node.setAttribute("version", Integer.toString(version));
95 int value = getAttributeValue(node, attrs, "version",
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReaderSpi.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
41 private static final String version = "1.0"; field in class:PNGImageReaderSpi
58 version,
H A DPNGImageWriterSpi.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
43 private static final String version = "1.0"; field in class:PNGImageWriterSpi
60 version,
/openjdk7/hotspot/src/share/vm/runtime/
H A DdtraceJSDT.cpp6 * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
40 jint version, jstring module_name, jint providers_count,
114 jint version, jstring module_name, jint providers_count,
39 activate( jint version, jstring module_name, jint providers_count, JVM_DTraceProvider* providers, TRAPS) argument
113 activate( jint version, jstring module_name, jint providers_count, JVM_DTraceProvider* providers, TRAPS) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSchema.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
72 public Schema version(String value); method in interface:Schema
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSwACodec.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
48 public SwACodec(SOAPVersion version, WSBinding binding, Codec rootCodec) { argument
49 super(version, binding);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DVersionUtil.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
32 * Provides some version utilities.
39 public static boolean isVersion20(String version) { argument
40 return JAXWS_VERSION_20.equals(version);
44 * @param version
45 * @return true if version is a 2.0 version
47 public static boolean isValidVersion(String version) { argument
67 getCanonicalVersion(String version) argument
[all...]

Completed in 138 milliseconds

1234567891011>>