Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for isEmpty (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

                }
            }
    
            if (!caseInsensitiveMatches.isEmpty()) {
                matches.addAll(caseInsensitiveMatches);
            } else if (!caseSensitiveCamelCaseMatches.isEmpty()) {
                matches.addAll(caseSensitiveCamelCaseMatches);
            } else if (kebabCaseMatches.isEmpty() && kebabCasePrefixMatches.isEmpty()) {
                matches.addAll(caseInsensitiveCamelCaseMatches);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultBuilderProblem.java

            if (getSource() != null && !getSource().isEmpty()) {
                buffer.append(getSource());
            }
            if (getLineNumber() > 0) {
                if (!buffer.isEmpty()) {
                    buffer.append(", ");
                }
                buffer.append("line ").append(getLineNumber());
            }
            if (getColumnNumber() > 0) {
                if (!buffer.isEmpty()) {
                    buffer.append(", ");
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            LinkedList<ScopeState> stack = values.get();
            if (stack == null || stack.isEmpty()) {
                throw new IllegalStateException();
            }
            return stack.getFirst();
        }
    
        public void exit() throws MojoExecutionException {
            final LinkedList<ScopeState> stack = values.get();
            if (stack == null || stack.isEmpty()) {
                throw new IllegalStateException();
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/PropertyProfileActivator.java

            boolean reverseName = false;
    
            if (name != null && name.startsWith("!")) {
                reverseName = true;
                name = name.substring(1);
            }
    
            if (name == null || name.isEmpty()) {
                problems.add(
                        BuilderProblem.Severity.ERROR,
                        ModelProblem.Version.BASE,
                        "The property name is required to activate the profile " + profile.getId(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcher.java

        }
    
        public void assertLinesContainedIn(List<String> expectedLines, List<String> actualLines) throws LineSearchFailures.AbstractLineListComparisonFailure {
            assert !expectedLines.isEmpty() : "there must be expected text";
            assert !actualLines.isEmpty() : "there must be output text";
    
            if (actualLines.size() < expectedLines.size()) {
                LineSearchFailures.insufficientSize(expectedLines, actualLines);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

            return ((groupId != null && !groupId.isEmpty()) ? groupId : "[unknown-group-id]")
                    + ':'
                    + ((artifactId != null && !artifactId.isEmpty()) ? artifactId : "[unknown-artifact-id]")
                    + ':'
                    + ((version != null && !version.isEmpty()) ? version : "[unknown-version]");
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RelocatedArtifact.java

            this.groupId = (groupId != null && !groupId.isEmpty()) ? groupId : null;
            this.artifactId = (artifactId != null && !artifactId.isEmpty()) ? artifactId : null;
            this.classifier = (classifier != null && !classifier.isEmpty()) ? classifier : null;
            this.extension = (extension != null && !extension.isEmpty()) ? extension : null;
            this.version = (version != null && !version.isEmpty()) ? version : null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/types/ExternalPluginsInstrumentationTypeRegistry.java

            if (!superTypes.isEmpty() || !type.startsWith(GRADLE_CORE_PACKAGE_PREFIX)) {
                return superTypes;
            }
            return gradleCoreInstrumentationTypeRegistry.getSuperTypes(type);
        }
    
        @Override
        public boolean isEmpty() {
            return directSuperTypes.isEmpty() && gradleCoreInstrumentationTypeRegistry.isEmpty();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 10:00:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/JavaClass.java

        }
    
        public JavaClass plus(JavaClass other) {
            if (files.isEmpty()) {
                return other;
            }
            if (other.isEmpty()) {
                return this;
            }
            return new JavaClass(concat(files, other.getAsFiles()));
        }
    
        public JavaClass plus(Collection<File> other) {
            if (other.isEmpty()) {
                return this;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

        }
    
        public Conflict popConflict() {
            assert !conflicts.isEmpty();
            Conflict conflict = conflicts.pop();
            for (K participant : conflict.participants) {
                conflictsByParticipant.remove(participant);
            }
            return conflict;
        }
    
        public boolean isEmpty() {
            return conflicts.isEmpty();
        }
    
        boolean hasMatchingConflict(Predicate<T> predicate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top