Search Options

Results per page
Sort
Preferred Languages
Advance

Results 441 - 450 of 1,019 for curl (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

     * It converts Unicode domain names to ASCII Compatible Encoding (ACE) using the
     * {@link java.net.IDN} class.
     *
     * <p>This class allows setting a custom flag for the IDN conversion and a custom
     * encoding for URL decoding.</p>
     *
     * <p>Example usage:</p>
     * <pre>
     * {@code
     * IdnDnsResolver resolver = new IdnDnsResolver();
     * resolver.setFlag(IDN.ALLOW_UNASSIGNED);
     * resolver.setEncoding("UTF-8");
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. cmd/storage-rest_test.go

    	// tg[0] = local, tg[1] = remote
    
    	// Remote URL
    	url, err := xnet.ParseHTTPURL(tg.Servers[1].URL)
    	if err != nil {
    		t.Fatalf("unexpected error %v", err)
    	}
    	url.Path = t.TempDir()
    
    	globalMinioHost, globalMinioPort = mustSplitHostPort(url.Host)
    	globalNodeAuthToken, _ = authenticateNode(globalActiveCred.AccessKey, globalActiveCred.SecretKey)
    
    	endpoint, err := NewEndpoint(url.String())
    	if err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/general.md

    ## OpenAPI Custom URL { #openapi-custom-url }
    
    To customize the OpenAPI URL (or remove it), read the docs for [Tutorial - Metadata and Docs URLs](../tutorial/metadata.md#openapi-url){.internal-link target=_blank}.
    
    ## OpenAPI Docs URLs { #openapi-docs-urls }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_it.properties

    labels.web_crawling_configuration=Scansione web
    labels.web_crawling_title_details=Configurazione scansione web
    labels.included_urls=URL da includere nella scansione
    labels.excluded_urls=URL da escludere dalla scansione
    labels.included_doc_urls=URL da includere nella ricerca
    labels.excluded_doc_urls=URL da escludere dalla ricerca
    labels.user_agent=User-Agent
    labels.web_crawling_button_create=Crea
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryWrapper.java

        }
    
        /**
         * Retrieves a client from the wrapped factory that matches the given URL.
         * @param url The URL to match.
         * @return The matching CrawlerClient instance.
         */
        @Override
        public CrawlerClient getClient(final String url) {
            return factory.getClient(url);
        }
    
        /**
         * Sets the client map for the wrapped factory.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/documentMap.dfprop

        #  Elements of this map are as below:
        #   o url: The URL for connecting database. (NotRequired - Default same as databaseInfoMap)
        #   o schema: The schema name. (NotRequired - Default '' e.g. no setting when MySQL)
        #   o user: The database user name. (Required)
        #   o password: The database password. (NotRequired - Default '')
        #
        #; schemaSyncCheckMap = map:{
        #    ; url = jdbc:...
        #    ; schema = EXAMPLEDB
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java

                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnUrl = cci("url", "url", null, null, String.class, "url", null, false, false, false, "keyword", 0, 0,
                null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnConfigId() {
            return _columnConfigId;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. docs/es/docs/advanced/custom-response.md

    El `response_class` solo se usará para documentar el OpenAPI *path operation*, pero tu `Response` se usará tal cual.
    
    #### Devuelve un `HTMLResponse` directamente
    
    Por ejemplo, podría ser algo así:
    
    {* ../../docs_src/custom_response/tutorial004.py hl[7,21,23] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

            private String id;
            private String url;
    
            public TestUrlQueue(String id, String url) {
                this.id = id;
                this.url = url;
            }
    
            @Override
            public String getId() {
                return id;
            }
    
            @Override
            public String getUrl() {
                return url;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 15K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/PathValidatorTest.java

            String url = "smb://user:pass@server/share";
            String normalized = validator.validateSmbUrl(url);
            assertTrue(normalized.contains("user:pass@"));
        }
    
        @Test
        public void testSmbUrlWithPort() throws Exception {
            String url = "smb://server:445/share";
            String normalized = validator.validateSmbUrl(url);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top