Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 729 for unavailable (1.76 sec)

  1. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

                }
            });
            sambaHelper.init();
    
            // Test unavailable SID type (type 3 - DOMAIN)
            assertNull(sambaHelper.getAccountId(createMockSID(3, "Domain")));
    
            // Test unavailable SID type (type 6 - DELETED)
            assertNull(sambaHelper.getAccountId(createMockSID(6, "Deleted Account")));
    
            // Test unavailable SID type (type 7 - INVALID)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessEventType.java

         */
        IP_CHANGE(4),
    
        /**
         * Share deleted - share removal notification
         */
        SHARE_DELETE(5),
    
        /**
         * Cluster node unavailable - node down event
         */
        NODE_UNAVAILABLE(6),
    
        /**
         * Cluster node available - node up event
         */
        NODE_AVAILABLE(7);
    
        private final int value;
    
        /**
         * Creates a new WitnessEventType with the specified value.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/SplitterBenchmark.java

      private static final Splitter CHAR_SPLITTER = Splitter.on('X');
      private static final Splitter STRING_SPLITTER = Splitter.on("X");
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
        input = Strings.repeat(text, length);
      }
    
      @Benchmark
      int charSplitter(int reps) {
        int total = 0;
    
        for (int i = 0; i < reps; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/SplitterBenchmark.java

      private static final Splitter CHAR_SPLITTER = Splitter.on('X');
      private static final Splitter STRING_SPLITTER = Splitter.on("X");
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
        input = Strings.repeat(text, length);
      }
    
      @Benchmark
      int charSplitter(int reps) {
        int total = 0;
    
        for (int i = 0; i < reps; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                return;
            }
    
            final JobHelper jobHelper = ComponentUtil.getJobHelper();
            if (!jobHelper.isAvailable(id)) {
                logger.info("Job {} is unavailable. Unregistering this job.", id);
                jobHelper.unregister(scheduledJob);
                return;
            }
    
            final JobLog jobLog = new JobLog(scheduledJob);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java

      @Param({"1", "5", "25", "125"})
      int count;
    
      @Param({"1", "10"})
      int length;
    
      private String originalString;
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
        originalString = Strings.repeat("x", length);
      }
    
      @Benchmark
      void oldRepeat(long reps) {
        for (int i = 0; i < reps; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java

    import jcifs.Configuration;
    
    /**
     * SMB1 Transaction Wait Named Pipe request implementation.
     * Implements the TRANS_WAIT_NAMED_PIPE transaction to wait for a named pipe
     * to become available when the pipe server is busy or temporarily unavailable.
     *
     * @author mbechler
     */
    public class TransWaitNamedPipe extends SmbComTransaction {
    
        /**
         * Constructs a wait request for a named pipe.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java

      @Param({"1", "5", "25", "125"})
      int count;
    
      @Param({"1", "10"})
      int length;
    
      private String originalString;
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
        originalString = Strings.repeat("x", length);
      }
    
      @Benchmark
      void oldRepeat(long reps) {
        for (int i = 0; i < reps; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
    
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      private static final String ALMOST_TOO_MANY_LEVELS = Strings.repeat("a.", 127);
    
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

      int count;
    
      @Param({"0", "1", "16", "32", "100"})
      int componentLength;
    
      private Iterable<String> components;
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
        String component = Strings.repeat("a", componentLength);
        String[] raw = new String[count];
        Arrays.fill(raw, component);
        components = Arrays.asList(raw);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Dec 27 16:19:35 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top