Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/unicode/letter_test.go

    				}
    			}
    		}
    		bbinary := func(b *testing.B) {
    			tab := tab
    			max := n*5 + 20
    			for i := 0; i < b.N; i++ {
    				for j := 0; j <= max; j++ {
    					binary(tab, uint16(j))
    				}
    			}
    		}
    		bmlinear := testing.Benchmark(blinear)
    		bmbinary := testing.Benchmark(bbinary)
    		fmt.Printf("n=%d: linear=%d binary=%d\n", n, bmlinear.NsPerOp(), bmbinary.NsPerOp())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

        void tasks(ModelMap<Task> tasks, BinaryContainer binaries) {
            tasks.create("verify") {
                doLast {
                    binaries.each { binary ->
                        println "Binary sources: ${binary.sources.values()}"
                        println "Binary inputs: ${binary.inputs}"
                    }
                }
            }
        }
    }
    
    apply plugin: Dump
    
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top