Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 181 - 190 of 308 for furent (0.03 seconds)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt

     * create a new entry if the license is genuinely new.
     *
     * ## Adding a dependency whose POM has no license data
     *
     * If the task fails with "no license data in their POM or any parent POM", add a hardcoded
     * entry to the `hardcodedLicenses` map in `GenerateLicenseFile.kt`.
     */
    enum class License(
        val displayName: String,
        val url: String,
        val aliases: List<String> = emptyList(),
    ) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 13:24:46 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                    if (StringUtil.isNotEmpty(role)) {
                        roleSet.add(role);
                    }
                }
            }
        }
    
        /**
         * Gets the current time in milliseconds.
         * @return The current time in milliseconds.
         */
        protected long getCurrentTime() {
            return ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

    import java.io.File;
    
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static java.util.stream.Collectors.toList;
    
    /**
     * Extracts Kotlin DSL runtime generated sources.
     *
     * Current implementation extracts these from the wrapper's API jars.
     * This is not correct as it should do this with the built distribution instead.
     *
     * Doing it correctly would require running a Gradle build with the full
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 19 17:15:23 GMT 2023
    - 3.9K bytes
    - Click Count (0)
  4. src/test/resources/plugin/repo3/fess-crawler-parent/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
      <groupId>org.codelibs.fess</groupId>
      <artifactId>fess-crawler-parent</artifactId>
      <versioning>
        <latest>14.14.0</latest>
        <release>14.14.0</release>
        <versions>
          <version>1.0.0</version>
          <version>1.0.1</version>
          <version>1.0.2</version>
          <version>1.0.3</version>
          <version>1.0.4</version>
          <version>1.0.5</version>
          <version>1.0.6</version>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jun 17 13:30:41 GMT 2024
    - 4.2K bytes
    - Click Count (0)
  5. .teamcity/scripts/CheckBadMerge.java

                return;
            }
    
            // The correct state we are looking for is:
            // 1. It's a merge commit.
            // 2. One of its parent commits is from master only.
            // 3. Another parent commit is not from master but from release branch.
            // Otherwise, skip this commit.
            List<String> p1Branches = branchesOf(parentCommits.get(0));
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             */
            protected boolean prevPage;
            /**
             * The starting record number for the current page of search results.
             */
            protected long startRecordNumber;
            /**
             * The ending record number for the current page of search results.
             */
            protected long endRecordNumber;
            /**
             * The list of page numbers for pagination.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

         *
         * @param fileAuthenticationPager the pager containing pagination settings and search criteria
         * @return a list of file authentication configurations for the current page
         */
        public List<FileAuthentication> getFileAuthenticationList(final FileAuthPager fileAuthenticationPager) {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

            });
        }
    
        /**
         * Sets up search paging data for rendering the request header list.
         *
         * @param data the render data to populate
         * @param form the search form containing current search criteria
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 17.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/chat/ChatAction.java

                }
                chatSessionManager.clearSession(form.sessionId, getUserId());
            }
            return redirect(getClass());
        }
    
        /**
         * Returns the user ID for the current session. If the user is authenticated, returns the username;
         * otherwise, returns the guest user code.
         *
         * @return the user ID
         */
        protected String getUserId() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Mar 10 14:54:51 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

            return _instance;
        }
    
        // ===================================================================================
        //                                                                       Current DBDef
        //                                                                       =============
        @Override
        public String getProjectName() {
            return null;
        }
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 8K bytes
    - Click Count (0)
Back to Top