Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for Leider (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

            return asStream(id)//
                    .header("Pragma", "no-cache")//
                    .header("Cache-Control", "no-cache")//
                    .header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT")//
                    .header("Content-Type", "application/x-ndjson")//
                    .stream(out -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            final String body = toSlackMessage(discloser);
            StreamUtil.split(slackWebhookUrls, "[,\\s]").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(url -> {
                try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) {
                    if (response.getHttpStatusCode() == 200) {
                        if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            });
            return response;
        }
    
        protected void writeNoCache(final StreamResponse response, final ResponseData responseData) {
            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
        }
    
        protected void writeFileName(final StreamResponse response, final ResponseData responseData) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  4. src/test/java/org/codelibs/fess/it/ITBase.java

        }
    
        protected static RequestSpecification checkMethodBase(final Map<String, Object> body) {
            return given().contentType("application/json").header("Authorization", getTestToken()).body(body, ObjectMapperType.JACKSON_2)
                    .when();
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_failed_to_read_request_file = "{errors.failed_to_read_request_file}";
    
        /** The key of the message: Invalid header: {0} */
        public static final String ERRORS_invalid_header_for_request_file = "{errors.invalid_header_for_request_file}";
    
        /** The key of the message: Could not delete logged in user. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            logger.info("itemList: {}", itemList);
            return itemList;
        }
    
        protected static Response deleteMethod(final String path) {
            return given().contentType("application/json").header("Authorization", getTestToken()).delete(path);
        }
    
        protected static void deleteDocuments(final String queryString) {
            List<String> docIds = new ArrayList<>();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String PAGE_PATH_MAPPING_MAX_FETCH_SIZE = "page.path.mapping.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_REQUEST_HEADER_MAX_FETCH_SIZE = "page.request.header.max.fetch.size";
    
        /** The key of the configuration. e.g. 100 */
        String PAGE_SCHEDULED_JOB_MAX_FETCH_SIZE = "page.scheduled.job.max.fetch.size";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  8. pom.xml

    				<version>4.3</version>
    				<configuration>
    					<header>https://www.codelibs.org/assets/license/header.txt</header>
    					<properties>
    						<year>2024</year>
    					</properties>
    					<includes>
    						<include>src/**/*.java</include>
    					</includes>
    					<encoding>UTF-8</encoding>
    					<headerDefinitions>
    						<headerDefinition>https://www.codelibs.org/assets/license/header-definition-2.xml</headerDefinition>
    XML
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                        logger.debug("url: {}", url);
                    }
                    try (CurlResponse response =
                            Curl.post(url).header("Authorization", "Bearer " + user.getAuthenticationResult().getAccessToken())
                                    .header("Accept", "application/json").header("Content-type", "application/json")
                                    .body("{\"securityEnabledOnly\":false}").execute()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.menu_boost_document_rule=Dok.-Boost
    labels.menu_path_mapping=Pfad-Mapping
    labels.menu_web_authentication=Web-Authentifizierung
    labels.menu_file_authentication=Datei-Authentifizierung
    labels.menu_request_header=Anfrage-Header
    labels.menu_duplicate_host=Duplizierter Host
    labels.menu_user=Benutzer
    labels.menu_role=Rolle
    labels.menu_group=Gruppe
    labels.menu_suggest=Vorschlagen
    labels.menu_suggest_word=Wort vorschlagen
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
Back to top