Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 738 for STREAM (1.9 sec)

  1. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

     * body.
     *
     * ### The response body can be consumed only once.
     *
     * This class may be used to stream very large responses. For example, it is possible to use this
     * class to read a response that is larger than the entire memory allocated to the current process.
     * It can even stream a response larger than the total storage on the current device, which is a
     * common requirement for video streaming applications.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            final String logFilePath = systemHelper.getLogFilePath();
            if (StringUtil.isNotBlank(logFilePath)) {
                final Path logDirPath = Paths.get(logFilePath);
                try (Stream<Path> stream = Files.list(logDirPath)) {
                    stream.filter(entry -> isLogFilename(entry.getFileName().toString())).forEach(filePath -> {
                        final ZipEntry entry = new ZipEntry(id + "/" + filePath.getFileName().toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/CharSource.java

       * entire stream. To avoid a potentially expensive operation, see {@link #lengthIfKnown}.
       *
       * <p>The default implementation calls {@link #lengthIfKnown} and returns the value if present. If
       * absent, it will fall back to a heavyweight operation that will open a stream, {@link
       * Reader#skip(long) skip} to the end of the stream, and return the total number of chars that
       * were skipped.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/get_compiler_ir.cc

          DeviceCompiler<xla::LocalExecutable, xla::LocalClient>;
    
      se::Stream* stream = nullptr;
      if (const DeviceBase::AcceleratorDeviceInfo* accelerator_device_info =
              dev->tensorflow_accelerator_device_info()) {
        stream = accelerator_device_info->stream;
      }
      TF_RETURN_IF_ERROR(
          ValidateGetCompilerIrTfrtTpu(dev->device_type(), stream, stage));
    
      NameAttrList function;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            return invalidatingRootVisitor.getNewRoot();
        }
    
        /**
         * Hierarchies in usage order, most recent first.
         */
        public Stream<File> stream() {
            return hierarchies.stream();
        }
    
        private void checkThatNothingExistsInNewWatchableHierarchy(String watchableHierarchy, SnapshotHierarchy vfsRoot) {
            vfsRoot.rootSnapshotsUnder(watchableHierarchy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    import org.junit.jupiter.api.TestFactory;
    
    import java.util.stream.Stream;
    
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.junit.jupiter.api.DynamicContainer.dynamicContainer;
    import static org.junit.jupiter.api.DynamicTest.dynamicTest;
    
    import org.junit.jupiter.api.DisplayName;
    
    public class DynamicTests {
    
        @TestFactory
        Stream<DynamicNode> testFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/testdata/describe/http_config.json

                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
                          "retry_policy": {
                            "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                            "num_retries": 2,
                            "retry_host_predicate": [
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

    import java.io.Writer;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.stream.Stream;
    
    import static java.util.stream.Collectors.joining;
    import static org.gradle.performance.results.report.AbstractReportGenerator.getDependencyPerformanceTestTeamCityBuildIds;
    import static org.gradle.performance.results.report.Tag.FixedTag;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            Set<IvyArtifact> main = linkedHashSetOf(
                normalized(
                    mainArtifacts.stream(),
                    this::isValidArtifact
                )
            );
            LinkedHashSet<IvyArtifact> all = new LinkedHashSet<>(main);
            normalized(
                Streams.concat(metadataArtifacts.stream(), derivedArtifacts.stream()),
                this::isPublishableArtifact
            ).forEach(all::add);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

    import org.gradle.internal.component.model.VariantGraphResolveState;
    
    import javax.annotation.Nullable;
    import java.util.Comparator;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * A utility class used by {@link ResolutionFailureHandler} to assess and classify
     * how the attributes of candidate variants during a single attempt at dependency resolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top