Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 204 for noin (0.01 seconds)

  1. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

         *
         * @return The stopword as a string.
         */
        public String toLineString() {
            if (isUpdated()) {
                return StringUtils.join(newInput);
            }
            return StringUtils.join(input);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  2. .teamcity/scripts/CheckWrapper.java

            if (r.exitCode() != 0) {
                throw new AssertionError(String.join(" ", cmd) + " failed: " + r);
            }
        }
    
        private static String stdout(String... cmd) throws IOException, InterruptedException, ExecutionException {
            ExecResult r = exec(cmd);
            if (r.exitCode() != 0) {
                throw new AssertionError(String.join(" ", cmd) + " failed: " + r);
            }
            return r.stdout();
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  3. src/main/webapp/css/admin/html5shiv.min.js

    a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.ca...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Dec 31 23:16:54 GMT 2017
    - 2.7K bytes
    - Click Count (0)
  4. README.md

      </a>
      <a href="https://gradle.org/slack-invite">
        <img src="https://img.shields.io/badge/Slack-Join%20the%20Community-brightgreen?style=flat&logo=slack" alt="Join the Gradle Community Slack">
      </a>
      <a href="https://docs.gradle.org/current/userguide/userguide.html">
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. .teamcity/performance-tests-ci.json

        "groups" : [ {
          "testProject" : "nowInAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.non-abi change with configuration caching",
        "groups" : [ {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 21:56:33 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            if (indexUpdater != null && indexUpdater.isAlive()) {
                indexUpdater.setFinishCrawling(true);
                indexUpdater.interrupt();
                indexUpdater.join(1000);
            }
            super.tearDown(testInfo);
        }
    
        // Test initialization
        @Test
        public void test_init() {
            indexUpdater.init();
            assertNotNull(indexUpdater);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullUnmarkedChangesTest.kt

                    "Method com.example.Source.foo(): From non-null returning to null-unmarked returning breaking change.",
                    "Method com.example.Source.baz(): From non-null returning to null-unmarked returning breaking change.",
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
        @Test
        fun `from null-unmarked returning to non-null returning is not breaking`() {
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  8. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 326,
        "windows" : 726,
        "macOs" : 209
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.assemble for non-abi change with file system sensitive archives",
      "durations" : [ {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java

            testDelete();
        }
    
        @Test
        void testStartJob_notFound() {
            // Try to start a non-existent job
            checkPutMethod(new HashMap<>(), "invalid_scheduler_id_12345/start").then().body("response.status", equalTo(1));
        }
    
        @Test
        void testStopJob_notFound() {
            // Try to stop a non-existent job
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

        /**
         * Data transfer object representing JVM non-heap memory statistics.
         */
        public static class JvmMemoryNonHeapObj {
            /**
             * Default constructor.
             */
            public JvmMemoryNonHeapObj() {
                // Default constructor
            }
    
            /** Used non-heap memory in bytes */
            public long used;
            /** Committed non-heap memory in bytes */
            public long committed;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.7K bytes
    - Click Count (0)
Back to Top