Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 716 for bBinary (0.12 sec)

  1. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    encode(byte[]); public static String encode(String); public static String encode(String, String) throws java.io.UnsupportedEncodingE; public static byte[] decode(byte[]); static void <clinit>(); } org/apache/commons/codec/binary/Base64.class package org.apache.commons.codec.binary; public synchronized class Base64 implements org.apache.commons.codec.BinaryEncoder, org.apache.commons.codec.BinaryDecoder { static final int CHUNK_SIZE = 76; static final byte[] CHUNK_SEPARATOR; static final int BASELENGTH...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
  2. src/internal/pkgbits/decoder.go

    	r := strings.NewReader(input)
    
    	assert(binary.Read(r, binary.LittleEndian, &pr.version) == nil)
    
    	switch pr.version {
    	default:
    		panic(fmt.Errorf("unsupported version: %v", pr.version))
    	case 0:
    		// no flags
    	case 1:
    		var flags uint32
    		assert(binary.Read(r, binary.LittleEndian, &flags) == nil)
    		pr.sync = flags&flagSyncMarkers != 0
    	}
    
    	assert(binary.Read(r, binary.LittleEndian, pr.elemEndsEnds[:]) == nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		names = append(names, osxNames...)
    	}
    	for _, name := range names {
    		if binary, found := findExe(name, paths); found {
    			return binary, true
    		}
    	}
    	return "", false
    }
    
    // isLLVMObjdump accepts a string with path to an objdump binary,
    // and returns a boolean indicating if the given binary is an LLVM
    // objdump binary of an acceptable version.
    func isLLVMObjdump(output string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. internal/s3select/message.go

    	buf := new(bytes.Buffer)
    	binary.Write(buf, binary.BigEndian, uint32(totalLength))
    	binary.Write(buf, binary.BigEndian, uint32(headerLength))
    	prelude := buf.Bytes()
    	binary.Write(buf, binary.BigEndian, crc32.ChecksumIEEE(prelude))
    	buf.Write(header)
    	if payload != nil {
    		buf.Write(payload)
    	}
    	message := buf.Bytes()
    	binary.Write(buf, binary.BigEndian, crc32.ChecksumIEEE(message))
    
    	return buf.Bytes()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                        binary.data = "my binary"
                    }
                    @Mutate
                    void mutateMyBinarySource(@Path("components.myComponent.binaries.myBinary.sources.myBinarySource") $sourceType binarySourceSet) {
                        binarySourceSet.data = "my binary sources"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            install.assertInstalled()
            install.exec().out == app.alternateLibraryOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles binary when header file changes"() {
            given:
            run "installMainExecutable"
            maybeWait()
    
            when:
            headerFile << """
                int unused();
    """
            run "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftLibraryPlugin.java

                }
    
                private Stream<SwiftBinary> getDebugSharedStream() {
                    return getDebugStream().filter(SwiftSharedLibrary.class::isInstance);
                }
    
                private Stream<SwiftBinary> getDebugSharedHostStream() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/debug/buildinfo/buildinfo_test.go

    	buf.Write([]byte{'M', 'Z'})
    	buf.Write(bytes.Repeat([]byte{0}, 0x3c-2))
    	// At location 0x3c, the stub has the file offset to the PE signature.
    	binary.Write(&buf, binary.LittleEndian, int32(0x3c+4))
    
    	buf.Write([]byte{'P', 'E', 0, 0})
    
    	binary.Write(&buf, binary.LittleEndian, pe.FileHeader{NumberOfSections: 1})
    
    	sh := pe.SectionHeader32{
    		Name:             [8]uint8{'t', 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

                    @Mutate
                    void addPrintSourceDisplayNameTask(ModelMap<Task> tasks, @Path("testSuites.main.binaries.main") CustomTestBinary binary) {
                        tasks.create("printBinaryData") {
                            doLast {
                                println "binary data: ${binary.data}"
                            }
                        }
                    }
                }
    
                apply type: TaskRules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. internal/hash/checksum.go

    	res := make(map[string]string, 1)
    	for len(b) > 0 {
    		t, n := binary.Uvarint(b)
    		if n < 0 {
    			break
    		}
    		b = b[n:]
    
    		typ := ChecksumType(t)
    		length := typ.RawByteLen()
    		if length == 0 || len(b) < length {
    			break
    		}
    		cs := base64.StdEncoding.EncodeToString(b[:length])
    		b = b[length:]
    		if typ.Is(ChecksumMultipart) {
    			t, n := binary.Uvarint(b)
    			if n < 0 {
    				break
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top