Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for nobytes (0.14 sec)

  1. tests/fuzz/analyzer_fuzzer.go

    	// Gather test files
    	for i := 0; i < maxFiles; i++ {
    		name, err := f.GetString()
    		if err != nil {
    			return files, err
    		}
    		rBytes, err := f.GetBytes()
    		if err != nil {
    			return files, err
    		}
    		r := bytes.NewReader(rBytes)
    		files = append(files, local.ReaderSource{Name: name, Reader: r})
    	}
    	return files, nil
    }
    
    // runAnalyzer runs the analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_arm64.s

    	VLD1	(R2), [V28.S4, V29.S4, V30.S4, V31.S4]     //load 64*4bytes K constant(K0-K63)
    
    blockloop:
    
    	VLD1.P	16(R1), [V4.B16]                            // load 16bytes message
    	VLD1.P	16(R1), [V5.B16]                            // load 16bytes message
    	VLD1.P	16(R1), [V6.B16]                            // load 16bytes message
    	VLD1.P	16(R1), [V7.B16]                            // load 16bytes message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    	got = bytes.TrimSpace(got)
    
    	// Make sure that there were exactly 100 bytes written to the corpus entry
    	prefix := []byte("[]byte(")
    	i := bytes.Index(got, prefix)
    	gotBytes := got[i+len(prefix) : len(got)-1]
    	s, err := strconv.Unquote(string(gotBytes))
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if want, got := numBytes, len(s); want != got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

            "abbaabba"                         | ByteArrayBackedHashCode | 4      | 0xBAABBAAB | toBytes([0xAB, 0xBA] * 2)
            "abbaabbaabba"                     | ByteArrayBackedHashCode | 6      | 0xBAABBAAB | toBytes([0xAB, 0xBA] * 3)
            "aB" * 255                         | ByteArrayBackedHashCode | 255    | 0xABABABAB | toBytes([0xAB] * 255)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            def serializer = registry.build(Number)
    
            expect:
            serialize(123L, serializer) == 123L
            serialize(123, serializer) == 123
            toBytes(123L, serializer).length == toBytes(123L, longSerializer).length + 1
        }
    
        def "does not write type tag when there is only one matching registered type"() {
            given:
            def registry = new DefaultSerializerRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/testFixtures/groovy/org/gradle/internal/serialize/SerializerSpec.groovy

            return fromBytes(bytes, serializer)
        }
    
        <T> T fromBytes(byte[] bytes, Serializer<T> serializer) {
            return serializer.read(getDecoder().newInstance(new ByteArrayInputStream(bytes)))
        }
    
        <T> byte[] toBytes(T value, Serializer<T> serializer) {
            def bytes = new ByteArrayOutputStream()
            def encoder = getEncoder().newInstance(bytes)
            serializer.write(encoder, value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Bytes.java

    /**
     * Static utility methods pertaining to {@code byte} primitives, that are not already found in
     * either {@link Byte} or {@link Arrays}, <i>and interpret bytes as neither signed nor unsigned</i>.
     * The methods which specifically treat bytes as signed or unsigned are found in {@link SignedBytes}
     * and {@link UnsignedBytes}.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. helm/minio/templates/NOTES.txt

    Daryl White <******@****.***> 1664425725 -0500
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonSerializerTest.groovy

        }
    
        def "multiple writes of the same custom reason"() {
            when:
            def single = toBytes(withReason("hello"), serializer)
            def withDuplicate = toBytes(withReasons("hello", "hello"), serializer)
            def withoutDuplicate = toBytes(withReasons("hello", "other"), serializer)
    
            then:
            single.length < withDuplicate.length
            withDuplicate.length < 2*single.length
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/compress/flate/huffman_bit_writer.go

    		n := w.nbytes
    		bytes := w.bytes[n : n+6]
    		bytes[0] = byte(bits)
    		bytes[1] = byte(bits >> 8)
    		bytes[2] = byte(bits >> 16)
    		bytes[3] = byte(bits >> 24)
    		bytes[4] = byte(bits >> 32)
    		bytes[5] = byte(bits >> 40)
    		n += 6
    		if n >= bufferFlushSize {
    			w.write(w.bytes[:n])
    			n = 0
    		}
    		w.nbytes = n
    	}
    }
    
    func (w *huffmanBitWriter) writeBytes(bytes []byte) {
    	if w.err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
Back to top