Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 2,511 for mull (0.08 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            localRepositoryPath = (localRepository != null) ? new File(localRepository) : null;
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setSystemProperties(Properties properties) {
            if (properties != null) {
                this.systemProperties = SystemProperties.copyProperties(properties);
            } else {
                this.systemProperties = null;
            }
    
            return this;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            } else {
                return null;
            }
        }
    
        public static ArtifactRepositoryPolicy buildArtifactRepositoryPolicy(
                org.apache.maven.model.RepositoryPolicy policy) {
            boolean enabled = true;
    
            String updatePolicy = null;
    
            String checksumPolicy = null;
    
            if (policy != null) {
                enabled = policy.isEnabled();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

            Mall<Outdoor>.Shop<Grocery> shop) {
          return notSubtype(shop);
        }
    
        @TestSubtype
        public Mall<Outdoor>.Shop<Electronics> innerTypeDoesNotMatch_subtypeWithWildcard(
            Mall<Outdoor>.Shop<? extends Electronics> shop) {
          return notSubtype(shop);
        }
    
        @TestSubtype
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

        protected void assertObjectNotNull(String variableName, Object value) {
            if (variableName == null) {
                String msg = "The value should not be null: variableName=null value=" + value;
                throw new IllegalArgumentException(msg);
            }
            if (value == null) {
                String msg = "The value should not be null: variableName=" + variableName;
                throw new IllegalArgumentException(msg);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DataSource assistDataSource() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DBMetaProvider assistDBMetaProvider() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                                : null );
                        if ( cresp != null && cresp.isReceived() ) {
                            return (T) cresp;
                        }
                        if ( chain != null ) {
                            return this.transport.send(chain, null, params);
                        }
                        return null;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

            if (reporting != null) {
                reporting.setOutputDirectory(alignToBaseDirectory(reporting.getOutputDirectory(), basedir));
            }
        }
    
        public String alignToBaseDirectory(String path, File basedir) {
            if (basedir == null) {
                return path;
            }
    
            if (path == null) {
                return null;
            }
    
            String s = stripBasedirToken(path);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            if (businessCategory != null) {
                addFieldToSource(sourceMap, "businessCategory", businessCategory);
            }
            if (carLicense != null) {
                addFieldToSource(sourceMap, "carLicense", carLicense);
            }
            if (city != null) {
                addFieldToSource(sourceMap, "city", city);
            }
            if (departmentNumber != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(FailureUrl entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(FailureUrl entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
        public void delete(FailureUrl entity) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedQueryBhv.java

            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(RelatedQuery entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(RelatedQuery entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top