Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for getRight (0.44 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

                if (match != null) {
                    match = Pair.of(withoutDebug, match.getRight());
                } else {
                    // Not present, assume no failure details
                    match = Pair.of(withoutDebug, LogContent.empty());
                }
            } else {
                if (match.getRight().countMatches(FAILURE_PATTERN) != 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            // Only merge if about the same capability, otherwise last wins
            if (this.capabilityReject.getLeft().equals(capability)) {
                this.capabilityReject.getRight().addAll(conflictedNodes);
            } else {
                this.capabilityReject = Pair.of(capability, conflictedNodes);
            }
        }
    
        @Override
        public boolean isRejected() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingState.java

        }
    
        public Optional<Enabled> whenEnabled() {
            return delegate.getLeft();
        }
    
        public Optional<Disabled> whenDisabled() {
            return delegate.getRight();
        }
    
        public <T> T fold(Function<Enabled, T> enabled, Function<Disabled, T> disabled) {
            return delegate.fold(enabled, disabled);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

            }
            String output = transform.getLeft();
            String error = transform.getRight();
            try {
                return new ComponentFound<T>(parseCompilerOutput(output, error, execSpec.executable, path));
            } catch (BrokenResultException e) {
                return new ComponentNotFound<T>(e.getMessage());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            Collection<SourceFolder> externalSourceFolders = partitionedFolders.getLeft();
            Collection<SourceFolder> regularSourceFolders = partitionedFolders.getRight();
    
            List<String> sources = Lists.newArrayList(Collections2.transform(regularSourceFolders, SourceFolder::getName));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

                this.mainContent = filteredOutput;
                this.postBuild = LogContent.empty();
            } else {
                this.mainContent = match.getLeft();
                this.postBuild = match.getRight().drop(1);
            }
            this.errorContent = error.ansiCharsToPlainText();
        }
    
        @Override
        public ExecutionResult getIgnoreBuildSrc() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java

            BufferedImage img = ImageIO.read(file);
            logger.debug("width: {}, height: {}", img.getWidth(), img.getHeight());
            assertEquals("Image Width", width, img.getWidth());
            assertEquals("Image Height", height, img.getHeight());
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

            getTerminal().setSize(size);
        }
    
        @Override
        public int getWidth() {
            return getTerminal().getWidth();
        }
    
        @Override
        public int getHeight() {
            return getTerminal().getHeight();
        }
    
        @Override
        public Size getBufferSize() {
            return getTerminal().getBufferSize();
        }
    
        @Override
        public void flush() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

                  } else if (map.isExpired(e, now)) {
                    // This is a duplicate check, as preWriteCleanup already purged expired
                    // entries, but let's accommodate an incorrect expiration queue.
                    enqueueNotification(
                        entryKey, hash, value, valueReference.getWeight(), RemovalCause.EXPIRED);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

                  } else if (map.isExpired(e, now)) {
                    // This is a duplicate check, as preWriteCleanup already purged expired
                    // entries, but let's accommodate an incorrect expiration queue.
                    enqueueNotification(
                        entryKey, hash, value, valueReference.getWeight(), RemovalCause.EXPIRED);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top