Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,094 for bBinary (0.15 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/ComponentRendererTest.groovy

            def component = Stub(VariantComponentSpec)
            component.binaries >> Mock(ModelMap) {
                values() >> [binary("cBinary"), binary("aBinary"), binary("bBinary"), binary("dBinary")]
            }
            binaryRenderer.render(_, _) >> { BinarySpec binary, TextReportBuilder output -> output.output.println("binary: $binary.name") }
    
            when:
            renderer.render(component, builder)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 09 22:26:58 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/vendor/golang.org/x/net/route/binary.go

    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package route
    
    // This file contains duplicates of encoding/binary package.
    //
    // This package is supposed to be used by the net package of standard
    // library. Therefore the package set used in the package must be the
    // same as net package.
    
    var (
    	littleEndian binaryLittleEndian
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/lif/binary.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build solaris
    
    package lif
    
    // This file contains duplicates of encoding/binary package.
    //
    // This package is supposed to be used by the net package of standard
    // library. Therefore the package set used in the package must be the
    // same as net package.
    
    var (
    	littleEndian binaryLittleEndian
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                <p>
                We check the binary compatibility by comparing the current code’s binary interfaces
                against THE LATEST VERSION WHICH IS RELEASED FROM RELEASE BRANCH (from `released-version.json` on this branch)
                AND LOWER THAN CURRENT BASE VERSION (from `version.txt` on this branch).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/link_matching_actionid.txt

    # Checks that an identical binary is built with -trimpath from the same
    # source files, with GOROOT in two different locations.
    # Verifies golang.org/issue/38989
    
    [short] skip
    [!symlink] skip
    
    # Symlink the compiler to a local path
    env GOROOT=$WORK/goroot1
    symlink $GOROOT -> $TESTGO_GOROOT
    
    # Set up fresh GOCACHE
    env GOCACHE=$WORK/gocache1
    mkdir $GOCACHE
    
    # Build a simple binary
    go build -o binary1 -trimpath -x main.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 14:18:11 UTC 2020
    - 835 bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

            failure.assertHasCause("""No buildable binaries found:
      - SampleBinary 'lib:notBuildableBinary1':
          - Binary notBuildableBinary1 has 'notBuildable' in the name
      - SampleBinary 'lib:notBuildableBinary2':
          - Binary notBuildableBinary2 has 'notBuildable' in the name""")
        }
    
        def "builds those component binaries that are buildable and skips those that are not" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/resources/META-INF/gradle-plugins/org.gradle.binary-base.properties

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 71 bytes
    - Viewed (0)
Back to top