Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 695 for Binary1 (0.08 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            }
        }
    
        def linkToBinary(String command, TestFile binDir) {
            binDir.mkdirs()
            def binary = new File("/usr/bin/$command")
            if (!binary.exists()) {
                binary = new File("/bin/$command")
            }
            assert binary.exists()
            binDir.file(command).createLink(binary)
        }
    
        def "can define gradle user home via environment variable"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	if pe64 != 0 {
    		oh64.DataDirectory = f.dataDirectory
    	} else {
    		oh.DataDirectory = f.dataDirectory
    	}
    
    	if pe64 != 0 {
    		binary.Write(ctxt.Out, binary.LittleEndian, &oh64)
    	} else {
    		binary.Write(ctxt.Out, binary.LittleEndian, &oh)
    	}
    }
    
    var pefile peFile
    
    func Peinit(ctxt *Link) {
    	var l int
    
    	if ctxt.Arch.PtrSize == 8 {
    		// 64-bit architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    		return errorf("malformed elf file: %v", err)
    	}
    
    	var e binary.ByteOrder
    	switch elf.Data(hdrbuf[elf.EI_DATA]) {
    	case elf.ELFDATA2LSB:
    		e = binary.LittleEndian
    
    	case elf.ELFDATA2MSB:
    		e = binary.BigEndian
    
    	default:
    		return errorf("malformed elf file, unknown header")
    	}
    
    	hdr := new(elf.Header32)
    	binary.Read(bytes.NewReader(hdrbuf[:]), e, hdr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/internal/zstd/zstd.go

    	case 0:
    		r.frameSizeUnknown = true
    	case 1:
    		r.remainingFrameSize = uint64(fb[0])
    	case 2:
    		r.remainingFrameSize = 256 + uint64(binary.LittleEndian.Uint16(fb))
    	case 4:
    		r.remainingFrameSize = uint64(binary.LittleEndian.Uint32(fb))
    	case 8:
    		r.remainingFrameSize = binary.LittleEndian.Uint64(fb)
    	default:
    		panic("unreachable")
    	}
    
    	// RFC 3.1.1.1.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. Makefile

    install-race: checks build-debugging ## builds minio to $(PWD)
    	@echo "Building minio binary with -race to './minio'"
    	@GORACE=history_size=7 CGO_ENABLED=1 go build -tags kqueue,dev -race -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
    	@echo "Installing minio binary with -race to '$(GOPATH)/bin/minio'"
    	@mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            failure.assertHasCause("No shared library binary available for library 'hello' with [flavor: 'default', platform: 'one', buildType: 'debug']")
        }
    
        @Issue("GRADLE-3499")
        @ToBeFixedForConfigurationCache(because = ":components")
        def "can create a binary which name contains dots"() {
            when:
            buildFile << '''
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. cmd/bucket-metadata.go

    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case bucketMetadataFormat:
    	default:
    		return b, fmt.Errorf("loadBucketMetadata: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case bucketMetadataVersion:
    	default:
    		return b, fmt.Errorf("loadBucketMetadata: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/pcln.go

    		if dbg {
    			ctxt.Logf("%6x %6d %v\n", uint64(p.Pc), val, p)
    		}
    
    		if started {
    			pcdelta := (p.Pc - pc) / int64(ctxt.Arch.MinLC)
    			n := binary.PutUvarint(buf, uint64(pcdelta))
    			dst = append(dst, buf[:n]...)
    			pc = p.Pc
    		}
    
    		delta := val - oldval
    		n := binary.PutVarint(buf, int64(delta))
    		dst = append(dst, buf[:n]...)
    		oldval = val
    		started = true
    		val = valfunc(ctxt, func_, val, p, 1, arg)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/value.go

    	default:
    		return 0, typ, ErrUnexpectedType
    	}
    }
    
    // GetBinaryValue retrieves the binary value for the specified
    // value name associated with an open key k. It also returns the value's type.
    // If value does not exist, GetBinaryValue returns ErrNotExist.
    // If value is not BINARY, it will return the correct value
    // type and ErrUnexpectedType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top