Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 260 for storage (0.26 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_storage_file_upload_failure = "{errors.storage_file_upload_failure}";
    
        /** The key of the message: The target file is not found in Storage. */
        public static final String ERRORS_storage_file_not_found = "{errors.storage_file_not_found}";
    
        /** The key of the message: Failed to download {0}. */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/MetadataStorage.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api;
    
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Storage location for metadata
     *
     * @since 4.0.0
     */
    @Experimental
    public enum MetadataStorage {
        GROUP,
        ARTIFACT,
        VERSION
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

        public static final int DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
        public static final int DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
        public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
        public static final int DFS_STORAGE_STATE_ONLINE = 0x0002;
        public static final int DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
        public static class DfsInfo1 extends NdrObject {
    
            public String entry_path;
    
    
            @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 16.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

    import org.apache.maven.api.annotations.Provider;
    import org.apache.maven.api.annotations.ThreadSafe;
    
    /**
     * A container for data that is specific to a session.
     * All components may use this storage to associate arbitrary data with a session.
     * <p>
     * Unlike a cache, this session data is not subject to purging. For this same reason, session data should also not be
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.storage;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    
    public class ItemForm {
    
        public String path;
    
        @Size(max = 100)
        public String name;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 914 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/Constants.java

        public static final String STORAGE_ENDPOINT = "storage.endpoint";
    
        public static final String STORAGE_ACCESS_KEY = "storage.accesskey";
    
        public static final String STORAGE_SECRET_KEY = "storage.secretkey";
    
        public static final String STORAGE_BUCKET = "storage.bucket";
    
        public static final String MAPPING_TYPE_ARRAY = "array";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:")
                    || path.startsWith("ftp:") || path.startsWith("storage:")) {
                return path;
            }
    
            if (path.startsWith("www.")) {
                return "http://" + path;
            }
    
            if (path.startsWith("//")) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/DosError.java

            "Access is denied.",
            "The TID specified was invalid.",
            "The handle is invalid.",
            "The network name cannot be found.",
            "Not enough storage is available to process this command.",
            "The media is write protected.",
            "The device is not ready.",
            "A device attached to the system is not functioning.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemProperty(Constants.STORAGE_ENDPOINT, value);
        }
    
        default String getStorageEndpoint() {
            return getSystemProperty(Constants.STORAGE_ENDPOINT, StringUtil.EMPTY);
        }
    
        default void setStorageAccessKey(final String value) {
            setSystemProperty(Constants.STORAGE_ACCESS_KEY, value);
        }
    
        default String getStorageAccessKey() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.storage;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    
    import java.io.InputStream;
    import java.net.URLDecoder;
    import java.net.URLEncoder;
    import java.util.ArrayList;
    import java.util.Base64;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.9K bytes
    - Viewed (0)
Back to top