Search Results
OK to copy?
Examples 1 through 10 of
35 (0.0010 seconds)
Class:
org.springframework.beans.factory.access.BeanFactoryBootstrap
©,
Rating:
0% of 0,
C1
Class: org.springframework.beans.ConcurrentBeanWrapperTests ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.InputTest ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.access.BeanFactoryBootstrapTests ©, Rating: 0% of 0, C1
Class: org.springframework.web.util.WebUtils ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.types.CommandlineJavaTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
102 PropertiesBeanDefinitionReader propReader = new PropertiesBeanDefinitionReader(startupFactory);
103 try {
104 propReader.registerBeanDefinitions(System.getProperties());
105 this.bootstrapFactory = (BeanFactory) startupFactory.getBean(BEAN_FACTORY_BEAN_NAME);
106 }
Class: org.springframework.beans.ConcurrentBeanWrapperTests ©, Rating: 0% of 0, C2
076 TestBean bean = new TestBean();
077
078 Properties p = (Properties) System.getProperties().clone();
079
080 assertTrue("The System properties must not be empty", p.size() != 0);
Class: org.apache.tools.ant.taskdefs.InputTest ©, Rating: 0% of 0, C1
37 public void setUp() {
38 configureProject("src/etc/testcases/taskdefs/input.xml");
39 System.getProperties()
40 .put(PropertyFileInputHandler.FILE_NAME_KEY,
41 getProject().resolveFile("input.properties")
Class: org.springframework.beans.factory.access.BeanFactoryBootstrapTests ©, Rating: 0% of 0, C1
189 protected void setUp() throws Exception {
190 // save and restore System properties, which get destroyed for the tests
191 _savedProps = System.getProperties();
192 }
193
Class: org.springframework.web.util.WebUtils ©, Rating: 0% of 0, C1
114 String param = servletContext.getInitParameter(WEB_APP_ROOT_KEY_PARAM);
115 String key = (param != null ? param : DEFAULT_WEB_APP_ROOT_KEY);
116 System.getProperties().remove(key);
117 }
118
Class: org.apache.tools.ant.types.CommandlineJavaTest ©, Rating: 0% of 0, C1
122 assertNotNull(System.getProperty("key"));
123 assertEquals("value", System.getProperty("key"));
124 assertTrue(System.getProperties().containsKey("java.class.path"));
125 assertNotNull(System.getProperty("key2"));
126 assertEquals("value2", System.getProperty("key2"));
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
138 System.getProperties().put("http.proxySet", "false");
139 System.getProperties().put("http.proxyHost", "");
140 System.getProperties().put("http.proxyPort", "");
141 log("Using Direction HTTP Connection", Project.MSG_DEBUG);
142 URL url = new URL(imgurl);
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
137 } else {
138 System.getProperties().put("http.proxySet", "false");
139 System.getProperties().put("http.proxyHost", "");
140 System.getProperties().put("http.proxyPort", "");
141 log("Using Direction HTTP Connection", Project.MSG_DEBUG);
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
136
137 } else {
138 System.getProperties().put("http.proxySet", "false");
139 System.getProperties().put("http.proxyHost", "");
140 System.getProperties().put("http.proxyPort", "");
Class: org.apache.tools.ant.taskdefs.optional.splash.SplashTask ©, Rating: 0% of 0, C3
123 System.getProperties().put("http.proxySet", "true");
124 System.getProperties().put("http.proxyHost", proxy);
125 System.getProperties().put("http.proxyPort", port);
126
127 URL url = new URL(imgurl);