Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,003 for Binary1 (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream_test.go

    		"":                        {Binary: true},
    		"binary.k8s.io":           {Binary: true},
    		"base64.binary.k8s.io":    {Binary: false},
    		"v1.binary.k8s.io":        {Binary: true},
    		"v1.base64.binary.k8s.io": {Binary: false},
    		"v2.binary.k8s.io":        {Binary: true},
    		"v2.base64.binary.k8s.io": {Binary: false},
    	})
    	data, err := readWebSocket(r, t, nil, "v2.base64.binary.k8s.io")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    	state[3] = 0x6b206574
    
    	state[4] = binary.LittleEndian.Uint32(key[0:4])
    	state[5] = binary.LittleEndian.Uint32(key[4:8])
    	state[6] = binary.LittleEndian.Uint32(key[8:12])
    	state[7] = binary.LittleEndian.Uint32(key[12:16])
    	state[8] = binary.LittleEndian.Uint32(key[16:20])
    	state[9] = binary.LittleEndian.Uint32(key[20:24])
    	state[10] = binary.LittleEndian.Uint32(key[24:28])
    	state[11] = binary.LittleEndian.Uint32(key[28:32])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/LinkageDetails.java

    import java.util.List;
    
    /**
     * Represents the linkage details for a binary.
     *
     * @since 4.10
     */
    public interface LinkageDetails {
        /**
         * Returns details of the link task for the binary. This is the task that should be run to produce the binary output, but may not necessarily be the task that links the binary. For example, the task may do some post processing of the binary.
         */
        Task getLinkTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/internal/zstd/xxhash.go

    		b = b[n:]
    		xh.v[0] = xh.round(xh.v[0], binary.LittleEndian.Uint64(xh.buf[:]))
    		xh.v[1] = xh.round(xh.v[1], binary.LittleEndian.Uint64(xh.buf[8:]))
    		xh.v[2] = xh.round(xh.v[2], binary.LittleEndian.Uint64(xh.buf[16:]))
    		xh.v[3] = xh.round(xh.v[3], binary.LittleEndian.Uint64(xh.buf[24:]))
    		xh.cnt = 0
    	}
    
    	for len(b) >= 32 {
    		xh.v[0] = xh.round(xh.v[0], binary.LittleEndian.Uint64(b))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	c.key = [8]uint32{
    		binary.LittleEndian.Uint32(key[0:4]),
    		binary.LittleEndian.Uint32(key[4:8]),
    		binary.LittleEndian.Uint32(key[8:12]),
    		binary.LittleEndian.Uint32(key[12:16]),
    		binary.LittleEndian.Uint32(key[16:20]),
    		binary.LittleEndian.Uint32(key[20:24]),
    		binary.LittleEndian.Uint32(key[24:28]),
    		binary.LittleEndian.Uint32(key[28:32]),
    	}
    	c.nonce = [3]uint32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

            given:
            compile.incoming >> incoming
    
            when:
            binary.compileModules.files
    
            then:
            1 * incoming.artifacts >> Stub(ArtifactCollection)
        }
    
        def "creates configurations for the binary" () {
            expect:
            binary.linkLibraries == link
            binary.runtimeLibraries == runtime
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppBinary.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.cpp;
    
    /**
     * Represents a C++ binary.
     *
     * @since 4.10
     */
    public interface CppBinary {
        /**
         * Returns the name of this binary. This is used to disambiguate the binaries of a project. Each binary has a unique name within its project. However, these names are not unique across multiple projects.
         */
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinaryTest.groovy

            binary.runtimeFiles.toString() == "runtime files for prebuilt static library 'lib:name'"
        }
    
        def "can set static library file"() {
            given:
            def file = createFile()
    
            when:
            binary.staticLibraryFile = file
    
            then:
            binary.staticLibraryFile == file
            binary.linkFiles.files == [file] as Set
    
            and:
            binary.runtimeFiles.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/README.md

    This wrapper solves for that by fixing the wrapper lib to have binary detection logic that will work in *all* contexts where we use it, rely fully on binary autodetection in all spots, properly handling `iptables/ip6tables` variants..
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/validation/vld.go

    // limitations under the License.
    
    package validation
    
    import (
    	"encoding/binary"
    	"unsafe"
    )
    
    var nativeByteOrder binary.ByteOrder
    
    func init() {
    	var x uint16 = 0x0102
    	lowerByte := *(*byte)(unsafe.Pointer(&x))
    	switch lowerByte {
    	case 0x01:
    		nativeByteOrder = binary.BigEndian
    	case 0x02:
    		nativeByteOrder = binary.LittleEndian
    	default:
    		panic("Could not determine native byte order.")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 03 17:28:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top