Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,003 for Binary1 (0.11 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            def spec = Stub(Spec)
            def binary1 = Stub(SwiftBinary)
            def binary2 = Stub(SwiftSharedLibrary)
            def binary3 = Stub(SwiftSharedLibrary)
    
            spec.isSatisfiedBy(binary2) >> true
    
            container.add(binary1)
            container.add(binary2)
            container.add(binary3)
    
            expect:
            def p = container.get(SwiftSharedLibrary, spec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/link_matching_actionid.txt

    env GOROOT=$WORK/goroot2
    symlink $GOROOT -> $TESTGO_GOROOT
    
    env GOCACHE=$WORK/gocache2
    mkdir $GOCACHE
    
    go build -o binary2 -trimpath -x main.go
    
    # Check that the binaries match exactly
    go tool buildid binary1
    cp stdout buildid1
    go tool buildid binary2
    cp stdout buildid2
    cmp buildid1 buildid2
    
    
    -- main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 14:18:11 UTC 2020
    - 835 bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/ComponentReportRendererTest.groovy

        def "renders additional binaries"() {
            def binary1 = Stub(BinarySpec)
            def binary2 = Stub(BinarySpec)
            def component = Stub(ComponentSpec) {
                getBinaries() >> Stub(ModelMap) {
                    values() >> [binary1]
                }
            }
            binaryRenderer.render(binary2, _) >> { BinarySpec binary, TextReportBuilder builder -> builder.output.println("<binary>") }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

        }
    
        def "assemble task builds outputs of development binary of main component"() {
            def binary1 = binary('debug', 'debugInstall')
            def binary2 = binary('release', 'releaseInstall')
            def binaries = new DefaultBinaryCollection(SoftwareComponent)
            binaries.add(binary1)
            binaries.add(binary2)
            def component = Stub(TestComponent)
            component.binaries >> binaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

        }
    
        def "check task does not build binaries" () {
            withLibBinaries("buildableBinary1", "notBuildableBinary", "buildableBinary2")
            withStandaloneBinaries("binary1", "binary2")
    
            when:
            run "check"
    
            then:
            result.assertTasksExecuted(":check")
        }
    
        def withLibBinaries(String... binaries) {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. pkg/wasm/cache_test.go

    	gotNumRequest := 0
    	binary1 := append(wasmHeader, 1)
    	binary2 := append(wasmHeader, 2)
    
    	// Create a test server which returns 0 for the first two calls, and returns 1 for the following calls.
    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if gotNumRequest <= 1 {
    			w.Write(binary1)
    		} else {
    			w.Write(binary2)
    		}
    		gotNumRequest++
    	}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.EXPAND_SZ, Name: "ExpString7", Value: "%PATH%;."},
    	{Type: registry.BINARY, Name: "Binary1", Value: []byte{}},
    	{Type: registry.BINARY, Name: "Binary2", Value: []byte{1, 2, 3}},
    	{Type: registry.BINARY, Name: "Binary3", Value: []byte{3, 2, 1, 0, 1, 2, 3}},
    	{Type: registry.DWORD, Name: "Dword1", Value: uint64(0)},
    	{Type: registry.DWORD, Name: "Dword2", Value: uint64(1)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Binary.java

     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A physical binary artifact, which can run on a particular platform or runtime.
     */
    @Incubating
    public interface Binary {
        /**
         * Returns a human-consumable display name for this binary.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 926 bytes
    - Viewed (0)
  9. src/encoding/binary/binary.go

    	)
    }
    
    func (bigEndian) String() string { return "BigEndian" }
    
    func (bigEndian) GoString() string { return "binary.BigEndian" }
    
    func (nativeEndian) String() string { return "NativeEndian" }
    
    func (nativeEndian) GoString() string { return "binary.NativeEndian" }
    
    // Read reads structured binary data from r into data.
    // Data must be a pointer to a fixed-size value or a slice
    // of fixed-size values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pkg/test/envoy/binary.go

    	"regexp"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    )
    
    var envoyFileNamePattern = regexp.MustCompile("^envoy$|^envoy-[a-f0-9]+$|^envoy-debug-[a-f0-9]+$")
    
    // FindBinary searches for an Envoy debug binary under TARGET_OUT. If the TARGET_OUT environment variable
    // is not set, the default location under GOPATH is assumed. If TARGET_OUT contains multiple debug binaries,
    // the most recent file is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 22:00:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top