Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

        // are extracted to a separate file, and merged into the IDE-specific
        // Checkstyle config.
        Node xmlFragment = parseXml(checkstyleIdeFragment)
    
        // Edit the copy so that IntelliJ can copy with it
        modifyXml(checkstyleIdeConfig, { xml ->
          // Add all the nodes from the fragment file
          Node treeWalker = xml.module.find { it.'@name' == 'TreeWalker' }
          xmlFragment.module.each { treeWalker.append(it) }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 19:34:12 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  2. tests/migrate_test.go

    			sql, _ := fc()
    			modifySql = append(modifySql, sql)
    		},
    	}
    	session2 := DB.Session(&gorm.Session{Logger: tracer2})
    	err := session2.Table("migrate_decimal_columns").Migrator().AutoMigrate(model2)
    	if err != nil {
    		t.Fatalf("failed to get column types, got error: %v", err)
    	}
    	return modifySql
    }
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:49:01 GMT 2026
    - 66.3K bytes
    - Click Count (0)
  3. Vagrantfile

        vbox.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
        vbox.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
    
        # see https://github.com/hashicorp/vagrant/issues/9524
        vbox.customize ["modifyvm", :id, "--audio", "none"]
      end
    
      # Switch the default share for the project root from /vagrant to
      # /elasticsearch because /vagrant is confusing when there is a project inside
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
Back to Top