Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for strnames (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/os/zero_copy_linux.go

    	pfd, _ := getPollFDAndNetwork(r)
    	// TODO(panjf2000): run some tests to see if we should unlock the non-streams for splice.
    	// Streams benefit the most from the splice(2), non-streams are not even supported in old kernels
    	// where splice(2) will just return EINVAL; newer kernels support non-streams like UDP, but I really
    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/README.md

    TextWidth field to 20:
    
    	{"TextWidth": 20}
    	-- input --
    	Package gob manages streams of gobs - binary values exchanged between an
    	Encoder (transmitter) and a Decoder (receiver).
    	-- text --
    	Package gob
    	manages streams
    	of gobs - binary
    	values exchanged
    	between an Encoder
    	(transmitter) and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tensor.h

      // streams.
      // It is legal to reset the definition event of a tensor when overwriting the
      // tensor's value (at which point, it is effectively a new tensor once again.)
      void ResetDefinitionEvent(std::shared_ptr<se::Event> event,
                                se::Stream* stream);
    
      // Refresh the status of streams_defined_on_. Return the first not-OK stream's
      // status or OK.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.collect.Streams;
    import org.gradle.internal.execution.BuildOutputCleanupRegistry;
    import org.gradle.internal.execution.OutputChangeListener;
    import org.gradle.internal.execution.UnitOfWork;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasherTest.groovy

            where:
            eol     | description
            '\r'    | 'CR'
            '\r\n'  | 'CR-LF'
            '\n'    | 'LF'
        }
    
        def "can normalize line endings in input streams (eol = '#description')"() {
            def unnormalized = inputStream(content.textWithLineEndings(eol))
            def normalized = inputStream(content.textWithLineEndings('\n'))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/DESIGN.md

    ...
    ```
    
    ### Encrypted/Object locked objects
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top