Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for bindat (0.37 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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        classPath: ClassPath,
        srcDir: File,
        binDir: File?,
        packageName: String = kotlinDslPackageName,
        format: AccessorFormat = AccessorFormats.default
    ) {
        val availableSchema = availableProjectSchemaFor(projectSchema, classPath)
        emitAccessorsFor(
            availableSchema,
            srcDir,
            binDir,
            OutputPackage(packageName),
            format
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:persistent-volume-binder
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:persistent-volume-binder
      subjects:
      - kind: ServiceAccount
        name: persistent-volume-binder
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint16LengthPrefixed(&binders) || binders.Empty() {
    				return false
    			}
    			for !binders.Empty() {
    				var binder []byte
    				if !readUint8LengthPrefixed(&binders, &binder) ||
    					len(binder) == 0 {
    					return false
    				}
    				m.pskBinders = append(m.pskBinders, binder)
    			}
    		default:
    			// Ignore unknown extensions.
    			continue
    		}
    
    		if !extData.Empty() {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

                '/usr/local/include'
            ]
            def mapped = [
                'C:\\cygwin\\usr\\include',
                'C:\\cygwin\\usr\\local\\include'
            ]
            def binDir = tmpDir.createDir('bin')
            def cygpath = binDir.createFile(OperatingSystem.current().getExecutableName('cygpath'))
    
            expect:
            runsCompiler(gccCygwin64, gccVerboseOutput('7.3', includes))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top