Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for remoto (0.06 sec)

  1. src/main/resources/fess_label_pt_BR.properties

    labels.plugin_delete=Excluir
    labels.plugin_install=Instalar
    labels.plugin_install_title=Instalar plugin
    labels.plugin_jar_file=Arquivo Jar
    labels.plugin_local_install=Local
    labels.plugin_remote_install=Remoto
    labels.crud_button_install=Instalar
    labels.storage_configuration=Armazenamento
    labels.storage_name=Nome
    labels.storage_size=Tamanho
    labels.storage_last_modified=Última modificação
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 48.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_it.properties

    labels.plugin_delete=Elimina
    labels.plugin_install=Installa
    labels.plugin_install_title=Installa plugin
    labels.plugin_jar_file=File Jar
    labels.plugin_local_install=Locale
    labels.plugin_remote_install=Remoto
    labels.crud_button_install=Installa
    labels.storage_configuration=Archiviazione
    labels.storage_name=Nome
    labels.storage_size=Dimensione
    labels.storage_last_modified=Ultima modifica
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 09:16:23 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_es.properties

    labels.plugin_delete=Eliminar
    labels.plugin_install=Instalar
    labels.plugin_install_title=Instalar plugin
    labels.plugin_jar_file=Archivo Jar
    labels.plugin_local_install=Local
    labels.plugin_remote_install=Remoto
    labels.crud_button_install=Instalar
    labels.storage_configuration=Almacenamiento
    labels.storage_name=Nombre
    labels.storage_size=Tamaño
    labels.storage_last_modified=Última modificación
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 49K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java

         * the URL queue for the current thread is removed.
         *
         * @param urlQueue the URL queue to be set for the current thread, or null to remove the URL queue
         */
        public static void setUrlQueue(final UrlQueue<?> urlQueue) {
            if (urlQueue == null) {
                URL_QUEUE_THREAD_LOCAL.remove();
            } else {
                URL_QUEUE_THREAD_LOCAL.set(urlQueue);
            }
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v3
    
        # ℹ️ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
            __modifiedProperties.remove(propertyName);
        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
        public boolean hasModification() {
            return !__modifiedProperties.isEmpty();
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

            final ProcessBuilder pb = new ProcessBuilder(cmdList);
            pbCall.accept(pb);
    
            // Remove and destroy any existing process for this session
            final JobProcess oldProcess = runningProcessMap.remove(sessionId);
            if (oldProcess != null) {
                destroyProcess(sessionId, oldProcess);
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 06:54:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. plugin.xml

    			<param name="plugin.name" value="minhash" />
    			<param name="plugin.version" value="3.4.0" />
    			<param name="plugin.zip.version" value="3.4.0" />
    		</antcall>
    
    		<antcall target="remove.jars" />
    	</target>
    
    	<target name="install.plugin">
    		<get dest="${target.dir}">
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            }
    
            @Override
            public boolean add(final E e) {
                return parent.add(e);
            }
    
            @Override
            public boolean remove(final Object o) {
                return parent.remove(o);
            }
    
            @Override
            public boolean containsAll(final Collection<?> c) {
                return parent.containsAll(c);
            }
    
            @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  10. module.xml

    			<param name="module.name" value="transport-netty4" />
    			<param name="module.version" value="${opensearch.version}" />
    			<param name="module.zip.version" value="${opensearch.version}" />
    		</antcall>
    
    		<antcall target="remove.jars" />
    	</target>
    
    	<target name="install.module">
    		<get dest="${target.dir}">
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top