Searched refs:URL (Results 1 - 25 of 69) sorted by relevance

123

/lucene-3.6.0/solr/example/exampledocs/
H A Dpost.sh18 URL=http://localhost:8983/solr/update
21 echo Posting file $f to $URL
22 curl $URL --data-binary @$f -H 'Content-type:application/xml'
27 curl $URL --data-binary '<commit/>' -H 'Content-type:application/xml'
H A Dtest_utf8.sh20 URL=http://localhost:8983/solr
23 URL=$1
26 curl "$URL/select?q=hello&params=explicit&wt=python" 2> /dev/null | grep 'hello' > /dev/null 2>&1
34 curl "$URL/select?q=h%C3%A9llo&echoParams=explicit&wt=python" 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1
41 curl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1
48 curl $URL/select --data-binary 'q=h%C3%A9llo&echoParams=explicit&wt=python' 2> /dev/null | grep 'h\\u00e9llo' > /dev/null 2>&1
58 #URL encoded UTF8 of the codepoint
63 curl "$URL/select?q=$URL_UTF8&echoParams=explicit&wt=python" 2> /dev/null | grep $EXPECTED > /dev/null 2>&1
70 curl $URL/select --data-binary "q=$URL_UTF8&echoParams=explicit&wt=python" -H 'Content-type:application/x-www-form-urlencoded; charset=UTF-8' 2> /dev/null | grep $EXPECTED > /dev/null 2>&1
77 curl "$URL/selec
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DStandardRequestHandler.java23 import java.net.URL;
65 return "$URL: http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_6_0/solr/core/src/java/org/apache/solr/handler/StandardRequestHandler.java $";
69 public URL[] getDocs() {
71 return new URL[] { new URL("http://wiki.apache.org/solr/StandardRequestHandler") };
H A DDisMaxRequestHandler.java27 import java.net.URL;
165 return "$URL: http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_6_0/solr/core/src/java/org/apache/solr/handler/DisMaxRequestHandler.java $";
169 public URL[] getDocs() {
171 return new URL[] { new URL("http://wiki.apache.org/solr/DisMaxRequestHandler") };
H A DRequestHandlerBase.java32 import java.net.URL;
167 public URL[] getDocs() {
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DSolrInfoMBean.java20 import java.net.URL;
51 * Documentation URL list.
55 * FAQ on class usage, Design doc for class, Wiki, bug reporting URL, etc...
58 public URL[] getDocs();
/lucene-3.6.0/solr/solrj/src/test/org/apache/solr/client/solrj/embedded/
H A DJettyWebappTest.java21 import java.net.URL;
97 byte[] bytes = IOUtils.toByteArray( new URL(adminPath).openStream() );
101 bytes = IOUtils.toByteArray( new URL(adminPath).openStream() );
105 bytes = IOUtils.toByteArray( new URL(adminPath+"analysis.jsp").openStream() );
109 bytes = IOUtils.toByteArray( new URL(adminPath+"schema.jsp").openStream() );
113 bytes = IOUtils.toByteArray( new URL(adminPath+"threaddump.jsp").openStream() );
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DBinURLDataSource.java25 import java.net.URL;
78 URL url = null;
80 if (URIMETHOD.matcher(query).find()) url = new URL(query);
81 else url = new URL(baseUrl + query);
82 LOG.debug("Accessing URL: " + url.toString());
H A DLineEntityProcessor.java85 url = context.getResolvedEntityAttribute(URL);
88 "'"+ URL +"' is a required attribute");
144 public static final String URL = "url"; field in class:LineEntityProcessor
H A DURLDataSource.java25 import java.net.URL;
87 URL url = null;
89 if (URIMETHOD.matcher(query).find()) url = new URL(query);
90 else url = new URL(baseUrl + query);
92 LOG.debug("Accessing URL: " + url.toString());
H A DPlainTextEntityProcessor.java21 import static org.apache.solr.handler.dataimport.XPathEntityProcessor.URL;
53 String url = context.replaceTokens(context.getEntityAttribute(URL));
/lucene-3.6.0/solr/core/src/java/org/apache/solr/update/processor/
H A DURLClassifyProcessor.java23 import java.net.URL;
33 * Update processor which examines a URL and outputs to various other fields
34 * characteristics of that URL, including length, number of path levels, whether
35 * it is a top level URL (levels==0), whether it looks like a landing/index page,
36 * a canonical representation of the URL (e.g. stripping index.html), the domain
37 * and path parts of the URL etc.
114 URL normalizedURL = getNormalizedURL(url);
137 * Gets a canonical form of the URL for use as main URL
139 * @return The URL objec
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/component/
H A DSearchComponent.java21 import java.net.URL;
97 public URL[] getDocs() {
/lucene-3.6.0/solr/core/src/java/org/apache/solr/highlight/
H A DHighlightingPluginBase.java20 import java.net.URL;
61 public URL[] getDocs() {
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DSolrFieldCacheMBean.java20 import java.net.URL;
53 return "$URL: http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_6_0/solr/core/src/java/org/apache/solr/search/SolrFieldCacheMBean.java $";
55 public URL[] getDocs() {
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/admin/
H A DPluginInfoHandler.java20 import java.net.URL;
77 URL[] urls = m.getDocs();
80 for( URL u : urls ) {
114 return "$URL: http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_6_0/solr/core/src/java/org/apache/solr/handler/admin/PluginInfoHandler.java $";
H A DAdminHandlers.java20 import java.net.URL;
124 return "$URL: http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_6_0/solr/core/src/java/org/apache/solr/handler/admin/AdminHandlers.java $";
131 public URL[] getDocs() {
/lucene-3.6.0/solr/solrj/src/test/org/apache/solr/common/util/
H A DContentStreamTest.java28 import java.net.URL;
68 URL url = new URL( "http://svn.apache.org/repos/asf/lucene/dev/trunk/" );
/lucene-3.6.0/solr/contrib/dataimporthandler/src/test/org/apache/solr/handler/dataimport/
H A DTestLineEntityProcessor.java47 LineEntityProcessor.URL, "dummy.lis",
87 LineEntityProcessor.URL, "dummy.lis",
125 LineEntityProcessor.URL, "dummy.lis",
162 LineEntityProcessor.URL, "dummy.lis",
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/
H A DSimplePostTool.java32 import java.net.URL;
61 protected URL solrUrl;
79 "URL to POST to, the Content-Type of the data, whether a commit\n"+
94 URL u = null;
96 u = new URL(System.getProperty("url", DEFAULT_POST_URL));
98 fatal("System Property 'url' is not a valid URL: " + u);
186 * Constructs an instance for posting data to the specified Solr URL
189 public SimplePostTool(URL solrUrl) {
242 * Performs a simple get on the given URL
247 doGet(new URL(ur
[all...]
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/impl/
H A DCommonsHttpSolrServer.java24 import java.net.URL;
80 * The URL of the Solr server.
130 * If set to false, add the query parameters as URL-encoded parameters to the
136 * requests specify that non-ASCII characters should be URL-encoded, but don't
137 * specify the charset of the characters to be URL-encoded (cf.
145 * @param solrServerUrl The URL of the Solr server. For
151 this(new URL(solrServerUrl));
161 this(new URL(solrServerUrl), httpClient, new BinaryResponseParser(), false);
165 this(new URL(solrServerUrl), httpClient, new BinaryResponseParser(), useMultiPartPost);
169 this(new URL(solrServerUr
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/client/solrj/embedded/
H A DJettySolrRunner.java22 import java.net.URL;
133 URL url = new URL("http://localhost:"+port+context+"/select?q={!raw+f=junit_test_query}ping");
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DContentStreamBase.java29 import java.net.URL;
35 * Three concrete implementations for ContentStream - one for File/URL/String
67 * Construct a <code>ContentStream</code> from a <code>URL</code>
74 private final URL url;
76 public URLStream( URL url ) throws IOException {
/lucene-3.6.0/solr/contrib/uima/src/java/org/apache/solr/uima/processor/ae/
H A DOverridingParamsAEProvider.java20 import java.net.URL;
57 URL url = this.getClass().getResource(aeFilePath);
/lucene-3.6.0/solr/core/src/test/org/apache/solr/handler/
H A DTestReplicationHandler.java27 import java.net.URL;
266 URL url = new URL(masterUrl);
303 url = new URL(masterUrl);
404 URL url = new URL(slaveURL);
430 url = new URL(slaveURL);
466 URL url = new URL(masterUrl);
658 URL ur
[all...]

Completed in 2202 milliseconds

123