Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,064 for jame (0.03 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

              "type":       "stop",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

              "type":       "stop",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            generator = new TestThumbnailGenerator();
    
            // Default name should be null
            assertNull(generator.getName());
    
            // Set and get name
            generator.setName("test-generator");
            assertEquals("test-generator", generator.getName());
    
            // Change name
            generator.setName("new-name");
            assertEquals("new-name", generator.getName());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  4. architecture/standards/0010-gradle-properties-naming.md

    The name of the feature in the build option SHOULD be the same as in the property name.
    
    Shared scheme for long-form build options:
    
    ```
    --<feature-name>-<detail>
    ```
    
    Decisions on the short-form build options should be made on a case by case basis, since the space of available names is small.
    
    ### Internal properties
    
    Internal properties MUST start with `org.gradle.internal.`
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  5. build-logic/build.gradle.kts

        id("gradlebuild.ci-reporting")
    }
    
    description = "Provides plugins that are used by Gradle subprojects"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    }
    
    tasks.register("test") {
        dependsOn(subprojects.map { "${it.name}:test" })
    }
    
    val clean by tasks.registering {
        val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Feb 09 03:14:32 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

        }
    
        // Test getScriptEngine with null name
        @Test
        public void test_getScriptEngine_nullName() {
            try {
                scriptEngineFactory.getScriptEngine(null);
                fail("Should throw ScriptEngineException for null name");
            } catch (ScriptEngineException e) {
                assertEquals("Script engine name parameter is null. A valid script engine name must be provided.", e.getMessage());
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/configurations/LightweightChecks.kt

                    param("JdkProviderEnabled", "false")
                    // should be the same version we run TeamCity with
                    param("env.JAVA_HOME", javaHome(DefaultJvm(JvmVersion.JAVA_21, JvmVendor.OPENJDK), os))
                }
    
                steps {
                    script {
                        name = "CHECK_USED_WRAPPER"
                        scriptContent =
                            """
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 23 03:29:32 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

            final MyCustomSearcher searcher = new MyCustomSearcher();
            // Should be "my_custom" (decamelized and lowercased)
            String name = searcher.getName();
            assertNotNull(name);
            assertTrue(name.equals("my_custom") || name.equals("mycustom"));
        }
    
        /**
         * Test getName() is cached (lazily initialized).
         */
        @Test
        public void test_getNameCached() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

        }
    
        /**
         * Gets a web configuration by its name.
         * If multiple configurations have the same name, returns the first one ordered by sort order.
         *
         * @param name The name of the web configuration
         * @return Optional containing the web configuration if found
         */
        public OptionalEntity<WebConfig> getWebConfigByName(final String name) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            assertEquals("   ", ResourceUtil.resolve(value));
    
            // Test long property name
            System.setProperty("very.long.property.name.with.many.dots", "long");
            value = "${very.long.property.name.with.many.dots}";
            assertEquals("long", ResourceUtil.resolve(value));
    
            // Test multiple occurrences of same variable
            System.setProperty("repeat", "X");
            value = "${repeat}${repeat}${repeat}";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.8K bytes
    - Click Count (0)
Back to Top