Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 6,368 for For (0.01 sec)

  1. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

                                        <la:errors property="_global"/>
                                    </div>
                                    <div class="form-group row">
                                        <label for="hostname" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.webauth_hostname"/></label>
                                        <div class="col-sm-9">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java

            Field[] fields = SecurityInfo.class.getDeclaredFields();
            Set<Integer> values = new HashSet<>();
    
            for (Field field : fields) {
                if (field.getType() == int.class) {
                    int value = field.getInt(null);
                    assertTrue(values.add(value), "Duplicate value found for field: " + field.getName());
                }
            }
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

            if (children != null) {
                for (ResolutionNode node : children) {
                    node.enable();
                }
            }
        }
    
        public void disable() {
            active = false;
            if (children != null) {
                for (ResolutionNode node : children) {
                    node.disable();
                }
            }
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/test/java/org/apache/maven/api/MonotonicClockTest.java

            Thread.sleep(50); // Longer delay for more reliable measurement
            Duration later = MonotonicClock.elapsed();
    
            assertTrue(later.compareTo(initial) > 0, "Elapsed time should increase");
            assertTrue(
                    later.minus(initial).toMillis() >= 45,
                    "Elapsed time difference should be at least 45ms (accounting for some timing variance)");
        }
    
        @Test
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 06:28:29 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbConstants.java

     *
     *
     * <p>This interface is intended for internal use.</p>
     */
    public interface SmbConstants {
    
        /**
         * Default SMB port number for direct TCP transport.
         */
        int DEFAULT_PORT = 445;
    
        /**
         * Default maximum number of outstanding SMB requests.
         */
        int DEFAULT_MAX_MPX_COUNT = 10;
        /**
         * Default timeout in milliseconds for SMB responses.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

    /**
     * Service class for managing file configuration operations.
     * This service provides CRUD operations for file crawler configurations,
     * including retrieval, storage, deletion, and search functionality.
     * It handles pagination and integrates with the file authentication system.
     */
    public class FileConfigService extends FessAppService {
    
        /**
         * Default constructor for file configuration service.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

        public static final String NAME = "sltr";
    
        /** The parse field for the model name. */
        public static final ParseField MODEL_NAME = new ParseField("model");
        /** The parse field for the featureset name. */
        public static final ParseField FEATURESET_NAME = new ParseField("featureset");
        /** The parse field for the store name. */
        public static final ParseField STORE_NAME = new ParseField("store");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

     *
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     *
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java

    import java.io.StringWriter;
    import java.nio.Buffer;
    import java.nio.CharBuffer;
    import java.util.Random;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Benchmarks for {@link CharStreams#copy}.
     *
     * <p>{@link CharStreams#copy} has type specific optimizations for various common Appendable and
     * Reader implementations, this compares the performance of the different options.
     */
    // These benchmarks allocate a lot of data so use a large heap
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/LineIterator.java

        protected final BufferedReader reader;
    
        /** The line that has been read */
        protected String line = EMPTY;
    
        /**
         * Returns an {@link Iterable} that wraps a {@link LineIterator} for use in enhanced for-loops.
         *
         * @param reader
         *            The {@link Reader} to read strings from. Must not be {@literal null}.
         * @return An {@link Iterable} that wraps a {@link LineIterator}.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top