Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for expectedBytes (0.2 sec)

  1. 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)
  2. 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)
  3. security/pkg/pki/ca/ca_test.go

    			CheckInterval: rootCertCheckInverval,
    		},
    	}
    
    	return NewIstioCA(caOpts)
    }
    
    func comparePem(expectedBytes []byte, file string) bool {
    	fileBytes, err := os.ReadFile(file)
    	if err != nil {
    		return false
    	}
    	if !bytes.Equal(fileBytes, expectedBytes) {
    		return false
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    				}
    				objBytes, err := unstructured.MarshalJSON()
    				if err != nil {
    					t.Fatalf("err marshaling json: %v", err)
    				}
    				expectedBytes, err := tc.expectedObj.MarshalJSON()
    				if err != nil {
    					t.Fatalf("err marshaling json: %v", err)
    				}
    				if bytes.Compare(objBytes, expectedBytes) != 0 {
    					t.Fatalf("expected obj: \n%v\n got obj: \n%v\n", tc.expectedObj, obj)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/bootstrap.min.js.map

    configTypes) {\n    for (const property in configTypes) {\n      if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n        const expectedTypes = configTypes[property]\n        const value         = config[property]\n        const valueType     = value && Util.isElement(value)\n          ? 'element' : toType(value)\n\n        if (!new RegExp(expectedTypes).test(valueType)) {\n          throw new Error(\n            `${componentName.toUpperCase()}: ` +\n            `Option \"${property}\" provided...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/bootstrap.min.js.map

    configTypes) {\n    for (const property in configTypes) {\n      if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n        const expectedTypes = configTypes[property]\n        const value         = config[property]\n        const valueType     = value && Util.isElement(value)\n          ? 'element' : toType(value)\n\n        if (!new RegExp(expectedTypes).test(valueType)) {\n          throw new Error(\n            `${componentName.toUpperCase()}: ` +\n            `Option \"${property}\" provided...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
Back to top