Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 738 for STREAM (0.11 sec)

  1. pilot/pkg/xds/ads.go

    }
    
    // StreamAggregatedResources implements the ADS interface.
    func (s *DiscoveryServer) StreamAggregatedResources(stream DiscoveryStream) error {
    	return s.Stream(stream)
    }
    
    func (s *DiscoveryServer) Stream(stream DiscoveryStream) error {
    	if knativeEnv != "" && firstRequest.Load() {
    		// How scaling works in knative is the first request is the "loading" request. During
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]);
        }
    
        public List<Path> refreshDesignJspFiles() {
            final List<Path> fileList = new ArrayList<>();
            stream(ComponentUtil.getVirtualHostHelper().getVirtualHostPaths())
                    .of(stream -> stream.filter(s -> s != null && !"/".equals(s)).forEach(key -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/compress/flate/flate_test.go

    	// >>> import zlib
    	// >>> zlib.decompress(hex_string.decode("hex"), -15) # Negative means raw DEFLATE
    	// '\x11'
    
    	testCases := []struct {
    		desc   string // Description of the stream
    		stream string // Hexstring of the input DEFLATE stream
    		want   string // Expected result. Use "fail" to expect failure
    	}{{
    		"degenerate HCLenTree",
    		"05e0010000000000100000000000000000000000000000000000000000000000" +
    			"00000000000000000004",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationCallInterceptionRequestReaderImpl.java

    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import static java.util.Collections.emptyList;
    import static java.util.Collections.singletonList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    	return e.err.Error()
    }
    
    // NewYAMLOrJSONDecoder returns a decoder that will process YAML documents
    // or JSON documents from the given reader as a stream. bufferSize determines
    // how far into the stream the decoder will look to figure out whether this
    // is a JSON stream (has whitespace followed by an open brace).
    func NewYAMLOrJSONDecoder(r io.Reader, bufferSize int) *YAMLOrJSONDecoder {
    	return &YAMLOrJSONDecoder{
    		r:          r,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            } else if (input instanceof List) {
                values = ((List<?>) input).stream().filter(Objects::nonNull).map(Object::toString).toArray(n -> new String[n]);
            } else if (input instanceof String) {
                return input.toString();
            }
            if (values != null) {
                return stream(values).get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).collect(Collectors.joining(" ")));
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.523917Z	warning	envoy config	[bazel-out/k8-opt/bin/external/envoy/source/common/config/_virtual_includes/grpc_stream_lib/common/config/grpc_stream.h:54] Unable to establish new stream
    2020-06-29T23:37:27.535235Z	info	sds	resource:default new connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/ImmutableIntArray.java

        return builder().addAll(values).build();
      }
    
      /** Returns an immutable array containing all the values from {@code stream}, in order. */
      public static ImmutableIntArray copyOf(IntStream stream) {
        // Note this uses very different growth behavior from copyOf(Iterable) and the builder.
        int[] array = stream.toArray();
        return (array.length == 0) ? EMPTY : new ImmutableIntArray(array);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    // justQueueStream skips the usual stream validation before
    // queueing the stream on the stream channel.
    func justQueueStream(streams chan httpstream.Stream) func(httpstream.Stream, <-chan struct{}) error {
    	return func(stream httpstream.Stream, replySent <-chan struct{}) error {
    		streams <- stream
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

    package org.apache.maven.graph;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import org.apache.maven.MavenExecutionException;
    import org.apache.maven.execution.BuildResumptionDataRepository;
    import org.apache.maven.execution.MavenExecutionRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
Back to top