Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,003 for Binary1 (0.21 sec)

  1. tools/go-stress-test

            -stress.time) TIME="${2}"; shift ;;
        esac
        shift
    done
    
    RESULTS=/tmp/test-results"$(dirname ${binary})"
    mkdir -p "${RESULTS}"
    code=0
    
    for testname in $("${binary}" -test.list "${RUN}" | grep '^Test'); do
      stress -f --max-time "${TIME:-10s}" --max-runs "${RUNS:-1000}" "${binary}" -test.run '^'"${testname}"'$' -test.count "${COUNT}" -test.v &> "${RESULTS}/${testname}"
      # shellcheck disable=SC2181
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. test/checkbce.go

    		useInt(a[i+51]) // ERROR "Found IsInBounds$"
    	}
    }
    
    func decode1(data []byte) (x uint64) {
    	for len(data) >= 32 {
    		x += binary.BigEndian.Uint64(data[:8])
    		x += binary.BigEndian.Uint64(data[8:16])
    		x += binary.BigEndian.Uint64(data[16:24])
    		x += binary.BigEndian.Uint64(data[24:32])
    		data = data[32:]
    	}
    	return x
    }
    
    func decode2(data []byte) (x uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/xor.go

    // license that can be found in the LICENSE file.
    
    package sha3
    
    import (
    	"crypto/subtle"
    	"encoding/binary"
    	"unsafe"
    
    	"golang.org/x/sys/cpu"
    )
    
    // xorIn xors the bytes in buf into the state.
    func xorIn(d *state, buf []byte) {
    	if cpu.IsBigEndian {
    		for i := 0; len(buf) >= 8; i++ {
    			a := binary.LittleEndian.Uint64(buf)
    			d.a[i] ^= a
    			buf = buf[8:]
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 854 bytes
    - Viewed (0)
  4. samples/addons/loki.yaml

          port: 9095
          targetPort: grpc
          protocol: TCP
      selector:
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/component: single-binary
    ---
    # Source: loki/templates/single-binary/statefulset.yaml
    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
        app.kubernetes.io/name: loki
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/internal/coverage/decodecounter/decodecounterfile.go

    package decodecounter
    
    import (
    	"encoding/binary"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/slicereader"
    	"internal/coverage/stringtab"
    	"io"
    	"os"
    	"strconv"
    	"unsafe"
    )
    
    // This file contains helpers for reading counter data files created
    // during the executions of a coverage-instrumented binary.
    
    type CounterDataReader struct {
    	stab     *stringtab.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/debug/buildinfo/buildinfo.go

    	ptrSize := int(data[14])
    	if data[15]&2 != 0 {
    		vers, data = decodeString(data[32:])
    		mod, data = decodeString(data)
    	} else {
    		bigEndian := data[15] != 0
    		var bo binary.ByteOrder
    		if bigEndian {
    			bo = binary.BigEndian
    		} else {
    			bo = binary.LittleEndian
    		}
    		var readPtr func([]byte) uint64
    		if ptrSize == 4 {
    			readPtr = func(b []byte) uint64 { return uint64(bo.Uint32(b)) }
    		} else if ptrSize == 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LibraryResolutionErrorMessageBuilder.java

     */
    
    package org.gradle.api.internal.resolve;
    
    import org.gradle.platform.base.Binary;
    
    public interface LibraryResolutionErrorMessageBuilder {
        String multipleCompatibleVariantsErrorMessage(String libraryName, Iterable<? extends Binary> binaries);
    
        String noCompatibleVariantErrorMessage(String libraryName, Iterable<? extends Binary> allBinaries);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 972 bytes
    - Viewed (0)
  8. src/cmd/objdump/main.go

    //
    // Usage:
    //
    //	go tool objdump [-s symregexp] binary
    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/ComponentBinariesModelRuleExtractorTest.groovy

            static void validTypeRule(ModelMap<SomeBinarySpec> binaries, SomeLibrary library) {
                binaries.create("${library.name}Binary", library)
            }
    
            @ComponentBinaries
            static void rawBinarySpec(ModelMap<BinarySpec> binaries, RawLibrary library) {
                binaries.create("${library.name}Binary", library)
            }
    
            @ComponentBinaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

         \--- org.apache.commons:commons-lang3:3.12.0
    ```
    
    == Switching to use binary dependency
    
    As long as the modules are available in a binary repository, the `multirepo-app` build will continue to work even if you don't have some modules available locally. In this case Gradle will use a binary dependency downloaded from a repository instead.
    
    === Preparing the binary repository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top