Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,472 for _this6 (0.03 sec)

  1. android/guava-testlib/src/com/google/common/testing/ClusterException.java

     * presented below:
     *
     * <pre>
     * void runManyThings({@literal List<ThingToRun>} thingsToRun) {
     *   for (ThingToRun thingToRun : thingsToRun) {
     *     thingToRun.run(); // say this may throw an exception, but you want to
     *                       // always run all thingsToRun
     *   }
     * }
     * </pre>
     *
     * <p>This is what the code would become:
     *
     * <pre>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

        private final AtomicInteger called = new AtomicInteger();
    
        InteractionTester(Class<T> interfaceType, Method method) {
          this.interfaceType = interfaceType;
          this.method = method;
          this.passedArgs = getParameterValues(method);
          this.returnValue = new FreshValueGenerator().generateFresh(method.getReturnType());
        }
    
        @Override
        protected @Nullable Object handleInvocation(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

    /**
     * Fess-specific web resource root implementation for Tomcat.
     * This class extends StandardRoot to provide custom web resource handling
     * for Fess plugins, including support for plugin JAR files in the WEB-INF/plugin directory.
     */
    public class FessWebResourceRoot extends StandardRoot {
        /** Logger instance for this class */
        private static final Logger logger = Logger.getLogger(FessWebResourceRoot.class.getName());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/ParameterizedClassDesc.java

     *
     * @author koichik
     */
    public interface ParameterizedClassDesc {
    
        /**
         * Returns <code>true</code> if the class represented by this instance is parameterized.
         *
         * @return <code>true</code> if the class represented by this instance is parameterized
         */
        boolean isParameterizedClass();
    
        /**
         * Returns the raw class.
         *
         * @param <T>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

      public EqualsTester() {
        this(/* itemReporter= */ Item::toString);
      }
    
      EqualsTester(RelationshipTester.ItemReporter itemReporter) {
        this.itemReporter = checkNotNull(itemReporter);
      }
    
      /**
       * Adds {@code equalityGroup} with objects that are supposed to be equal to each other and not
       * equal to any other equality groups added to this tester.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

        }
      }
    
      @JvmStatic
      fun assumeNotWindows() {
        assumeFalse(windows, "This test fails on Windows.")
      }
    
      @JvmStatic
      val windows: Boolean
        get() = System.getProperty("os.name", "?").startsWith("Windows")
    
      /**
       * Make assertions about the suppressed exceptions on this. Prefer this over making direct calls
       * so tests pass on GraalVM, where suppressed exceptions are silently discarded.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java

     * Stopwords are common words that should be ignored during search indexing and querying.
     * This form is used in the admin interface to upload custom stopwords dictionary files.
     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which stopwords dictionary configuration to update.
         * This ID corresponds to a specific stopwords dictionary instance in the system.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

             * @param timeout The destruction timeout.
             */
            public ProcessDestroyer(final Process p, final InputStreamThread ist, final long timeout) {
                this.p = p;
                this.ist = ist;
                this.timeout = timeout;
            }
    
            /**
             * Runs the process destroyer task to terminate the process.
             */
            @Override
            public void run() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

        /**
         * The unique identifier of the protected words dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top