Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,395 for isEmpty (0.24 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                .collect(Collectors.toList());
    
            StyledTextOutput styledTextOutput = getRenderer().getTextOutput();
            if (!softwareTypes.isEmpty()) {
                renderSectionTitle("Available software types");
                styledTextOutput.println();
    
                softwareTypes.forEach(type -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                classpath.addAll(workerMainClassPath);
            }
            modulePath.addAll(applicationModulePath);
            classpath.addAll(applicationClasspath);
    
            if (!modulePath.isEmpty() && implementationModulePath != null && !implementationModulePath.isEmpty()) {
                // We add the implementation module path as well, as we do not load modules dynamically through a separate class loader in the worker.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/ServiceLifecycle.java

                    Integer depth = usages.remove(Thread.currentThread());
                    if (depth > 1) {
                        usages.put(Thread.currentThread(), depth - 1);
                    }
                    if (usages.isEmpty()) {
                        condition.signalAll();
                        if (state == State.STOPPING) {
                            state = State.STOPPED;
                        }
                    }
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/types/PropertiesBackedInstrumentationTypeRegistry.java

        }
    
        @Override
        public Set<String> getSuperTypes(String type) {
            return properties.get().getOrDefault(type, Collections.emptySet());
        }
    
        @Override
        public boolean isEmpty() {
            return properties.get().isEmpty();
        }
    
        public static InstrumentationTypeRegistry of(Supplier<Map<String, Set<String>>> properties) {
            return new PropertiesBackedInstrumentationTypeRegistry(properties);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/FloatConversionUtil.java

                return new Float(((java.util.Date) o).getTime());
            } else {
                return toFloat(o.toString());
            }
        }
    
        private static Float toFloat(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
            return new Float(DecimalFormatUtil.normalize(s));
        }
    
        /**
         * {@literal float}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableEnumSet.java

          collection = ((ImmutableEnumSet<?>) collection).delegate;
        }
        return delegate.containsAll(collection);
      }
    
      @Override
      public boolean isEmpty() {
        return delegate.isEmpty();
      }
    
      @Override
      public boolean equals(@CheckForNull Object object) {
        if (object == this) {
          return true;
        }
        if (object instanceof ImmutableEnumSet) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/TopKSelectorTest.java

        TopKSelector<Integer> top = TopKSelector.least(0);
        for (int i = 0; i < 10; i++) {
          top.offer(i);
        }
        assertThat(top.topK()).isEmpty();
      }
    
      public void testNoElementsOffered() {
        TopKSelector<Integer> top = TopKSelector.least(10);
        assertThat(top.topK()).isEmpty();
      }
    
      public void testOfferedFewerThanK() {
        TopKSelector<Integer> top = TopKSelector.least(10);
        top.offer(3);
        top.offer(5);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ConfigureUtil.java

            logDeprecation();
            if (!mandatoryKeys.isEmpty()) {
                Collection<String> missingKeys = toStringList(mandatoryKeys);
                missingKeys.removeAll(toStringList(properties.keySet()));
                if (!missingKeys.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMappingsStore.java

                }
            }
        }
    
        @Override
        public boolean hasRules() {
            return !(vcsMappings.isEmpty() && rootVcsMappings.isEmpty());
        }
    
        @Override
        public void addRule(final Action<? super VcsMapping> rule, final Gradle gradle) {
            if (gradle.getParent() == null) {
                rootVcsMappings.add(rule);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TreeRangeMap.java

                return Iterators.size(iterator());
              }
    
              @Override
              public boolean isEmpty() {
                return !iterator().hasNext();
              }
            };
          }
    
          Iterator<Entry<Range<K>, V>> entryIterator() {
            if (subRange.isEmpty()) {
              return Iterators.emptyIterator();
            }
            Cut<K> cutToStart =
                MoreObjects.firstNonNull(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top