Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 484 for Binary (0.13 sec)

  1. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
                                "format": "binary",
                            },
                            "token": {"title": "Token", "type": "string"},
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-tooling-models/build.gradle.kts

    description = "Declarative DSL Tooling Models for IDEs"
    
    dependencies {
        compileOnly(project(":tooling-api"))
    
        compileOnly(libs.kotlinStdlib) {
            because(
                "used by the compiler, but there should be no binary dependency on the stdlib; " +
                    "this project should be usable by Kotlin-less consumers, see: `NoKotlinStdlibBinaryDependencyTest`"
            )
        }
    }
    
    tasks.withType<KotlinCompile>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_update_uuid.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ld
    
    // This file provides helper functions for updating/rewriting the UUID
    // load command within a Go go binary generated on Darwin using
    // external linking. Why is it necessary to update the UUID load
    // command? See issue #64947 for more detail, but the short answer is
    // that newer versions of the Macos toolchain (the newer linker in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf_test.go

    			} else {
    				sprog := strings.TrimSpace(string(out))
    				stripExecs = append(stripExecs, sprog)
    			}
    		}
    	}
    
    	// Run strip on our Go PIE binary, making sure that the strip
    	// succeeds and we get no output from strip, then run the resulting
    	// stripped binary.
    	for k, sprog := range stripExecs {
    		if _, err := os.Stat(sprog); err != nil {
    			sp1, err := exec.LookPath(sprog)
    			if err != nil || sp1 == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

      # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
      # Also, it is required that DisableKubeletCloudCredentialProviders
      # feature gate is set to true for kubelet to use external credential provider.
      if [[ "${ENABLE_AUTH_PROVIDER_GCP:-}" == "true" ]]; then
        # Install out-of-tree auth-provider-gcp binary to enable kubelet to dynamically
        # retrieve credentials for a container image registry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tfcompile.bzl

            it is expected to be in the proto binary format.
          config: File containing tensorflow.tf2xla.Config proto.  If the file ends
            in '.pbtxt' it is expected to be in the human-readable proto text
            format, otherwise it is expected to be in the proto binary format.
          debug_info: Debug info to include in the output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. src/internal/trace/internal/testgen/go122/trace.go

    	// Compute the size of the event and add it to the batch.
    	b.size += 1 // One byte for the event header.
    	var buf [binary.MaxVarintLen64]byte
    	for _, arg := range args {
    		b.size += uint64(binary.PutUvarint(buf[:], arg))
    	}
    	if len(data) != 0 {
    		b.size += uint64(binary.PutUvarint(buf[:], uint64(len(data))))
    		b.size += uint64(len(data))
    	}
    
    	// Add the event.
    	b.events = append(b.events, ev)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. cni/pkg/install/install.go

    	// Watch our specific binaries, in each configured binary dir.
    	// We may or may not be the only CNI plugin in play, and if we are not
    	// we shouldn't fire events for binaries that are not ours.
    	var binPaths []string
    	for _, bindir := range in.cfg.CNIBinTargetDirs {
    		for _, binary := range installedBinFiles.UnsortedList() {
    			binPaths = append(binPaths, filepath.Join(bindir, binary))
    		}
    	}
    	targets := append(
    		binPaths,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

            val implementationHash = read() as HashCode?
            val originalType = readClass()
            val binary = readBinary()
            return IsolatedJavaSerializedValueSnapshot(implementationHash, binary, originalType)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. cmd/tier.go

    func (config *TierConfigMgr) Bytes() ([]byte, error) {
    	config.RLock()
    	defer config.RUnlock()
    	data := make([]byte, 4, config.Msgsize()+4)
    
    	// Initialize the header.
    	binary.LittleEndian.PutUint16(data[0:2], tierConfigFormat)
    	binary.LittleEndian.PutUint16(data[2:4], tierConfigVersion)
    
    	// Marshal the tier config
    	return config.MarshalMsg(data)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top