Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 11 for fired (0.02 seconds)

  1. CONTRIBUTING.md

    ## Setting up your development environment
    
    In order to make changes to Gradle, you'll need:
    
    * [Adoptium JDK](https://adoptium.net/temurin/archive/?version=17) (Java Development Kit) **version 17**. Fixed version is required to use [remote cache](#remote-build-cache).
    * A text editor or IDE. We use and recommend [IntelliJ IDEA CE](http://www.jetbrains.com/idea/). IntelliJ Ultimate will also work. You'll need IntelliJ 2021.2.2 or newer.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

    abstract class UpdateFixedIssuesInReleaseNotes : DefaultTask() {
    
        @get:Internal
        abstract val releaseNotes: RegularFileProperty
    
        @get:Option(option = "milestone", description = "The milestone to fetch fixed issues for, e.g. '9.0.1'")
        @get:Internal
        abstract val milestone: Property<String>
    
        @get:Internal
        abstract val githubToken: Property<String>
    
        @TaskAction
        fun update() {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/configurations/Gradleception.kt

         1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
         2. Build a Gradle distribution with this hash as a version + fixed timestamp -> dogfood-first
         3. Build a Gradle distribution using dogfood-first with this hash as a version + fixed timestamp different from the one above -> dogfood-second
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

                        java.util.function.BiFunction<org.opensearch.action.update.UpdateRequestBuilder, org.opensearch.search.SearchHit, org.opensearch.action.update.UpdateRequestBuilder> processor) {
                    // Return a fixed count for testing
                    return 3L;
                }
            };
            ComponentUtil.register(mockSearchEngineClient, "searchEngineClient");
    
            // Mock FessConfig
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

            });
    
            tasks.register("updateFixedIssuesInReleaseNotes", UpdateFixedIssuesInReleaseNotes.class, task -> {
                task.setGroup("release notes");
                task.setDescription("Update the list of fixed issues in the release notes for a patch release.");
                task.getGithubToken().set(project.getProviders().environmentVariable("GITHUB_TOKEN"));
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            for (int i = 0; i < readerThreadCount; i++) {
                observations[i] = new java.util.ArrayList<>();
            }
    
            // Start reader threads that continuously check alive field for a fixed duration
            for (int i = 0; i < readerThreadCount; i++) {
                final int threadIndex = i;
                readerThreads[i] = new Thread(() -> {
                    try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  7. LICENSE

          or contributory patent infringement, then any patent licenses
          granted to You under this License for that Work shall terminate
          as of the date such litigation is filed.
    
       4. Redistribution. You may reproduce and distribute copies of the
          Work or Derivative Works thereof in any medium, with or without
          modifications, and in Source or Object form, provided that You
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 16:29:02 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

     */
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class CheckTargetRuntimes: DefaultTask() {
    
        /**
         * A list of paths to all projects that should be checked or fixed.
         */
        @get:Input
        abstract val projectPaths: ListProperty<String>
    
        /**
         * A list of the same size as [projectPaths], where the nth element contains
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            monitorTarget = new TestMonitorTarget();
    
            // Setup SystemHelper with a fixed timestamp for testing
            systemHelper = new SystemHelper() {
                @Override
                public Date getCurrentTime() {
                    return new Date(1609459200000L); // 2021-01-01 00:00:00 UTC
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

        }
    
        @Test
        public void test_formatDetails() {
            TestableLogNotificationJob testableJob = new TestableLogNotificationJob();
    
            long timestamp = 1700000000000L; // fixed timestamp for predictable output
            List<LogNotificationEvent> events = new ArrayList<>();
            events.add(new LogNotificationEvent(timestamp, "ERROR", "org.codelibs.fess.TestClass", "Something went wrong", null));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
Back to Top