Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for toConfig (0.05 seconds)

  1. impl/maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorPathTest.java

        void setUp() throws Exception {
            configurator = new DefaultBeanConfigurator();
        }
    
        @AfterEach
        void tearDown() throws Exception {
            configurator = null;
        }
    
        private Xpp3Dom toConfig(String xml) {
            try {
                return new Xpp3Dom(XmlService.read(new StringReader("<configuration>" + xml + "</configuration>")));
            } catch (XMLStreamException e) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  2. impl/maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

        void setUp() throws Exception {
            configurator = new DefaultBeanConfigurator();
        }
    
        @AfterEach
        void tearDown() throws Exception {
            configurator = null;
        }
    
        private Xpp3Dom toConfig(String xml) {
            try {
                return new Xpp3Dom(XmlService.read(new StringReader("<configuration>" + xml + "</configuration>")));
            } catch (XMLStreamException e) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  3. gorm.go

    	if config.SkipDefaultTransaction {
    		tx.Config.SkipDefaultTransaction = true
    	}
    
    	if config.AllowGlobalUpdate {
    		txConfig.AllowGlobalUpdate = true
    	}
    
    	if config.FullSaveAssociations {
    		txConfig.FullSaveAssociations = true
    	}
    
    	if config.PropagateUnscoped {
    		txConfig.PropagateUnscoped = true
    	}
    
    	if config.Context != nil || config.PrepareStmt || config.SkipHooks {
    		tx.Statement = tx.Statement.clone()
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Tue Aug 26 06:24:29 GMT 2025
    - 12.8K bytes
    - Click Count (0)
Back to Top