Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,361 for url (0.01 sec)

  1. test-site/app/models/ContentsCreator.java

                final int endpos = h.indexOf('"');
                String url = h.substring(0, endpos);
                if(url.contains("#")) {
                    continue;
                }
                if(url.startsWith("http")) {
                    queue.add(url);
                } else if(url.startsWith("//")) {
                    queue.add(schema + ":" + url);
                } else if(url.startsWith("/")) {
                    queue.add(schema + "://" + host + url);
    Registered: 2025-06-06 09:08
    - Last Modified: 2015-11-06 08:48
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsClickLogCQ.java

        }
    
        public void setUrl_Equal(String url) {
            setUrl_Term(url, null);
        }
    
        public void setUrl_Equal(String url, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setUrl_Term(url, opLambda);
        }
    
        public void setUrl_Term(String url) {
            setUrl_Term(url, null);
        }
    
        public void setUrl_Term(String url, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 63.5K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/WholeOperationTimeoutTest.kt

        val request =
          Request
            .Builder()
            .url(server.url("/"))
            .build()
        val call = client.newCall(request)
        assertThat(call.timeout().timeoutNanos()).isEqualTo(0)
      }
    
      @Test
      fun configureClientDefault() {
        val request =
          Request
            .Builder()
            .url(server.url("/"))
            .build()
        val timeoutClient =
          client
            .newBuilder()
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 10.7K bytes
    - Viewed (0)
  4. samples/crawler/src/main/java/okhttp3/sample/Crawler.java

      }
    
      private void drainQueue() throws Exception {
        for (HttpUrl url; (url = queue.take()) != null; ) {
          if (!fetchedUrls.add(url)) {
            continue;
          }
    
          Thread currentThread = Thread.currentThread();
          String originalName = currentThread.getName();
          currentThread.setName("Crawler " + url);
          try {
            fetch(url);
          } catch (IOException e) {
    Registered: 2025-05-30 11:42
    - Last Modified: 2021-08-12 07:26
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final String fileName = artifact.getFileName();
            final String url = artifact.getUrl();
            if (StringUtil.isBlank(url)) {
                throw new PluginException("url is blank: " + artifact.getName());
            }
            if (url.startsWith("http:") || url.startsWith("https:")) {
                try (final CurlResponse response = createCurlRequest(url).execute()) {
                    if (response.getHttpStatusCode() != 200) {
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 17.9K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    		return
    	}
    
    	// Make sure that the URL does not contain object name.
    	if bucket != path.Clean(resource[1:]) {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    	if r.ContentLength <= 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrEmptyRequestBody), r.URL)
    		return
    	}
    
    	// Here the parameter is the size of the form data that should
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-03 06:45
    - 63.6K bytes
    - Viewed (0)
  7. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlFilter.java

        }
    
        public void setFilterType(final String filterType) {
            this.filterType = filterType;
        }
    
        public String getUrl() {
            return url;
        }
    
        public void setUrl(final String url) {
            this.url = url;
        }
    
        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            builder.startObject();
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 2.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/io/ResourceUtilTest.java

         */
        public void testToExternalForm() throws Exception {
            final URL url = new File("/Program File").toURI().toURL();
            assertEquals("file:" + getRoot() + "Program File", ResourceUtil.toExternalForm(url));
        }
    
        /**
         * @throws Exception
         */
        public void testGetFileName() throws Exception {
            URL url = new File("/Program File").toURI().toURL();
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 4.3K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

        public String getUrl() {
            return url;
        }
    
        public void setUrl(final String url) {
            this.url = url;
        }
    
        public float getWeight() {
            return weight;
        }
    
        public void setWeight(float weight) {
            this.weight = weight;
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(method, url, weight);
        }
    
        @Override
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 2.4K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/metadata.md

    Вы можете задать их следующим образом:
    
    {* ../../docs_src/metadata/tutorial001.py hl[3:16,19:31] *}
    
    /// tip | Подсказка
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 8.2K bytes
    - Viewed (0)
Back to top