Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for expectedBytes (0.15 sec)

  1. cmd/kubeadm/app/util/apiclient/dryrunclient_test.go

    	var tests = []struct {
    		name          string
    		action        core.Action
    		expectedBytes []byte
    		buf           *bytes.Buffer
    	}{
    		{
    			name:   "action GET on services",
    			action: core.NewGetAction(schema.GroupVersionResource{Version: "v1", Resource: "services"}, "default", "kubernetes"),
    			expectedBytes: []byte(`[dryrun] Would perform action GET on resource "services" in API group "core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

        // ensures that the number of invocations looks sane
        void assertInvariants(int expectedBytes) {
          // we should have seen as many bytes as the next multiple of chunk after expectedBytes - 1
          assertEquals(out.toByteArray().length, ceilToMultiple(expectedBytes, chunkSize));
          assertEquals(expectedBytes / chunkSize, processCalled);
          assertEquals(expectedBytes % chunkSize != 0, remainingCalled);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/common_test.go

    	var tests = []struct {
    		name          string
    		cfg           *kubeadmapi.ClusterConfiguration
    		buf           *bytes.Buffer
    		expectedBytes []byte
    	}{
    		{
    			name:          "config is nil",
    			cfg:           nil,
    			expectedBytes: []byte(""),
    		},
    		{
    			name: "cluster config with local Etcd",
    			cfg: &kubeadmapi.ClusterConfiguration{
    				KubernetesVersion: "v1.7.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

        // ensures that the number of invocations looks sane
        void assertInvariants(int expectedBytes) {
          // we should have seen as many bytes as the next multiple of chunk after expectedBytes - 1
          assertEquals(out.toByteArray().length, ceilToMultiple(expectedBytes, chunkSize));
          assertEquals(expectedBytes / chunkSize, processCalled);
          assertEquals(expectedBytes % chunkSize != 0, remainingCalled);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/util/internal/DisconnectableInputStreamTest.groovy

        }
    
    
        def assertReads(InputStream instr, String expected) {
            def expectedBytes = expected.bytes
            def buffer = new byte[expectedBytes.length]
            def remaining = expectedBytes.length
            while (remaining > 0) {
                def nread = instr.read(buffer, expectedBytes.length - remaining, remaining)
                assertTrue(nread > 0)
                remaining -= nread
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

        verifyNoMoreInteractions(hashFunction, hasher);
      }
    
      public void testRead_putByteArrayOutOfBound() throws Exception {
        byte[] buf = new byte[100];
        byte[] expectedBytes = buf.clone();
        System.arraycopy(testBytes, 0, expectedBytes, 0, testBytes.length);
    
        HashingInputStream in = new HashingInputStream(hashFunction, buffer);
    
        int numOfByteRead = in.read(buf, 0, 100);
        assertEquals(4, numOfByteRead);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 02 16:24:50 UTC 2020
    - 5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

        verifyNoMoreInteractions(hashFunction, hasher);
      }
    
      public void testRead_putByteArrayOutOfBound() throws Exception {
        byte[] buf = new byte[100];
        byte[] expectedBytes = buf.clone();
        System.arraycopy(testBytes, 0, expectedBytes, 0, testBytes.length);
    
        HashingInputStream in = new HashingInputStream(hashFunction, buffer);
    
        int numOfByteRead = in.read(buf, 0, 100);
        assertEquals(4, numOfByteRead);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 02 16:24:50 UTC 2020
    - 5K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober.go

    	if eic.writer != nil {
    		// only record the write error, do not cover the command run error
    		if p, err := eic.writer.Write(data); err != nil {
    			klog.ErrorS(err, "Unable to write all bytes from execInContainer", "expectedBytes", len(data), "actualBytes", p)
    		}
    	}
    	return err
    }
    
    func (eic *execInContainer) Wait() error {
    	return nil
    }
    
    func (eic *execInContainer) StdoutPipe() (io.ReadCloser, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top