Search Options

Results per page
Sort
Preferred Languages
Advance

Results 551 - 560 of 2,177 for projectId (0.17 sec)

  1. src/main/java/org/codelibs/core/io/TraversalUtil.java

            /** WAR内の.classファイルの接頭辞です。 */
            protected static final String WAR_CLASSES_PREFIX = "/WEB-INF/CLASSES/";
    
            /** ルートパッケージです。 */
            protected final String rootPackage;
    
            /** ルートディレクトリです。 */
            protected final String rootDir;
    
            /** ZipのURLです。 */
            protected final URL zipUrl;
    
            /** Zip内のエントリの接頭辞です。 */
            protected final String prefix;
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformation.java

            super(config, SMB_COM_QUERY_INFORMATION, filename);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            dst[ dstIndex++ ] = (byte) 0x04;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

        }
    
        protected class KuromojiUpdater implements Closeable {
    
            protected boolean isCommit = false;
    
            protected File newFile;
    
            protected Writer writer;
    
            protected KuromojiItem item;
    
            protected KuromojiUpdater(final KuromojiItem newItem) {
                try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/build.gradle.kts

      id("binary-compatibility-validator")
    }
    
    project.applyOsgi(
      "Export-Package: okhttp3.logging",
      "Automatic-Module-Name: okhttp3.logging",
      "Bundle-SymbolicName: com.squareup.okhttp3.logging"
    )
    
    dependencies {
      api(projects.okhttp)
      compileOnly(libs.findbugs.jsr305)
    
      testCompileOnly(libs.findbugs.jsr305)
      testImplementation(libs.junit)
      testImplementation(projects.mockwebserver3)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 842 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/transport/Transport.java

        TransportException te;
    
        protected HashMap response_map = new HashMap( 4 );
    
        protected abstract void makeKey( Request request ) throws IOException;
        protected abstract Request peekKey() throws IOException;
        protected abstract void doSend( Request request ) throws IOException;
        protected abstract void doRecv( Response response ) throws IOException;
        protected abstract void doSkip() throws IOException;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ImmutableMapWithBadHashesMapInterfaceTest.java

    @GwtCompatible
    public class ImmutableMapWithBadHashesMapInterfaceTest
        extends AbstractImmutableMapMapInterfaceTest<Object, Integer> {
      @Override
      protected Map<Object, Integer> makeEmptyMap() {
        throw new UnsupportedOperationException();
      }
    
      @Override
      protected Map<Object, Integer> makePopulatedMap() {
        Colliders colliders = new Colliders();
        return ImmutableMap.of(
            colliders.e0(), 0,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Mar 09 02:18:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

        private static final Logger logger = LogManager.getLogger(FileListIndexUpdateCallbackImpl.class);
    
        protected IndexUpdateCallback indexUpdateCallback;
    
        protected CrawlerClientFactory crawlerClientFactory;
    
        protected List<String> deleteUrlList = new ArrayList<>(100);
    
        protected int maxDeleteDocumentCacheSize;
    
        protected int maxRedirectCount;
    
        private final ExecutorService executor;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java

    public abstract class AbstractImmutableSetTest extends TestCase {
    
      protected abstract <E extends Comparable<? super E>> Set<E> of();
    
      protected abstract <E extends Comparable<? super E>> Set<E> of(E e);
    
      protected abstract <E extends Comparable<? super E>> Set<E> of(E e1, E e2);
    
      protected abstract <E extends Comparable<? super E>> Set<E> of(E e1, E e2, E e3);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        protected static final String TEXT_SEP = " ";
    
        protected Suggester suggester;
    
        protected FessConfig fessConfig;
    
        protected final Set<String> contentFieldNameSet = new HashSet<>();
    
        protected final Set<String> tagFieldNameSet = new HashSet<>();
    
        protected final Set<String> roleFieldNameSet = new HashSet<>();
    
        protected List<String> contentFieldList;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

        private static final String DISABLE_URL_ENCODE = "#DISABLE_URL_ENCODE";
    
        protected long maxAccessCount = Long.MAX_VALUE;
    
        protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL;
    
        protected int indexUpdaterPriority = Thread.MAX_PRIORITY;
    
        protected int crawlerPriority = Thread.NORM_PRIORITY;
    
        protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>());
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top