Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for jarFile (0.31 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                 * If no descriptor, the "Automatic-Module-Name" manifest attribute is
                 * taken as a fallback.
                 */
                try (JarFile jar = new JarFile(path.toFile())) {
                    ZipEntry entry = jar.getEntry(MODULE_INFO);
                    if (entry != null) {
                        String name = null;
                        if (resolve) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java

    import org.lastaflute.web.validation.Required;
    
    public class InstallForm {
    
        @Required
        @Size(max = 400)
        public String id;
    
        public MultipartFormFile jarFile;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 947 bytes
    - Viewed (0)
  3. maven-core/src/site/apt/inheritance.apt

      their projects. It also allows for a certain amount of legacy support into the
      future. Therefore, we should rename this file from pom.xml in the maven-core
      jarfile to pom-4.0.0.xml (and successive revisions to the base pom made to
      accommodate changes in the model will be named accordingly - 4.0.1, 4.0.2, ...).
    
    Minimum Element-Set for a Project POM
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            PluginDescriptor pluginDescriptor = null;
    
            File pluginFile = pluginArtifact.getFile();
    
            try {
                if (pluginFile.isFile()) {
                    try (JarFile pluginJar = new JarFile(pluginFile, false)) {
                        ZipEntry pluginDescriptorEntry = pluginJar.getEntry(getPluginDescriptorLocation());
    
                        if (pluginDescriptorEntry != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                final List<Artifact> list = new ArrayList<>(jarFiles.length);
                for (final File file : jarFiles) {
                    list.add(getArtifactFromFileName(artifactType, file.getName()));
                }
                list.sort(Comparator.comparing(Artifact::getName));
                return list.toArray(new Artifact[list.size()]);
            }
    
            final File[] jarFiles = ResourceUtil.getPluginJarFiles(artifactType.getId());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/cs/stopwords.txt

    by
    které
    co
    nebo
    ten
    tak
    má
    při
    od
    po
    jsou
    jak
    další
    ale
    si
    se
    ve
    to
    jako
    za
    zpět
    ze
    do
    pro
    je
    na
    atd
    atp
    jakmile
    přičemž
    já
    on
    ona
    ono
    oni
    ony
    my
    vy
    jí
    ji
    mě
    mne
    jemu
    tomu
    těm
    těmu
    němu
    němuž
    jehož
    jíž
    jelikož
    jež
    jakož
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 992 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/ExecJob.java

        protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) {
            final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
            if (jarFiles != null) {
                for (final File file : jarFiles) {
                    buf.append(cpSeparator);
                    buf.append(basePath);
                    buf.append(file.getName());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    net.bs
    org.bs
    edu.bs
    gov.bs
    
    // bt : https://en.wikipedia.org/wiki/.bt
    bt
    com.bt
    edu.bt
    gov.bt
    net.bt
    org.bt
    
    // bv : No registrations at this time.
    // Submitted by registry <jarle@uninett.no>
    bv
    
    // bw : https://en.wikipedia.org/wiki/.bw
    // http://www.gobin.info/domainname/bw.doc
    // list of other 2nd level tlds ?
    bw
    co.bw
    org.bw
    
    // by : https://en.wikipedia.org/wiki/.by
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  9. src/main/resources/fess_indices/_aws/fess.json

            },
            "czech_keywords": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess.json

            },
            "czech_keywords": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
Back to top