Search Options

Results per page
Sort
Preferred Languages
Advance

Results 601 - 610 of 2,066 for minval (0.06 sec)

  1. src/test/java/org/codelibs/fess/it/admin/GroupTests.java

    @Tag("it")
    public class GroupTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "groupTest_";
        private static final String API_PATH = "/api/admin/group";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/ReaderUtil.java

            assertArgumentNotNull("file", file);
            assertArgumentNotEmpty("encoding", encoding);
    
            try {
                return new InputStreamReader(new FileInputStream(file), encoding);
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * {@link BufferedReader}から一行読み込んで返します。
         *
         * @param reader
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbRandomAccessFile.java

    
        @Override
        public final void writeBoolean ( boolean v ) throws SmbException {
            this.tmp[ 0 ] = (byte) ( v ? 1 : 0 );
            write(this.tmp, 0, 1);
        }
    
    
        @Override
        public final void writeByte ( int v ) throws SmbException {
            this.tmp[ 0 ] = (byte) v;
            write(this.tmp, 0, 1);
        }
    
    
        @Override
        public final void writeShort ( int v ) throws SmbException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 08 12:01:33 UTC 2020
    - 18.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

    import java.util.List;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class BoostDocPager implements Serializable {
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java

         */
        @Test
        public void test() throws Exception {
            final List<String> list = newArrayList();
            list.add("aaa");
            list.add("bbb");
            list.add("ccc");
    
            final IndexedIterator<String> it = new IndexedIterator<String>(list.iterator());
    
            assertThat(it.hasNext(), is(true));
    
            final Indexed<String> indexed1 = it.next();
            assertThat(indexed1.getIndex(), is(0));
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/xml/SchemaUtil.java

         * @return {@link Schema}
         */
        public static Schema newSchema(final SchemaFactory factory, final File schema) {
            assertArgumentNotNull("factory", factory);
            assertArgumentNotNull("schema", schema);
    
            try {
                return factory.newSchema(schema);
            } catch (final SAXException e) {
                throw new SAXRuntimeException(e);
            }
        }
    
        /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

            }
    
            if (Constants.NTLM.equals(getProtocolScheme())) {
                final Map<String, String> parameterMap = ParameterUtil.parse(getParameters());
                final String workstation = parameterMap.get("workstation");
                final String domain = parameterMap.get("domain");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/WebConfigTests.java

    @Tag("it")
    public class WebConfigTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "webConfigTest_";
        private static final String API_PATH = "/api/admin/webconfig";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/BaseCIFSTest.java

                configs.add(new Object[] {
                    cfg.getKey(), cfg.getValue()
                });
            }
            return configs;
        }
    
        private static final class CIFSConfigContextWrapper extends CIFSContextWrapper {
    
            private final DelegatingConfiguration cfg;
    
    
            CIFSConfigContextWrapper ( CIFSContext delegate, DelegatingConfiguration cfg ) {
                super(delegate);
                this.cfg = cfg;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

      class Interruptenator extends Thread {
        final AtomicBoolean shutdown;
    
        Interruptenator(final Thread interruptee) {
          this(interruptee, new AtomicBoolean(false));
        }
    
        @SuppressWarnings("ThreadPriorityCheck") // TODO: b/175898629 - Consider onSpinWait.
        Interruptenator(final Thread interruptee, final AtomicBoolean shutdown) {
          super(
              new Runnable() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top