Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1131 - 1140 of 2,589 for mull (0.02 sec)

  1. src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java

         * .
         */
        @Test
        public void testCopyDestNull() {
            exception.expect(NullArgumentException.class);
            exception.expectMessage(is("[ECL0008]argument[enumeration] is null."));
            new EnumerationIterator<Object>(null);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java

                }
            } else {
                aces = null;
            }
    
            return bufferIndex - start;
        }
        public String toString() {
            String ret = "SecurityDescriptor:\n";
            if (aces != null) {
                for (int ai = 0; ai < aces.length; ai++) {
                    ret += aces[ai].toString() + "\n";
                }
            } else {
                ret += "NULL";
            }
            return ret;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/BaseMavenParser.java

            // CLI args
            result.add(parseMavenCliOptions(context.parserRequest.args()));
            // maven.config; if exists
            Path mavenConfig = context.rootDirectory != null ? context.rootDirectory.resolve(".mvn/maven.config") : null;
            if (mavenConfig != null && Files.isRegularFile(mavenConfig)) {
                result.add(parseMavenConfigOptions(mavenConfig));
            }
            return result;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

                return new DefaultArtifactHandler(
                        id,
                        type.getExtension(),
                        type.getClassifier(),
                        null,
                        null,
                        type.isIncludesDependencies(),
                        type.getLanguage().id(),
                        type.getPathTypes().contains(JavaPathType.CLASSES));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                    try {
                        if (externalContext != null) {
                            requestOpt.ifPresent(externalContext::setRequest);
                            responseOpt.ifPresent(externalContext::setResponse);
                        }
                        return searcher.search(query, reqParams, userBean);
                    } finally {
                        if (externalContext != null) {
                            externalContext.setRequest(null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            }
            final String thumbnailPath = System.getProperty(Constants.FESS_THUMBNAIL_PATH);
            if (thumbnailPath != null) {
                baseDir = new File(thumbnailPath);
            } else {
                final String varPath = System.getProperty(Constants.FESS_VAR_PATH);
                if (varPath != null) {
                    baseDir = new File(varPath, THUMBNAILS_DIR_NAME);
                } else {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/common/admin/crud/breadcrumb.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <ol class="breadcrumb float-sm-right">
    	<c:if test="${crudMode == null}">
    		<li class="breadcrumb-item active"><la:message key="labels.crud_link_list" /></li>
    	</c:if>
    	<c:if test="${crudMode != null}">
    		<li class="breadcrumb-item"><la:link href="../list">
    				<la:message key="labels.crud_link_list" />
    			</la:link></li>
    	</c:if>
    	<c:if test="${crudMode == 1}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 919 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                        domain == null ? StringUtil.EMPTY : domain);
            }
    
            return new UsernamePasswordCredentials(getUsername(), getPassword() == null ? StringUtil.EMPTY : getPassword());
        }
    
        public WebConfig getWebConfig() {
            if (webConfig == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/Pac.java

                }
            }
            catch ( IOException e ) {
                throw new PACDecodingException("Malformed PAC", e);
            }
    
            if ( this.serverSignature == null || this.kdcSignature == null || this.logonInfo == null ) {
                throw new PACDecodingException("Missing required buffers");
            }
    
            if ( log.isTraceEnabled() ) {
                log.trace(
                    String.format(
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

         */
        String getMessage();
    
        /**
         * Gets the severity level of this problem.
         *
         * @return The severity level of this problem, never {@code null}.
         */
        Severity getSeverity();
    
        /**
         * Gets the applicable maven version/validation level of this problem
         * @return The version, never {@code null}.
         */
        Version getVersion();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top