Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for 001e12 (0.07 sec)

  1. src/image/ycbcr_test.go

    	"image/color"
    	"testing"
    )
    
    func TestYCbCr(t *testing.T) {
    	rects := []Rectangle{
    		Rect(0, 0, 16, 16),
    		Rect(1, 0, 16, 16),
    		Rect(0, 1, 16, 16),
    		Rect(1, 1, 16, 16),
    		Rect(1, 1, 15, 16),
    		Rect(1, 1, 16, 15),
    		Rect(1, 1, 15, 15),
    		Rect(2, 3, 14, 15),
    		Rect(7, 0, 7, 16),
    		Rect(0, 8, 16, 8),
    		Rect(0, 0, 10, 11),
    		Rect(5, 6, 16, 16),
    		Rect(7, 7, 8, 8),
    		Rect(7, 8, 8, 9),
    		Rect(8, 7, 9, 8),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 00:14:16 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    import (
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    func TestIsDNS1123Label(t *testing.T) {
    	goodValues := []string{
    		"a", "ab", "abc", "a1", "a-1", "a--1--2--b",
    		"0", "01", "012", "1a", "1-a", "1--a--b--2",
    		strings.Repeat("a", 63),
    	}
    	for _, val := range goodValues {
    		if msgs := IsDNS1123Label(val); len(msgs) != 0 {
    			t.Errorf("expected true for '%s': %v", val, msgs)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/image/geom_test.go

    				p := Point{x, y}
    				if !p.In(g) {
    					return fmt.Errorf("p=%s, p.In(%s): got false, want true", p, g)
    				}
    			}
    		}
    		return nil
    	}
    
    	rects := []Rectangle{
    		Rect(0, 0, 10, 10),
    		Rect(10, 0, 20, 10),
    		Rect(1, 2, 3, 4),
    		Rect(4, 6, 10, 10),
    		Rect(2, 3, 12, 5),
    		Rect(-1, -2, 0, 0),
    		Rect(-1, -2, 4, 6),
    		Rect(-10, -20, 30, 40),
    		Rect(8, 8, 8, 8),
    		Rect(88, 88, 88, 88),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant_4bit.mlir

    // RUN: tf-opt -tf-to-quant %s | FileCheck %s
    
    // CHECK-LABEL: fakeQuantPerChannelForActivation
    func.func @fakeQuantPerChannelForActivation(%arg0: tensor<8x3xf32>) -> (tensor<8x3xf32>) {
      %arg1 = arith.constant dense<[0.0, -1.0, 1.0]> : tensor<3xf32>
      %arg2 = arith.constant dense<[15.0, 14.0, 16.0]> : tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{"dual IPv4 IPv6", "2001:db8::/48,10.0.0.16/12", nil, true},
    		{"dual IPv6 IPv4", "2001:db8::/48,10.0.0.16/12", nil, true},
    	}
    	for _, rt := range tests {
    		cfg := &kubeadmapi.ClusterConfiguration{
    			ControllerManager: kubeadmapi.ControlPlaneComponent{
    				ExtraArgs: rt.cmExtraArgs,
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner_test.go

    		{FloatLit, "0b.", "0b.", "invalid radix point in binary literal"},
    		{FloatLit, "0b.1", "0b.1", "invalid radix point in binary literal"},
    		{FloatLit, "0b1.0", "0b1.0", "invalid radix point in binary literal"},
    		{FloatLit, "0b1e10", "0b1e10", "'e' exponent requires decimal mantissa"},
    		{FloatLit, "0b1P-1", "0b1P-1", "'P' exponent requires hexadecimal mantissa"},
    
    		{ImagLit, "0b10i", "0b10i", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant.mlir

    // RUN: tf-opt -tf-to-quant %s | FileCheck %s
    
    // CHECK-LABEL: fakeQuantPerChannelForActivation
    func.func @fakeQuantPerChannelForActivation(%arg0: tensor<8x3xf32>) -> (tensor<8x3xf32>) {
      %arg1 = arith.constant dense<[0.0, -1.0, 1.0]> : tensor<3xf32>
      %arg2 = arith.constant dense<[255.0, 254.0, 256.0]> : tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/text/scanner/scanner_test.go

    		{Float, "0b.", "0b.", "invalid radix point in binary literal"},
    		{Float, "0b.1", "0b.1", "invalid radix point in binary literal"},
    		{Float, "0b1.0", "0b1.0", "invalid radix point in binary literal"},
    		{Float, "0b1e10", "0b1e10", "'e' exponent requires decimal mantissa"},
    		{Float, "0b1P-1", "0b1P-1", "'P' exponent requires hexadecimal mantissa"},
    
    		// octals
    		{Int, "0o0", "0o0", ""},
    		{Int, "0o1234", "0o1234", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  9. src/math/big/natconv_test.go

    	{"0.", 0, false, nil, 10, 1, nil, '.'},
    	{"0.", 10, true, nil, 10, 0, nil, 0},
    	{"0.1.2", 10, true, nat{1}, 10, -1, nil, '.'},
    	{".000", 10, true, nil, 10, -3, nil, 0},
    	{"12.3", 10, true, nat{123}, 10, -1, nil, 0},
    	{"012.345", 10, true, nat{12345}, 10, -3, nil, 0},
    	{"0.1", 0, true, nat{1}, 10, -1, nil, 0},
    	{"0.1", 2, true, nat{1}, 2, -1, nil, 0},
    	{"0.12", 2, true, nat{1}, 2, -1, nil, '2'},
    	{"0b0.1", 0, true, nat{1}, 2, -1, nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  10. src/go/scanner/scanner_test.go

    		{token.FLOAT, "0b.1", "0b.1", "invalid radix point in binary literal"},
    		{token.FLOAT, "0b1.0", "0b1.0", "invalid radix point in binary literal"},
    		{token.FLOAT, "0b1e10", "0b1e10", "'e' exponent requires decimal mantissa"},
    		{token.FLOAT, "0b1P-1", "0b1P-1", "'P' exponent requires hexadecimal mantissa"},
    
    		{token.IMAG, "0b10i", "0b10i", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top