Searched refs:post (Results 1 - 9 of 9) sorted by relevance

/lucene-3.6.0/solr/client/ruby/solr-ruby/test/unit/
H A Dsolr_mock_base.rb21 Connection.send(:alias_method, :orig_post, :post)
25 Connection.send(:alias_method, :post, :orig_post)
30 def post(request) method in class:SolrMockBaseTestCase.set_post_return
H A Dconnection_test.rb21 assert_equal "foo", connection.post(Solr::Request::AddDocument.new)
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/compound/hyphenation/
H A DHyphen.java24 * pre-break text, post-break text and no-break. If no line-break is generated
26 * post-break are used. Typically, pre-break is equal to the hyphen character
42 Hyphen(String pre, String no, String post) { argument
45 postBreak = post;
/lucene-3.6.0/solr/client/ruby/solr-ruby/lib/solr/
H A Dconnection.rb15 # TODO: add a convenience method to POST a Solr .xml file, like Solr's example post.sh
151 data = post(request)
155 # send the http post request to solr; for convenience there are shortcuts
157 def post(request) method in class:Solr
158 response = @connection.post(@url.path + "/" + request.handler,
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/impl/
H A DCommonsHttpSolrServer.java295 PostMethod post = new PostMethod(url);
296 post.getParams().setContentCharset("UTF-8");
298 post.addRequestHeader("Content-Type",
312 post.addParameter(p, v);
341 post.setRequestEntity(new MultipartRequestEntity(parts
342 .toArray(new Part[parts.size()]), post.getParams()));
345 method = post;
347 // It is has one stream, it is the post body, put the params in the URL
350 PostMethod post = new PostMethod(url + pstr);
360 post
[all...]
H A DHttpSolrServer.java261 final HttpPost post = new HttpPost(url);
277 post.setEntity(entity);
278 method = post;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DSnapPuller.java176 PostMethod post = new PostMethod(masterUrl);
177 post.addParameter(COMMAND, CMD_INDEX_VERSION);
178 post.addParameter("wt", "javabin");
179 return getNamedListResponse(post);
183 PostMethod post = new PostMethod(masterUrl);
185 post.addParameter(c.getKey(),c.getValue());
187 post.addParameter("wt", "javabin");
188 return getNamedListResponse(post);
211 PostMethod post = new PostMethod(masterUrl);
212 post
867 private PostMethod post; field in class:SnapPuller.FileFetcher
[all...]
/lucene-3.6.0/lucene/site/build/site/skin/
H A Dbreadcrumbs-optimized.js52 var post = "/";
/lucene-3.6.0/lucene/site/src/documentation/skins/common/scripts/
H A Dbreadcrumbs-optimized.js52 var post = "/";

Completed in 2668 milliseconds