Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for 908123 (0.14 sec)

  1. src/image/png/testdata/pngsuite/ftp0n3p08.sng

        (  0,  0,100)     # rgb = (0x00,0x00,0x64)
        ( 78, 78,107)     # rgb = (0x4e,0x4e,0x6b)
        (207,207,207)     # rgb = (0xcf,0xcf,0xcf) grey81
        (221,221,224)     # rgb = (0xdd,0xdd,0xe0)
        (  0,  0,123)     # rgb = (0x00,0x00,0x7b)
        (201,201,201)     # rgb = (0xc9,0xc9,0xc9) grey79
        ( 22, 22, 65)     # rgb = (0x16,0x16,0x41)
        ( 33, 33, 89)     # rgb = (0x21,0x21,0x59)
        ( 87, 87, 89)     # rgb = (0x57,0x57,0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.7K bytes
    - Viewed (0)
  2. src/text/scanner/scanner_test.go

    		{Float, "0.e+1", "0.e+1", ""},
    		{Float, "123.E-10", "123.E-10", ""},
    		{Float, "0123.e123", "0123.e123", ""},
    
    		{Float, ".0e-1", ".0e-1", ""},
    		{Float, ".123E+10", ".123E+10", ""},
    		{Float, ".0123E123", ".0123E123", ""},
    
    		{Float, "0.0e1", "0.0e1", ""},
    		{Float, "123.123E-10", "123.123E-10", ""},
    		{Float, "0123.0123e+456", "0123.0123e+456", ""},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. src/image/color/ycbcr.go

    func RGBToYCbCr(r, g, b uint8) (uint8, uint8, uint8) {
    	// The JFIF specification says:
    	//	Y' =  0.2990*R + 0.5870*G + 0.1140*B
    	//	Cb = -0.1687*R - 0.3313*G + 0.5000*B + 128
    	//	Cr =  0.5000*R - 0.4187*G - 0.0813*B + 128
    	// https://www.w3.org/Graphics/JPEG/jfif3.pdf says Y but means Y'.
    
    	r1 := int32(r)
    	g1 := int32(g)
    	b1 := int32(b)
    
    	// yy is in range [0,0xff].
    	//
    	// Note that 19595 + 38470 + 7471 equals 65536.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. src/go/scanner/scanner_test.go

    		{token.FLOAT, "123.E-10", "123.E-10", ""},
    		{token.FLOAT, "0123.e123", "0123.e123", ""},
    
    		{token.FLOAT, ".0e-1", ".0e-1", ""},
    		{token.FLOAT, ".123E+10", ".123E+10", ""},
    		{token.FLOAT, ".0123E123", ".0123E123", ""},
    
    		{token.FLOAT, "0.0e1", "0.0e1", ""},
    		{token.FLOAT, "123.123E-10", "123.123E-10", ""},
    		{token.FLOAT, "0123.0123e+456", "0123.0123e+456", ""},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/nn_grad.cc

          (*grad_outputs)[0] = Transpose(scope, (*grad_outputs)[0], {0, 3, 1, 2});
        } else if (data_format == "NCDHW") {
          (*grad_outputs)[0] =
              Transpose(scope, (*grad_outputs)[0], {0, 4, 1, 2, 3});
        }
        return scope.status();
      }
    }
    
    Status FusedBatchNormV3Grad(const Scope& scope, const Operation& op,
                                const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      // expected-remark@below {{Result #0, ID 0 : 0, 1, 2, 3}}
      %vh0 = "tf.VarHandleOp"() {container = "c", shared_name = "v0"} : () -> !tf_res
      // expected-remark@below {{Result #0, ID 1 : 0, 1, 2, 3}}
      %vh1 = "tf.Identity"(%vh0) : (!tf_res) -> (!tf_res)
      // expected-remark@below {{Result #0, ID 2 : Unknown}}
      // expected-remark@below {{Result #1, ID 3 : 0, 1, 2, 3}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. src/net/ip_test.go

    	{IP.IsUnspecified, IPv6interfacelocalallnodes, false},
    	{IP.IsUnspecified, nil, false},
    	{IP.IsLoopback, IPv4(127, 0, 0, 1), true},
    	{IP.IsLoopback, IPv4(127, 255, 255, 254), true},
    	{IP.IsLoopback, IPv4(128, 1, 2, 3), false},
    	{IP.IsLoopback, IPv6loopback, true},
    	{IP.IsLoopback, IPv6linklocalallrouters, false},
    	{IP.IsLoopback, nil, false},
    	{IP.IsMulticast, IPv4(224, 0, 0, 0), true},
    	{IP.IsMulticast, IPv4(239, 0, 0, 0), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. pkg/apis/networking/types.go

    // by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6.
    // Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1
    // Invalid: 10.01.2.3 or 2001:db8:0:0:0::1
    type IPAddress struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    	// +optional
    	Spec IPAddressSpec
    }
    
    // IPAddressSpec describe the attributes in an IP Address,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. helm-releases/minio-4.0.5.tgz

    minio-4.0.5.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2022-05-08T23-50-31Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 4.0.5 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 16 06:42:56 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  10. helm-releases/minio-4.0.6.tgz

    minio-4.0.6.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2022-05-08T23-50-31Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 4.0.6 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 24 03:34:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
Back to top