Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 135 for asDays (0.06 seconds)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.nio.charset.StandardCharsets;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Base64;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Map.Entry;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  2. AI_POLICY.md

    1. **Human review, human decisions.** A real human developer will review your PR, provide feedback, and decide whether to accept or reject it. We may use AI tools to help us understand your changes, but a human is always in charge.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                            }
                        }
                        removeSubstDirOnWindows(os)
                        killProcessStep(buildTypeThis, KILL_PROCESSES_STARTED_BY_GRADLE, os, executionMode = BuildStep.ExecutionMode.ALWAYS)
                        checkCleanM2AndAndroidUserHome(os)
                        cleanupPerformanceTestSplits(os)()
                    }
                }
    
                applyDefaultDependencies(model, this)
            },
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 29 01:37:22 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  4. architecture/standards/0010-gradle-properties-naming.md

    This clearly signals to users that they are dealing with a non-public property and should expect no guarantees.
    
    Internal properties MUST NOT be supplemented with command-line options.
    They can always be passed via `-D` on the command line.
    
    Examples of properties that follow the naming rules:
    
    * `org.gradle.internal.operations.trace`
    * `org.gradle.internal.cmdline.max.length`
    * …
    
    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. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

    import java.io.IOException;
    import java.net.InetAddress;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.text.SimpleDateFormat;
    import java.util.Arrays;
    import java.util.Date;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import java.util.stream.Stream;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

     */
    package org.codelibs.fess.helper;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.time.LocalDateTime;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Queue;
    import java.util.concurrent.ConcurrentLinkedQueue;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

            if (logger.isDebugEnabled()) {
                logger.debug("[updateMemberOf] Initial groups/roles set for user: {}. Groups: {}, Roles: {}", user.getName(),
                        Arrays.toString(user.getGroupNames()), Arrays.toString(user.getRoleNames()));
            }
    
            // Schedule lazy loading of parent groups
            if (!groupIdsForParentLookup.isEmpty()) {
                if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  8. dbflute_fess/dfprop/documentMap.dfprop

        # o documentOutputDirectory: (NotRequired - Default './output/doc')
        #  The output directory mainly for SchemaHtml and DataXlsTemplate.
        #  Basically you don't need this.
        #  It is considered of value that it always exists at same plain.
        #
        #; documentOutputDirectory = ./output/doc
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            assertNotNull(actual, "Actual array is null but expected is not");
            assertEquals("Array lengths differ", expected.length, actual.length);
            for (int i = 0; i < expected.length; i++) {
                assertEquals("Arrays differ at index " + i, expected[i], actual[i]);
            }
        }
    
        // Test implementation of FessUser interface
        private static class TestFessUser implements FessUser {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            assertEquals(List.of(3, 2, 1, 0), retriesSeen);
        }
    
        @Test
        public void test_tryStartOperation_retryChain_exhausted() {
            // Simulate retry chain: cleanup always succeeds but create always fails
            final AtomicInteger cleanupCallCount = new AtomicInteger(0);
            final CoordinatorHelper helper = new CoordinatorHelper() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
Back to Top