Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 311 for strnames (0.11 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

         */
        void connectStreams(Process process, String processName, Executor executor);
    
        /**
         * Starts reading/writing/whatever the process' streams. May block until the streams reach some particular state, e.g. indicate that the process has started successfully.
         */
        void start();
    
        /**
         * Remove any context associated with tracking the startup of the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/package-info.java

     * and files.
     *
     * <p>At the core of this package are the Source/Sink types: {@link ByteSource ByteSource}, {@link
     * CharSource CharSource}, {@link ByteSink ByteSink} and {@link CharSink CharSink}. They are
     * factories for I/O streams that provide many convenience methods that handle both opening and
     * closing streams for you.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Connection.kt

     *
     * ## Connection Reuse
     *
     * Each connection can carry a varying number of streams, depending on the underlying protocol being
     * used. HTTP/1.x connections can carry either zero or one streams. HTTP/2 connections can carry any
     * number of streams, dynamically configured with `SETTINGS_MAX_CONCURRENT_STREAMS`. A connection
     * currently carrying zero streams is an idle stream. We keep it alive because reusing an existing
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. pkg/kubelet/oom/oom_watcher_linux.go

    )
    
    type streamer interface {
    	StreamOoms(chan<- *oomparser.OomInstance)
    }
    
    var _ streamer = &oomparser.OomParser{}
    
    type realWatcher struct {
    	recorder    record.EventRecorder
    	oomStreamer streamer
    }
    
    var _ Watcher = &realWatcher{}
    
    // NewWatcher creates and initializes a OOMWatcher backed by Cadvisor as
    // the oom streamer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 23:17:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // streaming connections.
    //
    // The stream translator proxy is used for the RemoteCommand
    // subprotocol (e.g. kubectl exec, cp, and attach), and it connects
    // the output streams of a WebSocket connection (e.g. STDIN, STDOUT,
    // STDERR, TTY resize, and error streams) to the input streams of a
    // SPDY connection.
    //
    // The stream tunnel proxy tunnels SPDY frames through a WebSocket
    // connection, and it is used for the PortForward subprotocol (e.g.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig_test.go

    				// ignore sni names for serving cert
    				servingCert: certKeyContent{cert: serverCert, key: serverKey},
    				sniCerts:    []sniCertKeyContent{{certKeyContent: certKeyContent{cert: serverCert, key: serverKey}, sniNames: []string{"foo"}}},
    			},
    		},
    		{
    			name:     "nil",
    			expected: &dynamicCertificateContent{clientCA: caBundleContent{}, servingCert: certKeyContent{}},
    		},
    	}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fail_newline.txt

    # Check that a newline is printed after the buffer's contents.
    cd fail
    ! go test .
    ! stderr .
    stdout '^exitcode=1\n'
    stdout '^FAIL\s+example/fail'
    
    # In local directory mode output is streamed, so we don't know
    # whether the test printed anything at all, so we print the exit code
    # (just in case it failed without emitting any output at all),
    # and that happens to add the needed newline as well.
    ! go test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. src/internal/zstd/literals.go

    		compressedSize  int
    		streams         int
    	)
    	switch (hdr >> 2) & 3 {
    	case 0, 1:
    		if off+1 >= len(data) {
    			return 0, nil, r.makeEOFError(off)
    		}
    		regeneratedSize = (int(hdr) >> 4) | ((int(data[off]) & 0x3f) << 4)
    		compressedSize = (int(data[off]) >> 6) | (int(data[off+1]) << 2)
    		off += 2
    		if ((hdr >> 2) & 3) == 0 {
    			streams = 1
    		} else {
    			streams = 4
    		}
    	case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/text2.txt

    {"TextWidth": -1}
    -- input --
    Package gob manages streams of gobs - binary values exchanged between an
    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 937 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    }
    
    // compressUsername maps all possible usernames onto a small set of categories
    // of usernames. This is done both to limit the cardinality of the
    // authorized_user_requests metric, and to avoid pushing actual usernames in the
    // metric.
    func compressUsername(username string) string {
    	switch {
    	// Known internal identities.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top