Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,987 for NULL (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * used by plugins.
         *
         * @param artifacts The set of artifacts, may be {@code null}.
         */
        public void setResolvedArtifacts(Set<Artifact> artifacts) {
            this.resolvedArtifacts = (artifacts != null) ? artifacts : Collections.<Artifact>emptySet();
            this.artifacts = null;
            this.artifactMap = null;
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                            p.getDefaultValue() != null
                                    ? Collections.singletonMap("default-value", p.getDefaultValue())
                                    : null,
                            null,
                            null))
                    .collect(Collectors.toList());
            return new XmlNodeImpl("configuration", null, null, children, null);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/JoinerTest.java

      private static final Iterable<@Nullable Integer> ITERABLE_NULL = Arrays.asList((Integer) null);
      private static final Iterable<@Nullable Integer> ITERABLE_NULL_NULL =
          Arrays.asList((Integer) null, null);
      private static final Iterable<@Nullable Integer> ITERABLE_NULL_1 = Arrays.asList(null, 1);
      private static final Iterable<@Nullable Integer> ITERABLE_1_NULL = Arrays.asList(1, null);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

            requireNonNull(event, "event cannot be null");
    
            if (!isLocalRepositoryArtifactOrMissing(event.getSession(), event.getArtifact())) {
                return;
            }
    
            RequestTrace trace = event.getTrace();
    
            CollectStepData collectStepTrace = null;
            ArtifactRequest artifactRequest = null;
            ArtifactDescriptorRequest artifactDescriptorRequest = null;
            Plugin plugin = null;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(Role entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(Role entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
        public void delete(Role entity) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(CrawlingInfo entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(CrawlingInfo entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  7. 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);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelXmlFactory.java

            InputStream inputStream = request.getInputStream();
            if (path == null && url == null && reader == null && inputStream == null) {
                throw new IllegalArgumentException("path, url, reader or inputStream must be non null");
            }
            try {
                InputSource source = null;
                if (request.getModelId() != null || request.getLocation() != null) {
                    source = new InputSource(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  9. 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
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBoostDocumentRuleBhv.java

            doUpdate(entity, null);
        }
    
        public void insertOrUpdate(BoostDocumentRule entity) {
            doInsertOrUpdate(entity, null, null);
        }
    
        public void insertOrUpdate(BoostDocumentRule entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.1K bytes
    - Viewed (0)
Back to top