Search Results
OK to copy?
Examples 1 through 10 of
56 (0.055 seconds)
Class:
org.apache.catalina.util.ServerInfo
©,
Rating:
100% of 1,
C1
Class: org.apache.jmeter.util.NameUpdater ©, Rating: 0% of 0, C1
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C1
Class: org.apache.catalina.util.CharsetMapper ©, Rating: 0% of 0, C1
Class: org.apache.catalina.startup.CatalinaProperties ©, Rating: 0% of 0, C3
Class: javax.xml.soap.FactoryFinder ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.input.PropertyFileInputHandler ©, Rating: 0% of 0, C1
Class: org.apache.axis.tools.ant.wsdl.NamespaceMapping ©, Rating: 0% of 0, C1
48 ("/org/apache/catalina/util/ServerInfo.properties");
49 Properties props = new Properties();
50 props.load(is);
51 is.close();
52 serverInfo = props.getProperty("server.info");
Class: org.apache.jmeter.util.NameUpdater ©, Rating: 0% of 0, C1
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C1
54 Properties props = new Properties();
55 try {
56 props.load(new ByteArrayInputStream(text.getBytes()));
57 dropComments(props);
58 }
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
43 InputStream in = XPlannerProperties.class.getClassLoader().getResourceAsStream(customPropertyFileName);
44 if (in != null) {
45 customProperties.load(in);
46 for (Iterator iterator = customProperties.keySet().iterator(); iterator.hasNext();) {
47 String key = (String)iterator.next();
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C1
22 InputStream in = XPlannerProperties.class.getClassLoader().getResourceAsStream(FILENAME);
23 if (in != null) {
24 properties.load(in);
25 setCustomPropertyOverrides(properties);
26 } else {
Class: org.apache.catalina.util.CharsetMapper ©, Rating: 0% of 0, C1
082 InputStream stream =
083 this.getClass().getResourceAsStream(name);
084 map.load(stream);
085 stream.close();
086 } catch (Throwable t) {
Class: org.apache.catalina.startup.CatalinaProperties ©, Rating: 0% of 0, C3
115 try {
116 properties = new Properties();
117 properties.load(is);
118 is.close();
119 } catch (Throwable t) {
Class: javax.xml.soap.FactoryFinder ©, Rating: 0% of 0, C2
147 Properties properties = new Properties();
148
149 properties.load(fileInput);
150 fileInput.close();
151
Class: org.apache.tools.ant.input.PropertyFileInputHandler ©, Rating: 0% of 0, C1
81
82 try {
83 props.load(new FileInputStream(propsFile));
84 } catch (IOException e) {
85 throw new BuildException("Couldn't load " + propsFile, e);
Class: org.apache.axis.tools.ant.wsdl.NamespaceMapping ©, Rating: 0% of 0, C1
176 try {
177 instr = new FileInputStream(mappingFile);
178 props.load(new BufferedInputStream(instr));
179 } catch (IOException e) {
180 throw new BuildException("Failed to load " + mappingFile, e);