Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 880 for blank (0.02 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                public void storeInfo(List<CrawlingInfoParam> crawlingInfoParamList) {
                    // Not called
                }
            }, CrawlingInfoService.class.getCanonicalName());
    
            // Test with blank name
            crawlingInfoHelper.updateParams(sessionId, "", -1);
    
            // Test with null name
            crawlingInfoHelper.updateParams(sessionId, null, -1);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

             * @param text The text to analyze.
             * @param field The field name.
             * @param lang The language.
             * @return A list of analyzed tokens, or null if the contents reading analyzer name is blank.
             */
            @Override
            public List<AnalyzeToken> analyzeAndReading(final String text, final String field, final String lang) {
                try {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 26.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         *
         * @param activeSessionId the session ID to exclude from deletion (can be null)
         * @param name optional name filter for sessions to delete (can be null or blank)
         * @param date the expiration time threshold - sessions expired before this time will be deleted
         */
        public void deleteSessionIdsBefore(final String activeSessionId, final String name, final long date) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/ast.go

    	f.walk(ast1, ctxProg, (*File).saveExport)
    	f.walk(ast2, ctxProg, (*File).saveExport2)
    
    	f.Comments = ast1.Comments
    	f.AST = ast2
    }
    
    // Like ast.CommentGroup's Text method but preserves
    // leading blank lines, so that line numbers line up.
    func commentText(g *ast.CommentGroup) string {
    	pieces := make([]string, 0, len(g.List))
    	for _, com := range g.List {
    		c := com.Text
    		// Remove comment markers.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Oct 14 15:47:06 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. schema/field.go

    		field.Precision, _ = strconv.Atoi(p)
    	}
    
    	if s, ok := field.TagSettings["SCALE"]; ok {
    		field.Scale, _ = strconv.Atoi(s)
    	}
    
    	// default value is function or null or blank (primary keys)
    	field.DefaultValue = strings.TrimSpace(field.DefaultValue)
    	skipParseDefaultValue := strings.Contains(field.DefaultValue, "(") &&
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 32K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            final Map<String, Object> doc = new HashMap<>();
    
            indexUpdater.addClickCountField(doc);
    
            assertNull(doc.get("click_count"));
        }
    
        // Test addClickCountField with blank URL
        public void test_addClickCountField_blankUrl() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("url", "   ");
    
            indexUpdater.addClickCountField(doc);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  7. 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()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

             */
            public FtpInfo(final String s, final String c) {
                if (StringUtil.isBlank(s)) {
                    throw new CrawlingAccessException("uri is blank.");
                }
    
                try {
                    uri = new URI(normalize(s).replace("%", "%25").replace(" ", "%20"));
                } catch (final URISyntaxException e) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt

        magic: String,
        version: String,
        appVersion: String,
        valueCount: String,
        blank: String,
        vararg bodyLines: String,
      ) {
        filesystem.write(journalFile) {
          writeUtf8(
            """
            |$magic
            |$version
            |$appVersion
            |$valueCount
            |$blank
            |
            """.trimMargin(),
          )
          for (line in bodyLines) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 75.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    .filter(s -> s != null);
        }
    
        /**
         * Gets the content description from highlighted fields.
         * Returns the first non-blank highlighted field content.
         *
         * @param document the document data map
         * @return the content description with highlighting
         */
        public String getContentDescription(final Map<String, Object> document) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top