Search Options

Results per page
Sort
Preferred Languages
Advance

Results 491 - 500 of 1,736 for unprotected (0.24 sec)

  1. guava/src/com/google/common/util/concurrent/ForwardingListenableFuture.java

    public abstract class ForwardingListenableFuture<V extends @Nullable Object>
        extends ForwardingFuture<V> implements ListenableFuture<V> {
    
      /** Constructor for use by subclasses. */
      protected ForwardingListenableFuture() {}
    
      @Override
      protected abstract ListenableFuture<? extends V> delegate();
    
      @Override
      public void addListener(Runnable listener, Executor exec) {
        delegate().addListener(listener, exec);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Mar 04 12:23:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptParser.java

                    context.extensions,
                    context.options);
        }
    
        @Override
        protected List<EncryptOptions> parseCliOptions(LocalContext context) throws ParserException {
            return Collections.singletonList(parseEncryptCliOptions(context.parserRequest.args()));
        }
    
        protected CommonsCliEncryptOptions parseEncryptCliOptions(List<String> args) throws ParserException {
            try {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.java

    abstract class MavenSnapshotMetadata extends MavenMetadata {
        static final String SNAPSHOT = "SNAPSHOT";
    
        protected final Collection<Artifact> artifacts = new ArrayList<>();
    
        protected MavenSnapshotMetadata(Metadata metadata, Path path, Date timestamp) {
            super(metadata, path, timestamp);
        }
    
        protected static Metadata createRepositoryMetadata(Artifact artifact) {
            Metadata metadata = new Metadata();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

        }
    
        protected class ProtwordsUpdater implements Closeable {
    
            protected boolean isCommit = false;
    
            protected File newFile;
    
            protected Writer writer;
    
            protected ProtwordsItem item;
    
            protected ProtwordsUpdater(final ProtwordsItem newItem) {
                try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

        }
    
        protected class SynonymUpdater implements Closeable {
    
            protected boolean isCommit = false;
    
            protected File newFile;
    
            protected Writer writer;
    
            protected StopwordsItem item;
    
            protected SynonymUpdater(final StopwordsItem newItem) {
                try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

        private static final Logger logger = LogManager.getLogger(NotificationHelper.class);
    
        protected static final char LF = '\n';
    
        public void send(final CardView cardView, final SMailPostingDiscloser discloser) {
            sendToSlack(cardView, discloser);
            sendToGoogleChat(cardView, discloser);
        }
    
        protected void sendToSlack(final CardView cardView, final SMailPostingDiscloser discloser) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/FessBoot.java

            super(port, contextPath);
        }
    
        @Override
        protected String prepareWebappPath() {
            final String value = System.getProperty(FESS_WEBAPP_PATH);
            if (value != null) {
                return value;
            }
            return super.prepareWebappPath();
        }
    
        @Override
        protected String getMarkDir() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

            boost = null;
            available = null;
            sortOrder = null;
            createdBy = null;
            createdTime = null;
            versionNo = null;
            description = null;
    
        }
    
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top