Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,043 for bin2 (0.08 sec)

  1. pkg/scheduler/profile/profile_test.go

    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    var fakeRegistry = frameworkruntime.Registry{
    	"QueueSort": newFakePlugin("QueueSort"),
    	"Bind1":     newFakePlugin("Bind1"),
    	"Bind2":     newFakePlugin("Bind2"),
    	"Another":   newFakePlugin("Another"),
    }
    
    func TestNewMap(t *testing.T) {
    	cases := []struct {
    		name    string
    		cfgs    []config.KubeSchedulerProfile
    		wantErr string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/CachingLibraryBinaryLocatorTest.groovy

            def lib = new LibraryIdentifier("project", "lib")
            def bins = Stub(DomainObjectSet)
    
            when:
            def bins1 = locator.getBinaries(lib)
            def bins2 = locator.getBinaries(lib)
    
            then:
            bins1.is(bins)
            bins2.is(bins)
    
            and:
            1 * target.getBinaries(lib) >> bins
            0 * target._
        }
    
        def "caches null result"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/pass-random2.bin

    Joe Tsai <******@****.***> 1456950113 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 02:53:34 UTC 2016
    - 65 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gopath_install.txt

    env GO111MODULE=off
    [short] skip
    
    # Without $GOBIN set, binaries should be installed into the GOPATH bin directory.
    env GOBIN=
    rm $GOPATH/bin/go-cmd-test$GOEXE
    go install go-cmd-test
    exists $GOPATH/bin/go-cmd-test$GOEXE
    
    # With $GOBIN set, binaries should be installed to $GOBIN.
    env GOBIN=$WORK/bin1
    mkdir -p $GOBIN
    go install go-cmd-test
    exists $GOBIN/go-cmd-test$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. test/ken/divmod.go

    		panic("fail")
    	}
    	if in2/id2 != q4 || in2%id2 != r4 {
    		println("int-4", in2, id2, in2/id2, in2%id2)
    		panic("fail")
    	}
    
    	/* int8 */
    	var bn1 int8 = +5
    	var bn2 int8 = -5
    	var bd1 int8 = +3
    	var bd2 int8 = -3
    
    	if bn1/bd1 != q1 || bn1%bd1 != r1 {
    		println("int8-1", bn1, bd1, bn1/bd1, bn1%bd1)
    		panic("fail")
    	}
    	if bn2/bd1 != q2 || bn2%bd1 != r2 {
    		println("int8-2", bn2, bd1, bn2/bd1, bn2%bd1)
    		panic("fail")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    
    // Calculates the bin width from the range and expected number of bins. The
    // bin width is formalized to the form of 2^n. As a consequence, the actual
    // number of bins might be smaller than the given `num_bins`.
    inline float CalculateBinWidth(const float min_value, const float max_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/assemblies/common-bin.xml

    			<directory>src/main/assemblies/files</directory>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<includes>
    				<include>*.exe</include>
    			</includes>
    		</fileSet>
    		<fileSet>
    			<filtered>true</filtered>
    			<directory>src/main/assemblies/files</directory>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<fileMode>0755</fileMode>
    			<directoryMode>0755</directoryMode>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. src/main/assemblies/zip-bin.xml

    <?xml version="1.0"?>
    <assembly>
    	<id>zip</id>
    	<formats>
    		<format>zip</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 291 bytes
    - Viewed (0)
  9. src/compress/bzip2/testdata/pass-random1.bin

    Joe Tsai <******@****.***> 1456950113 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 02:53:34 UTC 2016
    - 1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

      }
    
      message HistogramStatistics {
        // width of bin
        float bin_width = 1;
    
        // lower_bound is the first bin's min value.
        // lower_bound and bin_width can be used to restore the histogram.
        float lower_bound = 2;
    
        // hist_freq[i] saves frequency of range [bins[i], bins[i + 1]).
        // bins[i]     = lower_bound + bin_width * i
        // bins[i + 1] = lower_bound + bin_width * (i + 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top