Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 57 for soient (0.11 seconds)

  1. src/main/resources/fess_indices/fess/fr/stopwords.txt

    s
    t
    y
    été
    étée
    étées
    étés
    étant
    suis
    es
    est
    sommes
    êtes
    sont
    serai
    seras
    sera
    serons
    serez
    seront
    serais
    serait
    serions
    seriez
    seraient
    étais
    était
    étions
    étiez
    étaient
    fus
    fut
    fûmes
    fûtes
    furent
    sois
    soit
    soyons
    soyez
    soient
    fusse
    fusses
    fût
    fussions
    fussiez
    fussent
    ayant
    eu
    eue
    eues
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 977 bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/plugins/form-validator/location.js

    poland","portugal","puerto rico","qatar","réunion","romania","russia","rwanda","saint barthélemy","saint helena","ascension and tristan da cunha","Ascension and tristan da cunha","saint kitts and nevis","saint lucia","saint martin","saint pierre and miquelon","saint vincent and the grenadines","samoa","san marino","sao tome and principe","saudi arabia","senegal","serbia","seychelles","sierra leone","singapore","sint maarten","slovakia","slovenia","solomon islands","somalia","south africa","south...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 5.2K bytes
    - Click Count (0)
  3. CLAUDE.md

    6. Run `mvn formatter:format` and `mvn license:format` before committing
    
    ### Don'ts
    1. Don't edit files in `bsentity/` or `bsbhv/` (generated code)
    2. Don't use direct OpenSearch client in business code (use Bhv classes)
    3. Don't hardcode strings that should be internationalized
    4. Don't skip validation in form processing
    5. Don't log sensitive data (passwords, tokens, credentials)
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

            final BulkRequestBuilder bulkDelete = client.prepareBulk();
            for (final String docId : docIds) {
                bulkDelete.add(client.prepareDelete().setIndex(indexName).setId(docId));
            }
            bulkDelete.execute().actionGet(fessConfig.getIndexSearchTimeout());
    
            // Delete any remaining events beyond the search size limit (discard overflow)
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.ftp.FtpClient;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.crawler.client.smb.SmbClient;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  6. src/main/webapp/css/admin/plugins/timepicker/bootstrap-timepicker.min.css

    play:inline-block;position:absolute}.bootstrap-timepicker-widget.timepicker-orient-left:before{left:6px}.bootstrap-timepicker-widget.timepicker-orient-left:after{left:7px}.bootstrap-timepicker-widget.timepicker-orient-right:before{right:6px}.bootstrap-timepicker-widget.timepicker-orient-right:after{right:7px}.bootstrap-timepicker-widget.timepicker-orient-top:before{top:-7px}.bootstrap-timepicker-widget.timepicker-orient-top:after{top:-6px}.bootstrap-timepicker-widget.timepicker-orient-bottom:bef...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

    import org.codelibs.fess.app.service.WebConfigService;
    import org.codelibs.fess.crawler.client.http.config.CredentialsConfig;
    import org.codelibs.fess.crawler.client.http.config.CredentialsConfig.CredentialsType;
    import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig;
    import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig.AuthSchemeType;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

            return ComponentUtil.getFessConfig().getIndexLogIndex() + ".notification_queue";
        }
    
        private void ensureIndexExists(final SearchEngineClient client, final String indexName) {
            if (!indexChecked) {
                if (!client.existsIndex(indexName)) {
                    client.createIndex(NOTIFICATION_QUEUE_INDEX, indexName);
                }
                indexChecked = true;
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

                // If it succeeds, check that lastUpdated is set
                assertNotNull(jobLog.getLastUpdated());
            } catch (Exception e) {
                // Expected in test environment due to missing client
                assertTrue(e.getMessage().contains("client"));
            }
        }
    
        @Test
        public void test_monitorTarget_expired_withEndTime() {
            JobLog jobLog = new JobLog();
            jobLog.setId("test-log-2");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java

                        }
                        return true;
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Silent token refresh failed: {}", e.getMessage());
                    }
                }
                // For MSAL4J, if silent refresh fails, return true if token is still valid
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.8K bytes
    - Click Count (0)
Back to Top