Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for STREAM (0.13 sec)

  1. guava/src/com/google/common/collect/Sets.java

                return endOfData();
              }
            };
          }
    
          @Override
          public Stream<E> stream() {
            return Stream.concat(set1.stream(), set2.stream().filter((E e) -> !set1.contains(e)));
          }
    
          @Override
          public Stream<E> parallelStream() {
            return stream().parallel();
          }
    
          @Override
          public boolean contains(@CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

    import java.util.Optional;
    import java.util.Properties;
    import java.util.concurrent.Callable;
    import java.util.function.Supplier;
    import java.util.function.UnaryOperator;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import org.apache.maven.api.VersionRange;
    import org.apache.maven.api.feature.Features;
    import org.apache.maven.api.model.ActivationFile;
    import org.apache.maven.api.model.Exclusion;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import java.util.Map;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.Queue;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import static org.gradle.api.internal.artifacts.configurations.ConfigurationInternal.InternalState.GRAPH_RESOLVED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().spliterator();
          }
        }
    
        @Override
        public Stream<E> stream() {
          synchronized (mutex) {
            return delegate().stream();
          }
        }
    
        @Override
        public Stream<E> parallelStream() {
          synchronized (mutex) {
            return delegate().parallelStream();
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

    
    ## Version 3.14.5
    
    _2020-01-03_
    
     *  Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact
        the stream only or the entire connection. With this fix OkHttp will now send HTTP/2 pings after
        a stream timeout to determine whether the connection should remain eligible for pooling.
    
    
    ## Version 3.14.4
    
    _2019-09-29_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	r2, w2 := io.Pipe()
    	go func() {
    		defer w2.Close()
    		w2.Write([]byte(`{}`))
    		w2.Write([]byte(runtime.EncodeOrDie(corev1Codec, &svc.Items[0])))
    	}()
    
    	b := newDefaultBuilder().
    		Stream(r, "1").Stream(r2, "2").
    		ContinueOnError()
    
    	test := &testVisitor{}
    	singleItemImplied := false
    
    	err := b.Do().IntoSingleItemImplied(&singleItemImplied).Visit(test.Handle)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    import java.util.function.Predicate;
    import java.util.function.Supplier;
    import java.util.stream.Collectors;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static java.util.stream.Collectors.joining;
    import static org.gradle.api.internal.artifacts.BaseRepositoryFactory.PLUGIN_PORTAL_OVERRIDE_URL_PROPERTY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_darwin_arm64.go

    	92:  "illegal byte sequence",
    	93:  "attribute not found",
    	94:  "bad message",
    	95:  "EMULTIHOP (Reserved)",
    	96:  "no message available on STREAM",
    	97:  "ENOLINK (Reserved)",
    	98:  "no STREAM resources",
    	99:  "not a STREAM",
    	100: "protocol error",
    	101: "STREAM ioctl timeout",
    	102: "operation not supported on socket",
    	103: "policy not found",
    	104: "state not recoverable",
    	105: "previous owner died",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  9. src/syscall/zerrors_darwin_amd64.go

    	92:  "illegal byte sequence",
    	93:  "attribute not found",
    	94:  "bad message",
    	95:  "EMULTIHOP (Reserved)",
    	96:  "no message available on STREAM",
    	97:  "ENOLINK (Reserved)",
    	98:  "no STREAM resources",
    	99:  "not a STREAM",
    	100: "protocol error",
    	101: "STREAM ioctl timeout",
    	102: "operation not supported on socket",
    	103: "policy not found",
    	104: "state not recoverable",
    	105: "previous owner died",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            Plugin plugin = plugins.stream()
                    .filter(p -> p.getArtifactId().equals(artifactId))
                    .findFirst()
                    .orElse(null);
            assertNotNull(plugin, "Unable to find plugin with artifactId: " + artifactId);
            List<PluginExecution> pluginExecutions = plugin.getExecutions();
            PluginExecution pluginExecution = pluginExecutions.stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top