Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for bindat (0.13 sec)

  1. src/crypto/internal/boring/README.md

    syso/goboringcrypto_linux_arm64.syso is built with:
    
    	GOARCH=arm64 ./build.sh
    
    Both run on an x86 Debian Linux system using Docker.
    For the arm64 build to run on an x86 system, you need
    
    	apt-get install qemu-user-static qemu-binfmt-support
    
    to allow the x86 kernel to run arm64 binaries via QEMU.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/internal/zstd/xxhash_test.go

    		f.Add([]byte(test.data))
    	}
    	f.Add(bytes.Repeat([]byte("abcdefghijklmnop"), 256))
    	var buf bytes.Buffer
    	for i := 0; i < 256; i++ {
    		buf.WriteByte(byte(i))
    	}
    	f.Add(bytes.Repeat(buf.Bytes(), 64))
    	f.Add(bigData(f))
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		cmd := exec.Command(xxhsum, "-H64")
    		cmd.Stdin = bytes.NewReader(b)
    		var hhsumHash bytes.Buffer
    		cmd.Stdout = &hhsumHash
    		if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:34:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/internal/zstd/fuzz_test.go

    	f.Add(bytes.Repeat([]byte("abcdefghijklmnop"), 256))
    	var buf bytes.Buffer
    	for i := 0; i < 256; i++ {
    		buf.WriteByte(byte(i))
    	}
    	f.Add(bytes.Repeat(buf.Bytes(), 64))
    	f.Add(bigData(f))
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		cmd := exec.Command(zstd, "-z")
    		cmd.Stdin = bytes.NewReader(b)
    		var compressed bytes.Buffer
    		cmd.Stdout = &compressed
    		cmd.Stderr = os.Stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_libinit.c

    static pthread_cond_t runtime_init_cond = PTHREAD_COND_INITIALIZER;
    static pthread_mutex_t runtime_init_mu = PTHREAD_MUTEX_INITIALIZER;
    static int runtime_init_done;
    
    // pthread_g is a pthread specific key, for storing the g that binded to the C thread.
    // The registered pthread_key_destructor will dropm, when the pthread-specified value g is not NULL,
    // while a C thread is exiting.
    static pthread_key_t pthread_g;
    static void pthread_key_destructor(void* g);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            }
            DefaultNativePlatform targetPlatform = new DefaultNativePlatform("default");
            def visualCpp = vsInstall.visualCpp.forPlatform(targetPlatform)
            vcBin = visualCpp.binDir
            vcPath = visualCpp.path.join(';')
        }
    
        static @Nullable VisualStudioInstall findVisualStudio() {
            return VisualStudioLocatorTestFixture.visualStudioLocator.locateComponent(null).component
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/names/controller_names.go

    	NodeLifecycleController                      = "node-lifecycle-controller"
    	TaintEvictionController                      = "taint-eviction-controller"
    	PersistentVolumeBinderController             = "persistentvolume-binder-controller"
    	PersistentVolumeAttachDetachController       = "persistentvolume-attach-detach-controller"
    	PersistentVolumeExpanderController           = "persistentvolume-expander-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/crypto/tls/key_schedule.go

    	"golang.org/x/crypto/sha3"
    )
    
    // This file contains the functions necessary to compute the TLS 1.3 key
    // schedule. See RFC 8446, Section 7.
    
    const (
    	resumptionBinderLabel         = "res binder"
    	clientEarlyTrafficLabel       = "c e traffic"
    	clientHandshakeTrafficLabel   = "c hs traffic"
    	serverHandshakeTrafficLabel   = "s hs traffic"
    	clientApplicationTrafficLabel = "c ap traffic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    	MOVD $·Unshare(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_LinkatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Linkat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_MkdiratAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Mkdirat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top