Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for 34817 (0.06 sec)

  1. tensorflow/BUILD

    # And is usable in the "deps" attribute instead of the "srcs" attribute
    # as a workaround for https://github.com/tensorflow/tensorflow/issues/34117
    cc_import(
        name = "libtensorflow_framework_import_lib",
        shared_library = select({
            "//tensorflow:macos": ":libtensorflow_framework.dylib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_TMPFILE64_UNLOCKED              = 0xD4E // 3406
    	SYS_GETDATE64                       = 0xD4F // 3407
    	SYS_GETTIMEOFDAY64                  = 0xD50 // 3408
    	SYS_BIND2ADDRSEL                    = 0xD59 // 3417
    	SYS_INET6_IS_SRCADDR                = 0xD5A // 3418
    	SYS___GETGRGID1                     = 0xD5B // 3419
    	SYS___GETGRNAM1                     = 0xD5C // 3420
    	SYS___FBUFSIZE                      = 0xD60 // 3424
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_amd64.s

    #define tPtr R8
    #define ptxLen R9
    #define aluCTR R10
    #define aluTMP R11
    #define aluK R12
    #define NR R13
    
    #define increment(i) ADDL $1, aluCTR; MOVL aluCTR, aluTMP; XORL aluK, aluTMP; BSWAPL aluTMP; MOVL aluTMP, (3*4 + 8*16 + i*16)(SP)
    #define aesRnd(k) AESENC k, B0; AESENC k, B1; AESENC k, B2; AESENC k, B3; AESENC k, B4; AESENC k, B5; AESENC k, B6; AESENC k, B7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	CMN R0, R3                                 // 7f0000ab
    	CMPW R6.UXTB, R23                          // ff02266b
    	CMP R25.SXTH<<2, R26                       // 5fab39eb
    	CMP $3817, R29                             // bfa73bf1
    	CMP R7>>23, R3                             // 7f5c47eb
    	CNEGW PL, R9, R14                          // 2e45895a
    	CSNEGW HS, R5, R9, R14                     // ae24895a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging_test.go

    		"foo": {
    			Hostname:       "otel-collector.foo.svc.cluster.local",
    			DefaultAddress: "172.217.0.0/16",
    			Ports: PortList{
    				&Port{
    					Name:     "grpc-port",
    					Port:     3417,
    					Protocol: protocol.TCP,
    				},
    				&Port{
    					Name:     "http-port",
    					Port:     3418,
    					Protocol: protocol.HTTP,
    				},
    			},
    			Resolution: ClientSideLB,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/MediaType.java

       * {@code /etc/mime.types}, e.g. in <a href=
       * "http://anonscm.debian.org/gitweb/?p=collab-maint/mime-support.git;a=blob;f=mime.types;hb=HEAD"
       * >Debian 3.48-1</a>.
       *
       * @since 15.0
       */
      public static final MediaType CRW = createConstant(IMAGE_TYPE, "x-canon-crw");
    
      public static final MediaType GIF = createConstant(IMAGE_TYPE, "gif");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+3512(SB)/8,$0x00000000beb1d432
    
    	/* x^35904 mod p(x), x^35840 mod p(x) */
    DATA ·IEEEConst+3520(SB)/8,$0x00000001a4681842
    DATA ·IEEEConst+3528(SB)/8,$0x0000000135f3f1f0
    
    	/* x^34880 mod p(x), x^34816 mod p(x) */
    DATA ·IEEEConst+3536(SB)/8,$0x0000000167714492
    DATA ·IEEEConst+3544(SB)/8,$0x0000000074fe2232
    
    	/* x^33856 mod p(x), x^33792 mod p(x) */
    DATA ·IEEEConst+3552(SB)/8,$0x00000001e599099a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  8. src/fmt/scan_test.go

    	} else if err != io.ErrUnexpectedEOF {
    		t.Errorf("Sscanln: expected io.ErrUnexpectedEOF (ha!); got %s", err)
    	}
    }
    
    // TestLineByLineFscanf tests that Fscanf does not read past newline. Issue
    // 3481.
    func TestLineByLineFscanf(t *testing.T) {
    	r := struct{ io.Reader }{strings.NewReader("1\n2\n")}
    	var i, j int
    	n, err := Fscanf(r, "%v\n", &i)
    	if n != 1 || err != nil {
    		t.Fatalf("first read: %d %q", n, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %348 = "tf.Sub"(%347, %13) {device = ""} : (tensor<i64>, tensor<i64>) -> tensor<i64>
      %349 = "tf.Equal"(%348, %13) {device = "", incompatible_shape_error = true} : (tensor<i64>, tensor<i64>) -> tensor<i1>
      %350 = "tf.LogicalOr"(%349, %2) {device = ""} : (tensor<i1>, tensor<i1>) -> tensor<i1>
      %351 = "tf.Equal"(%348, %13) {device = "", incompatible_shape_error = true} : (tensor<i64>, tensor<i64>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  10. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOTOROLA = 33165
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MOTOROLA ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS = 34887
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST = 34888
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
Back to top