Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,094 for Binary1 (0.61 sec)

  1. test/inline_endian.go

    package foo
    
    import (
    	"encoding/binary"
    )
    
    // Ensure that simple encoding/binary functions are cheap enough
    // that functions using them can also be inlined (issue 42958).
    func endian(b []byte) uint64 { // ERROR "can inline endian" "b does not escape"
    	return binary.LittleEndian.Uint64(b) + binary.BigEndian.Uint64(b) // ERROR "inlining call to binary.littleEndian.Uint64" "inlining call to binary.bigEndian.Uint64"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. .gitattributes

    *.sh            text eol=lf
    
    
    # These files are binary and should be left untouched
    # (binary is a macro for -text -diff)
    *.a             binary
    *.lib           binary
    *.icns          binary
    *.png           binary
    *.jpg           binary
    *.jpeg          binary
    *.gif           binary
    *.ico           binary
    *.mov           binary
    *.mp4           binary
    *.mp3           binary
    *.flv           binary
    *.fla           binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

            given:
            def binary = sharedLibrary
    
            when:
            binary.sharedLibraryFile = sharedLibraryFile
            binary.sharedLibraryLinkFile = sharedLibraryLinkFile
    
            then:
            binary.sharedLibraryFile == sharedLibraryFile
            binary.sharedLibraryLinkFile == sharedLibraryLinkFile
        }
    
        def "can convert binary to a native dependency"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_trimpath.txt

    stdout 'binary contains module root: false'
    stdout 'binary contains an empty GOROOT'
    
    # A binary from an external module built with -trimpath should not contain
    # the current workspace or GOROOT.
    go get rsc.io/fortune
    go install -trimpath rsc.io/fortune
    exec $WORK/paths-a.exe $GOPATH/bin/fortune$GOEXE
    stdout 'binary contains module root: false'
    stdout 'binary contains an empty GOROOT'
    go mod edit -droprequire rsc.io/fortune
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeBinaryRulesTest.groovy

            then:
            1 * binary.setStaticLibraryFile(tmpDir.testDirectory.file("libs/comp_name/static_library_name"))
        }
    
        private <T extends NativeBinarySpecInternal> T initBinary(Class<T> type, Class<? extends NativeComponentSpec> componentType) {
            def binary = Mock(type)
            def component = Stub(componentType)
            binary.component >> component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

         */
        @Internal
        FileCollection getSourceFiles();
    
        /**
         * Returns the resource files associated with this binary
         */
        @Internal
        FileCollection getResourceFiles();
    
        /**
         * Returns the header files associated with this binary
         */
        @Internal
        FileCollection getHeaderFiles();
    
        /**
         * Returns whether or not this binary represents an executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. hack/grab-profiles.sh

    function grab_profiles_from_component {
      local requested_profiles=$1
      local mem_pprof_flags=$2
      local binary=$3
      local tunnel_port=$4
      local path=$5
      local output_prefix=$6
      local timestamp=$7
    
      echo "binary: $binary"
    
      for profile in ${requested_profiles}; do
        case ${profile} in
          cpu)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftLibraryTest.groovy

            expect:
            def binary = library.addSharedLibrary(identity, true, targetPlatform, toolChain, platformToolProvider)
            binary.name == "mainTest"
            binary.debuggable
            !binary.optimized
            binary.testable
            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
            binary.platformToolProvider == platformToolProvider
    
            library.binaries.realizeNow()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

            and:
            binary.linkFiles.files == [binary.staticLibraryFile] as Set
            binary.linkFiles.buildDependencies.getDependencies(Stub(Task)) == [lifecycleTask] as Set
            binary.linkFiles.toString() == "Link files for static library 'main:staticLibrary'"
    
            and:
            binary.runtimeFiles.files.isEmpty()
            binary.runtimeFiles.buildDependencies.getDependencies(Stub(Task)) == [] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. internal/s3select/genmessage.go

    	totalLength := totalByteLength(headerLength, payloadLength)
    
    	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)
    	message := buf.Bytes()
    	binary.Write(buf, binary.BigEndian, crc32.ChecksumIEEE(message))
    
    	fmt.Println(buf.Bytes())
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 4.4K bytes
    - Viewed (0)
Back to top