Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 820 for startOf (0.04 sec)

  1. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

                    String expectedValue = "{labels." + expectedValuePart + "}";
    
                    // Some fields may have different conventions, so we just check if it starts correctly
                    assertTrue("Field " + field.getName() + " value '" + value + "' should be related to its name",
                            value.startsWith("{labels."));
                }
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. maven-tests/mvnw.cmd

    @REM under the License.
    @REM ----------------------------------------------------------------------------
    
    @REM ----------------------------------------------------------------------------
    @REM Apache Maven Wrapper startup batch script, version 3.3.2
    @REM
    @REM Optional ENV vars
    @REM   MVNW_REPOURL - repo url base for downloading maven distribution
    @REM   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

        // Lock while we check state. We must maintain the lock while adding the new pair so that
        // another thread can't run the list out from under us. We only add to the list if we have not
        // yet started execution.
        synchronized (this) {
          if (!executed) {
            runnables = new RunnableExecutorPair(runnable, executor, runnables);
            return;
          }
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. mvnw.cmd

    @REM under the License.
    @REM ----------------------------------------------------------------------------
    
    @REM ----------------------------------------------------------------------------
    @REM Apache Maven Wrapper startup batch script, version 3.3.2
    @REM
    @REM Required ENV vars:
    @REM JAVA_HOME - location of a JDK home dir
    @REM
    @REM Optional ENV vars
    @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java

            NdrShort ns = new NdrShort(0xABCD); // value & 0xFF => 0xCD
            buf.reset();
            int startIndex = buf.getIndex();
            ns.encode(buf);
    
            // Find where the actual data starts (after alignment)
            int alignmentBytes = 0;
            if (startIndex % 2 != 0) {
                alignmentBytes = 1; // Need 1 byte of padding for 2-byte alignment
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionList.java

        // Lock while we check state. We must maintain the lock while adding the new pair so that
        // another thread can't run the list out from under us. We only add to the list if we have not
        // yet started execution.
        synchronized (this) {
          if (!executed) {
            runnables = new RunnableExecutorPair(runnable, executor, runnables);
            return;
          }
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/SuggestJob.java

                }
            }
    
            return resultBuf.toString();
    
        }
    
        /**
         * Executes the suggest creator process.
         * This method constructs the command line arguments and starts the process.
         * @throws JobProcessingException if the process fails.
         */
        protected void executeSuggestCreator() {
            final List<String> cmdList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                        proactiveCheckInterval, TimeUnit.MILLISECONDS);
                log.info("Started proactive health checking with interval {} ms", proactiveCheckInterval);
            }
        }
    
        /**
         * Stop proactive health checking
         */
        public void stopProactiveHealthChecking() {
            if (healthCheckTask != null) {
                healthCheckTask.cancel(false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java

        void testReadAndXWireFormatWithPlainSMB() {
            DummyPlainSMB next = new DummyPlainSMB();
            // The implementation uses andx.wordCount, which starts at 0 by default
            // We need to test the actual behavior where wordCount is 0
            // This means readParameterWordsWireFormat won't be called (line 282-284)
    
            DummyAndXBlock block = new DummyAndXBlock(next);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_nl.properties

    labels.wizard_button_register_again=Continu aanmaken
    labels.wizard_button_register_next=Maken
    labels.wizard_start_crawling_title=Start crawlen
    labels.wizard_start_crawler_title=Crawler
    labels.wizard_start_crawling_desc=U kunt nu beginnen met crawlen door op de knop "Start crawlen" te klikken.
    labels.wizard_button_start_crawling=Start crawlen
    labels.wizard_button_finish=Overslaan
    labels.search_list_configuration=Zoeken
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
Back to top