Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 431 for modules (0.05 sec)

  1. pom.xml

    	</scm>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-parent</artifactId>
    		<version>15.0.0-SNAPSHOT</version>
    	</parent>
    	<modules>
    		<module>fess-crawler</module>
    		<module>fess-crawler-lasta</module>
    		<module>fess-crawler-opensearch</module>
    	</modules>
    	<build>
    		<pluginManagement>
    			<plugins>
    				<plugin>
    					<groupId>org.apache.maven.plugins</groupId>
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-05-24 06:11
    - 2.8K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
     */
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-16 18:26
    - 4.4K bytes
    - Viewed (0)
  3. .github/workflows/codeql-analysis.yml

            config-file: ./.github/codeql/codeql-config.yml
    
        - name: Cleanup Gradle Cache
          # Cleans up the Gradle caches before being cached
          run: |
            rm -f ~/.gradle/caches/modules-2/modules-2.lock
            rm -f ~/.gradle/caches/modules-2/gc.properties
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-10-11 18:32
    - 4K bytes
    - Viewed (0)
  4. src/main/assemblies/common-bin.xml

    			<excludes>
    				<exclude>*</exclude>
    			</excludes>
    			<filtered>false</filtered>
    		</fileSet>
    		<!-- es/modules -->
    		<fileSet>
    			<directory>${project.basedir}/modules</directory>
    			<outputDirectory>fess-${project.version}/es/modules</outputDirectory>
    		</fileSet>
    		<!-- es/plugins -->
    		<fileSet>
    			<directory>${project.basedir}/plugins</directory>
    Registered: 2025-05-26 08:04
    - Last Modified: 2022-03-17 02:29
    - 3.7K bytes
    - Viewed (0)
  5. doc/next/3-tools.md

    `ASAN_OPTIONS=detect_leaks=0` in the environment when running the
    program.
    
    <!-- go.dev/issue/71294 -->
    
    The new `work` package pattern matches all packages in the work (formerly called main)
    modules: either the single work module in module mode or the set of workspace modules
    in workspace mode.
    
    <!-- go.dev/issue/65847 -->
    
    When the go command updates the `go` line in a `go.mod` or `go.work` file,
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-04-24 02:09
    - 1.3K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

    import gradlebuild.basics.util.ReproduciblePropertiesWriter
    import gradlebuild.kotlindsl.generator.tasks.GenerateKotlinDependencyExtensions
    
    plugins {
        id("gradlebuild.dependency-modules")
        kotlin("jvm")
    }
    
    // --- Enable automatic generation of API extensions -------------------
    val apiExtensionsOutputDir = layout.buildDirectory.dir("generated-sources/kotlin")
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-13 15:02
    - 3.7K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/bigger-applications.md

    To learn more about Python Packages and Modules, read <a href="https://docs.python.org/3/tutorial/modules.html" class="external-link" target="_blank">the official Python documentation about Modules</a>.
    
    ///
    
    ### Avoid name collisions
    
    We are importing the submodule `items` directly, instead of importing just its variable `router`.
    
    This is because we also have another variable named `router` in the submodule `users`.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-11 13:37
    - 18.4K bytes
    - Viewed (0)
  8. architecture/runtimes.md

    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-05-02 06:42
    - 2.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
         * @param moduleName name of the module on which to apply the path
         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 15K bytes
    - Viewed (1)
  10. .gitignore

    /src/main/webapp/WEB-INF/conf/*.properties
    /src/main/webapp/WEB-INF/db/*.lock.db
    /src/main/webapp/WEB-INF/logs/fess*
    /.settings/
    .project
    .classpath
    *.iml
    .idea
    .vscode
    .DS_Store
    /plugins/
    /modules/
    /tomcat.8080/
    dbflute_fess/output/doc/lastadoc-fess.html
    dbflute_fess/schema/project-lastadoc-fess.json
    src/main/resources/fess_indices/fess_config.access_token/access_token.bulk
    src/main/resources/ga_client_secrets.p12
    Registered: 2025-05-26 08:04
    - Last Modified: 2024-10-24 01:47
    - 1023 bytes
    - Viewed (0)
Back to top